From f509c59ac13dffdff6a246572de04150ee295314 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 28 Aug 2015 23:36:13 +0800 Subject: [PATCH] new create webhook event --- conf/locale/locale_en-US.ini | 6 + models/action.go | 225 ++++++++++----------- models/user.go | 20 +- models/webhook.go | 164 +++++++++------ models/webhook_slack.go | 100 +++++---- modules/auth/repo_form.go | 18 +- modules/bindata/bindata.go | 4 +- public/css/gogs.min.css | 2 +- public/js/gogs.js | 18 ++ public/less/_form.less | 8 + routers/api/v1/repo_hooks.go | 4 +- routers/repo/setting.go | 46 +++-- templates/base/footer.tmpl | 18 ++ templates/base/head.tmpl | 18 -- templates/repo/settings/hook_history.tmpl | 2 +- templates/repo/settings/hook_settings.tmpl | 52 ++++- 16 files changed, 424 insertions(+), 281 deletions(-) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index e668afe21..d0529edcc 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -531,6 +531,12 @@ settings.content_type = Content Type settings.secret = Secret settings.event_desc = Upon which events should this webhook be triggered? settings.event_push_only = Just the push event. +settings.event_send_everything = I need everything. +settings.event_choose = Let me choose what I need. +settings.event_create = Create +settings.event_create_desc = Branch, or tag created +settings.event_push = Push +settings.event_push_desc = Git push to a repository settings.active = Active settings.active_helper = Details regarding the event which triggered the hook will be delivered as well. settings.add_hook_success = New webhook has been added. diff --git a/models/action.go b/models/action.go index cffcbaac9..57ab92688 100644 --- a/models/action.go +++ b/models/action.go @@ -16,6 +16,8 @@ import ( "github.com/go-xorm/xorm" + api "github.com/gogits/go-gogs-client" + "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" @@ -290,20 +292,50 @@ func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string } // CommitRepoAction adds new action for committing repository. -func CommitRepoAction(userID, repoUserID int64, userName, actEmail string, - repoID int64, repoUserName, repoName string, refFullName string, commit *base.PushCommits, oldCommitID string, newCommitID string) error { +func CommitRepoAction( + userID, repoUserID int64, + userName, actEmail string, + repoID int64, + repoUserName, repoName string, + refFullName string, + commit *base.PushCommits, + oldCommitID string, newCommitID string) error { + + u, err := GetUserByID(userID) + if err != nil { + return fmt.Errorf("GetUserByID: %v", err) + } + + repo, err := GetRepositoryByName(repoUserID, repoName) + if err != nil { + return fmt.Errorf("GetRepositoryByName: %v", err) + } else if err = repo.GetOwner(); err != nil { + return fmt.Errorf("GetOwner: %v", err) + } + isNewBranch := false opType := COMMIT_REPO // Check it's tag push or branch. if strings.HasPrefix(refFullName, "refs/tags/") { opType = PUSH_TAG commit = &base.PushCommits{} - } + } else { + // if not the first commit, set the compareUrl + if !strings.HasPrefix(oldCommitID, "0000000") { + commit.CompareUrl = fmt.Sprintf("%s/%s/compare/%s...%s", repoUserName, repoName, oldCommitID, newCommitID) + } else { + isNewBranch = true + } - repoLink := fmt.Sprintf("%s%s/%s", setting.AppUrl, repoUserName, repoName) - // if not the first commit, set the compareUrl - if !strings.HasPrefix(oldCommitID, "0000000") { - commit.CompareUrl = fmt.Sprintf("%s/%s/compare/%s...%s", repoUserName, repoName, oldCommitID, newCommitID) + // Change repository bare status and update last updated time. + repo.IsBare = false + if err = UpdateRepository(repo, false); err != nil { + return fmt.Errorf("UpdateRepository: %v", err) + } + + if err = updateIssuesCommit(u, repo, repoUserName, repoName, commit.Commits); err != nil { + log.Debug("updateIssuesCommit: %v", err) + } } bs, err := json.Marshal(commit) @@ -313,26 +345,6 @@ func CommitRepoAction(userID, repoUserID int64, userName, actEmail string, refName := git.RefEndName(refFullName) - // Change repository bare status and update last updated time. - repo, err := GetRepositoryByName(repoUserID, repoName) - if err != nil { - return fmt.Errorf("GetRepositoryByName: %v", err) - } - repo.IsBare = false - if err = UpdateRepository(repo, false); err != nil { - return fmt.Errorf("UpdateRepository: %v", err) - } - - u, err := GetUserByID(userID) - if err != nil { - return fmt.Errorf("GetUserByID: %v", err) - } - - err = updateIssuesCommit(u, repo, repoUserName, repoName, commit.Commits) - if err != nil { - log.Debug("updateIssuesCommit: ", err) - } - if err = NotifyWatchers(&Action{ ActUserID: u.Id, ActUserName: userName, @@ -345,32 +357,24 @@ func CommitRepoAction(userID, repoUserID int64, userName, actEmail string, RefName: refName, IsPrivate: repo.IsPrivate, }); err != nil { - return errors.New("NotifyWatchers: " + err.Error()) - - } - - // New push event hook. - if err := repo.GetOwner(); err != nil { - return errors.New("GetOwner: " + err.Error()) - } + return fmt.Errorf("NotifyWatchers: %v", err) - ws, err := GetActiveWebhooksByRepoId(repo.ID) - if err != nil { - return errors.New("GetActiveWebhooksByRepoId: " + err.Error()) } - // check if repo belongs to org and append additional webhooks - if repo.Owner.IsOrganization() { - // get hooks for org - orgws, err := GetActiveWebhooksByOrgId(repo.OwnerID) - if err != nil { - return errors.New("GetActiveWebhooksByOrgId: " + err.Error()) - } - ws = append(ws, orgws...) - } - - if len(ws) == 0 { - return nil + repoLink := fmt.Sprintf("%s%s/%s", setting.AppUrl, repoUserName, repoName) + payloadRepo := &api.PayloadRepo{ + ID: repo.ID, + Name: repo.LowerName, + URL: repoLink, + Description: repo.Description, + Website: repo.Website, + Watchers: repo.NumWatches, + Owner: &api.PayloadAuthor{ + Name: repo.Owner.DisplayName(), + Email: repo.Owner.Email, + UserName: repo.Owner.Name, + }, + Private: repo.IsPrivate, } pusher_email, pusher_name := "", "" @@ -379,83 +383,66 @@ func CommitRepoAction(userID, repoUserID int64, userName, actEmail string, pusher_email = pusher.Email pusher_name = pusher.DisplayName() } + payloadSender := &api.PayloadUser{ + UserName: pusher.Name, + ID: pusher.Id, + AvatarUrl: setting.AppUrl + pusher.RelAvatarLink(), + } - commits := make([]*PayloadCommit, len(commit.Commits)) - for i, cmt := range commit.Commits { - author_username := "" - author, err := GetUserByEmail(cmt.AuthorEmail) - if err == nil { - author_username = author.Name + switch opType { + case COMMIT_REPO: // Push + commits := make([]*api.PayloadCommit, len(commit.Commits)) + for i, cmt := range commit.Commits { + author_username := "" + author, err := GetUserByEmail(cmt.AuthorEmail) + if err == nil { + author_username = author.Name + } + commits[i] = &api.PayloadCommit{ + ID: cmt.Sha1, + Message: cmt.Message, + URL: fmt.Sprintf("%s/commit/%s", repoLink, cmt.Sha1), + Author: &api.PayloadAuthor{ + Name: cmt.AuthorName, + Email: cmt.AuthorEmail, + UserName: author_username, + }, + } } - commits[i] = &PayloadCommit{ - Id: cmt.Sha1, - Message: cmt.Message, - Url: fmt.Sprintf("%s/commit/%s", repoLink, cmt.Sha1), - Author: &PayloadAuthor{ - Name: cmt.AuthorName, - Email: cmt.AuthorEmail, - UserName: author_username, + p := &api.PushPayload{ + Ref: refFullName, + Before: oldCommitID, + After: newCommitID, + CompareUrl: setting.AppUrl + commit.CompareUrl, + Commits: commits, + Repo: payloadRepo, + Pusher: &api.PayloadAuthor{ + Name: pusher_name, + Email: pusher_email, + UserName: userName, }, + Sender: payloadSender, } - } - p := &Payload{ - Ref: refFullName, - Commits: commits, - Repo: &PayloadRepo{ - Id: repo.ID, - Name: repo.LowerName, - Url: repoLink, - Description: repo.Description, - Website: repo.Website, - Watchers: repo.NumWatches, - Owner: &PayloadAuthor{ - Name: repo.Owner.DisplayName(), - Email: repo.Owner.Email, - UserName: repo.Owner.Name, - }, - Private: repo.IsPrivate, - }, - Pusher: &PayloadAuthor{ - Name: pusher_name, - Email: pusher_email, - UserName: userName, - }, - Before: oldCommitID, - After: newCommitID, - CompareUrl: setting.AppUrl + commit.CompareUrl, - } - - for _, w := range ws { - w.GetEvent() - if !w.HasPushEvent() { - continue + if err = PrepareWebhooks(repo, HOOK_EVENT_PUSH, p); err != nil { + return fmt.Errorf("PrepareWebhooks: %v", err) } - var payload BasePayload - switch w.HookTaskType { - case SLACK: - s, err := GetSlackPayload(p, w.Meta) - if err != nil { - return errors.New("action.GetSlackPayload: " + err.Error()) - } - payload = s - default: - payload = p - p.Secret = w.Secret + if isNewBranch { + return PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{ + Ref: refName, + RefType: "branch", + Repo: payloadRepo, + Sender: payloadSender, + }) } - if err = CreateHookTask(&HookTask{ - RepoID: repo.ID, - HookID: w.ID, - Type: w.HookTaskType, - URL: w.URL, - BasePayload: payload, - ContentType: w.ContentType, - EventType: HOOK_EVENT_PUSH, - IsSSL: w.IsSSL, - }); err != nil { - return fmt.Errorf("CreateHookTask: %v", err) - } + case PUSH_TAG: // Create + return PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{ + Ref: refName, + RefType: "tag", + Repo: payloadRepo, + Sender: payloadSender, + }) } return nil diff --git a/models/user.go b/models/user.go index c548d6d2e..c7e42dce0 100644 --- a/models/user.go +++ b/models/user.go @@ -122,9 +122,8 @@ func (u *User) HomeLink() string { return setting.AppSubUrl + "/" + u.Name } -// AvatarLink returns user gravatar link. -func (u *User) AvatarLink() string { - defaultImgUrl := setting.AppSubUrl + "/img/avatar_default.jpg" +func (u *User) RelAvatarLink() string { + defaultImgUrl := "/img/avatar_default.jpg" if u.Id == -1 { return defaultImgUrl } @@ -135,7 +134,7 @@ func (u *User) AvatarLink() string { if !com.IsExist(imgPath) { return defaultImgUrl } - return setting.AppSubUrl + "/avatars/" + com.ToStr(u.Id) + return "/avatars/" + com.ToStr(u.Id) case setting.DisableGravatar, setting.OfflineMode: if !com.IsExist(imgPath) { img, err := avatar.RandomImage([]byte(u.Email)) @@ -161,13 +160,22 @@ func (u *User) AvatarLink() string { log.Info("New random avatar created: %d", u.Id) } - return setting.AppSubUrl + "/avatars/" + com.ToStr(u.Id) + return "/avatars/" + com.ToStr(u.Id) case setting.Service.EnableCacheAvatar: - return setting.AppSubUrl + "/avatar/" + u.Avatar + return "/avatar/" + u.Avatar } return setting.GravatarSource + u.Avatar } +// AvatarLink returns user gravatar link. +func (u *User) AvatarLink() string { + link := u.RelAvatarLink() + if link[0] == '/' { + return setting.AppSubUrl + link + } + return link +} + // NewGitSig generates and returns the signature of given user. func (u *User) NewGitSig() *git.Signature { return &git.Signature{ diff --git a/models/webhook.go b/models/webhook.go index debe46e5e..b2fecb8d3 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -15,6 +15,8 @@ import ( "github.com/go-xorm/xorm" + api "github.com/gogits/go-gogs-client" + "github.com/gogits/gogs/modules/httplib" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/setting" @@ -54,9 +56,18 @@ func IsValidHookContentType(name string) bool { return ok } +type HookEvents struct { + Create bool `json:"create"` + Push bool `json:"push"` +} + // HookEvent represents events that will delivery hook. type HookEvent struct { - PushOnly bool `json:"push_only"` + PushOnly bool `json:"push_only"` + SendEverything bool `json:"send_everything"` + ChooseEvents bool `json:"choose_events"` + + HookEvents `json:"events"` } type HookStatus int @@ -94,8 +105,8 @@ func (w *Webhook) GetEvent() { } } -func (w *Webhook) GetSlackHook() *Slack { - s := &Slack{} +func (w *Webhook) GetSlackHook() *SlackMeta { + s := &SlackMeta{} if err := json.Unmarshal([]byte(w.Meta), s); err != nil { log.Error(4, "webhook.GetSlackHook(%d): %v", w.ID, err) } @@ -114,12 +125,16 @@ func (w *Webhook) UpdateEvent() error { return err } +// HasCreateEvent returns true if hook enabled create event. +func (w *Webhook) HasCreateEvent() bool { + return w.SendEverything || + (w.ChooseEvents && w.HookEvents.Create) +} + // HasPushEvent returns true if hook enabled push event. func (w *Webhook) HasPushEvent() bool { - if w.PushOnly { - return true - } - return false + return w.PushOnly || w.SendEverything || + (w.ChooseEvents && w.HookEvents.Push) } // CreateWebhook creates a new web hook. @@ -140,9 +155,9 @@ func GetWebhookByID(id int64) (*Webhook, error) { return w, nil } -// GetActiveWebhooksByRepoId returns all active webhooks of repository. -func GetActiveWebhooksByRepoId(repoId int64) (ws []*Webhook, err error) { - err = x.Where("repo_id=?", repoId).And("is_active=?", true).Find(&ws) +// GetActiveWebhooksByRepoID returns all active webhooks of repository. +func GetActiveWebhooksByRepoID(repoID int64) (ws []*Webhook, err error) { + err = x.Where("repo_id=?", repoID).And("is_active=?", true).Find(&ws) return ws, err } @@ -181,9 +196,9 @@ func GetWebhooksByOrgId(orgID int64) (ws []*Webhook, err error) { return ws, err } -// GetActiveWebhooksByOrgId returns all active webhooks for an organization. -func GetActiveWebhooksByOrgId(orgId int64) (ws []*Webhook, err error) { - err = x.Where("org_id=?", orgId).And("is_active=?", true).Find(&ws) +// GetActiveWebhooksByOrgID returns all active webhooks for an organization. +func GetActiveWebhooksByOrgID(orgID int64) (ws []*Webhook, err error) { + err = x.Where("org_id=?", orgID).And("is_active=?", true).Find(&ws) return ws, err } @@ -230,58 +245,10 @@ func IsValidHookTaskType(name string) bool { type HookEventType string const ( - HOOK_EVENT_PUSH HookEventType = "push" + HOOK_EVENT_CREATE HookEventType = "create" + HOOK_EVENT_PUSH HookEventType = "push" ) -// FIXME: just use go-gogs-client structs maybe? -type PayloadAuthor struct { - Name string `json:"name"` - Email string `json:"email"` - UserName string `json:"username"` -} - -type PayloadCommit struct { - Id string `json:"id"` - Message string `json:"message"` - Url string `json:"url"` - Author *PayloadAuthor `json:"author"` -} - -type PayloadRepo struct { - Id int64 `json:"id"` - Name string `json:"name"` - Url string `json:"url"` - Description string `json:"description"` - Website string `json:"website"` - Watchers int `json:"watchers"` - Owner *PayloadAuthor `json:"owner"` - Private bool `json:"private"` -} - -type BasePayload interface { - GetJSONPayload() ([]byte, error) -} - -// Payload represents a payload information of hook. -type Payload struct { - Secret string `json:"secret"` - Ref string `json:"ref"` - Commits []*PayloadCommit `json:"commits"` - Repo *PayloadRepo `json:"repository"` - Pusher *PayloadAuthor `json:"pusher"` - Before string `json:"before"` - After string `json:"after"` - CompareUrl string `json:"compare_url"` -} - -func (p Payload) GetJSONPayload() ([]byte, error) { - data, err := json.MarshalIndent(p, "", " ") - if err != nil { - return []byte{}, err - } - return data, nil -} - // HookRequest represents hook task request information. type HookRequest struct { Headers map[string]string `json:"headers"` @@ -302,7 +269,7 @@ type HookTask struct { UUID string Type HookTaskType URL string - BasePayload `xorm:"-"` + api.Payloader `xorm:"-"` PayloadContent string `xorm:"TEXT"` ContentType HookContentType EventType HookEventType @@ -367,13 +334,13 @@ func (t *HookTask) MarshalJSON(v interface{}) string { // HookTasks returns a list of hook tasks by given conditions. func HookTasks(hookID int64, page int) ([]*HookTask, error) { tasks := make([]*HookTask, 0, setting.Webhook.PagingNum) - return tasks, x.Limit(setting.Webhook.PagingNum, (page-1)*setting.Webhook.PagingNum).Desc("id").Find(&tasks) + return tasks, x.Limit(setting.Webhook.PagingNum, (page-1)*setting.Webhook.PagingNum).Where("hook_id=?", hookID).Desc("id").Find(&tasks) } // CreateHookTask creates a new hook task, // it handles conversion from Payload to PayloadContent. func CreateHookTask(t *HookTask) error { - data, err := t.BasePayload.GetJSONPayload() + data, err := t.Payloader.JSONPayload() if err != nil { return err } @@ -389,6 +356,71 @@ func UpdateHookTask(t *HookTask) error { return err } +// PrepareWebhooks adds new webhooks to task queue for given payload. +func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) error { + if err := repo.GetOwner(); err != nil { + return fmt.Errorf("GetOwner: %v", err) + } + + ws, err := GetActiveWebhooksByRepoID(repo.ID) + if err != nil { + return fmt.Errorf("GetActiveWebhooksByRepoID: %v", err) + } + + // check if repo belongs to org and append additional webhooks + if repo.Owner.IsOrganization() { + // get hooks for org + orgws, err := GetActiveWebhooksByOrgID(repo.OwnerID) + if err != nil { + return fmt.Errorf("GetActiveWebhooksByOrgID: %v", err) + } + ws = append(ws, orgws...) + } + + if len(ws) == 0 { + return nil + } + + for _, w := range ws { + w.GetEvent() + + switch event { + case HOOK_EVENT_CREATE: + if !w.HasCreateEvent() { + continue + } + case HOOK_EVENT_PUSH: + if !w.HasPushEvent() { + continue + } + } + + switch w.HookTaskType { + case SLACK: + p, err = GetSlackPayload(p, event, w.Meta) + if err != nil { + return fmt.Errorf("GetSlackPayload: %v", err) + } + default: + p.SetSecret(w.Secret) + } + + if err = CreateHookTask(&HookTask{ + RepoID: repo.ID, + HookID: w.ID, + Type: w.HookTaskType, + URL: w.URL, + Payloader: p, + ContentType: w.ContentType, + EventType: HOOK_EVENT_PUSH, + IsSSL: w.IsSSL, + }); err != nil { + return fmt.Errorf("CreateHookTask: %v", err) + } + } + return nil +} + type hookQueue struct { // Make sure one repository only occur once in the queue. lock sync.Mutex diff --git a/models/webhook_slack.go b/models/webhook_slack.go index 0b1b579ff..9ae125873 100644 --- a/models/webhook_slack.go +++ b/models/webhook_slack.go @@ -9,13 +9,18 @@ import ( "errors" "fmt" "strings" + + api "github.com/gogits/go-gogs-client" + + "github.com/gogits/gogs/modules/git" + "github.com/gogits/gogs/modules/setting" ) const ( SLACK_COLOR string = "#dd4b39" ) -type Slack struct { +type SlackMeta struct { Channel string `json:"channel"` } @@ -34,7 +39,9 @@ type SlackAttachment struct { Text string `json:"text"` } -func (p SlackPayload) GetJSONPayload() ([]byte, error) { +func (p *SlackPayload) SetSecret(_ string) {} + +func (p *SlackPayload) JSONPayload() ([]byte, error) { data, err := json.Marshal(p) if err != nil { return []byte{}, err @@ -42,27 +49,47 @@ func (p SlackPayload) GetJSONPayload() ([]byte, error) { return data, nil } -func GetSlackPayload(p *Payload, meta string) (*SlackPayload, error) { - slack := &Slack{} - slackPayload := &SlackPayload{} - if err := json.Unmarshal([]byte(meta), &slack); err != nil { - return slackPayload, errors.New("GetSlackPayload meta json:" + err.Error()) - } +// see: https://api.slack.com/docs/formatting +func SlackTextFormatter(s string) string { + // take only first line of commit + first := strings.Split(s, "\n")[0] + // replace & < > + first = strings.Replace(first, "&", "&", -1) + first = strings.Replace(first, "<", "<", -1) + first = strings.Replace(first, ">", ">", -1) + return first +} - // TODO: handle different payload types: push, new branch, delete branch etc. - // when they are added to gogs. Only handles push now - return getSlackPushPayload(p, slack) +func SlackLinkFormatter(url string, text string) string { + return fmt.Sprintf("<%s|%s>", url, SlackTextFormatter(text)) } -func getSlackPushPayload(p *Payload, slack *Slack) (*SlackPayload, error) { +func getSlackCreatePayload(p *api.CreatePayload, slack *SlackMeta) (*SlackPayload, error) { + // created tag/branch + refName := git.RefEndName(p.Ref) + + repoLink := SlackLinkFormatter(p.Repo.URL, p.Repo.Name) + refLink := SlackLinkFormatter(p.Repo.URL+"/src/"+refName, refName) + text := fmt.Sprintf("[%s:%s] %s created by %s", repoLink, refLink, p.RefType, p.Sender.UserName) + + return &SlackPayload{ + Channel: slack.Channel, + Text: text, + Username: setting.AppName, + IconUrl: setting.AppUrl + "/img/favicon.png", + }, nil +} + +func getSlackPushPayload(p *api.PushPayload, slack *SlackMeta) (*SlackPayload, error) { // n new commits - refSplit := strings.Split(p.Ref, "/") - branchName := refSplit[len(refSplit)-1] - var commitString string + var ( + branchName = git.RefEndName(p.Ref) + commitString string + ) if len(p.Commits) == 1 { commitString = "1 new commit" - if p.CompareUrl != "" { + if len(p.CompareUrl) > 0 { commitString = SlackLinkFormatter(p.CompareUrl, commitString) } } else { @@ -72,14 +99,14 @@ func getSlackPushPayload(p *Payload, slack *Slack) (*SlackPayload, error) { } } - repoLink := SlackLinkFormatter(p.Repo.Url, p.Repo.Name) - branchLink := SlackLinkFormatter(p.Repo.Url+"/src/"+branchName, branchName) + repoLink := SlackLinkFormatter(p.Repo.URL, p.Repo.Name) + branchLink := SlackLinkFormatter(p.Repo.URL+"/src/"+branchName, branchName) text := fmt.Sprintf("[%s:%s] %s pushed by %s", repoLink, branchLink, commitString, p.Pusher.Name) - var attachmentText string + var attachmentText string // for each commit, generate attachment text for i, commit := range p.Commits { - attachmentText += fmt.Sprintf("%s: %s - %s", SlackLinkFormatter(commit.Url, commit.Id[:7]), SlackTextFormatter(commit.Message), SlackTextFormatter(commit.Author.Name)) + attachmentText += fmt.Sprintf("%s: %s - %s", SlackLinkFormatter(commit.URL, commit.ID[:7]), SlackTextFormatter(commit.Message), SlackTextFormatter(commit.Author.Name)) // add linebreak to each commit but the last if i < len(p.Commits)-1 { attachmentText += "\n" @@ -91,25 +118,26 @@ func getSlackPushPayload(p *Payload, slack *Slack) (*SlackPayload, error) { return &SlackPayload{ Channel: slack.Channel, Text: text, - Username: "gogs", - IconUrl: "https://raw.githubusercontent.com/gogits/gogs/master/public/img/favicon.png", - UnfurlLinks: 0, - LinkNames: 0, + Username: setting.AppName, + IconUrl: setting.AppUrl + "/img/favicon.png", Attachments: slackAttachments, }, nil } -// see: https://api.slack.com/docs/formatting -func SlackTextFormatter(s string) string { - // take only first line of commit - first := strings.Split(s, "\n")[0] - // replace & < > - first = strings.Replace(first, "&", "&", -1) - first = strings.Replace(first, "<", "<", -1) - first = strings.Replace(first, ">", ">", -1) - return first -} +func GetSlackPayload(p api.Payloader, event HookEventType, meta string) (*SlackPayload, error) { + s := new(SlackPayload) -func SlackLinkFormatter(url string, text string) string { - return fmt.Sprintf("<%s|%s>", url, SlackTextFormatter(text)) + slack := &SlackMeta{} + if err := json.Unmarshal([]byte(meta), &slack); err != nil { + return s, errors.New("GetSlackPayload meta json:" + err.Error()) + } + + switch event { + case HOOK_EVENT_CREATE: + return getSlackCreatePayload(p.(*api.CreatePayload), slack) + case HOOK_EVENT_PUSH: + return getSlackPushPayload(p.(*api.PushPayload), slack) + } + + return s, nil } diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 748bfa611..cf713c0cb 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -67,8 +67,22 @@ func (f *RepoSettingForm) Validate(ctx *macaron.Context, errs binding.Errors) bi // \/ \/ \/ \/ \/ \/ type WebhookForm struct { - PushOnly bool - Active bool + Events string + Create bool + Push bool + Active bool +} + +func (f WebhookForm) PushOnly() bool { + return f.Events == "push_only" +} + +func (f WebhookForm) SendEverything() bool { + return f.Events == "send_everything" +} + +func (f WebhookForm) ChooseEvents() bool { + return f.Events == "choose_events" } type NewWebhookForm struct { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 1162db14c..4dd143851 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x72\xdb\x48\x92\xe7\xff\x78\x0a\xb4\x37\x7c\x76\x47\xc8\x74\x74\x4f\xdc\x47\x4c\xd8\xee\x93\xa5\xf6\xc7\xac\x65\x69\x2d\x79\xe6\xe6\x1c\x0e\x34\x48\x40\x24\x46\x24\xc0\x06\x40\xd1\x9a\x8d\x8d\xb8\xd7\xb8\xd7\xbb\x27\xb9\xcc\x5f\x66\xd6\x07\x00\xca\xf6\xec\xc6\xdd\x3f\x64\xa1\x2a\xeb\x2b\x2b\x2b\x2b\x2b\x2b\x2b\x2b\xdf\x6e\xb3\xa2\xec\x16\xe9\xf3\xf4\x38\xdd\xe6\x55\xbd\x2e\xbb\x2e\xed\xca\xf5\xf5\x93\x55\xd3\xf5\x65\x91\xbe\xae\x7a\xfa\x6e\x6f\xab\x45\x99\x24\xab\x66\x53\x12\xe8\x1b\xfa\x4b\x8a\xbc\x5b\xcd\x9b\xbc\x2d\x28\xe2\xd4\xc2\x49\xf9\x65\xbb\x6e\x5a\x06\xfa\x55\x42\xc9\xaa\x5c\x6f\x39\x0f\xfd\x25\x5d\xb5\xac\xb3\xaa\xa6\xcf\x4b\x0a\xa5\x6f\xeb\xa4\x6b\x16\x55\xbe\xce\x82\x04\x44\x58\xfa\x1f\xd3\x9f\xeb\x22\xbd\xec\xcb\x6d\xfa\xac\xdb\xe4\xeb\xf5\x8b\xbc\x43\x96\xbe\x4c\xf3\xc5\xa2\xd9\xd5\xfd\xb3\xa7\x92\x20\x85\x37\xbb\xde\x4a\x3f\xdf\xf5\x12\xb7\xdb\x5a\xd4\xc7\x6d\xd2\x96\xcb\x8a\x3a\xd6\x52\xd4\x07\x0d\x26\xfb\x72\xde\x55\x3d\x37\xfa\x2f\x12\x4a\x6e\xcb\xb6\xab\x1a\x6e\xcf\x9f\x25\x94\x6c\xf3\x25\x03\x5c\xd0\x5f\xd2\x97\x9b\xed\x3a\x47\x86\x2b\x0d\x26\xeb\xbc\x5e\xee\x04\xe6\x9d\x06\x93\x45\x5b\x52\x52\x56\x97\x7b\x8a\x3d\xc1\x47\x4a\x1f\xb3\xd9\x2c\xd9\x11\x4e\xb3\x6d\xdb\x5c\x57\xeb\x32\xcb\xeb\x22\xdb\x08\xd6\x3e\x52\x7c\xaa\xf1\x29\xc5\xa7\x1c\x8f\x6e\x94\x05\x21\x28\xcb\x3b\xed\x0b\x0d\x0d\xe1\x2b\xef\x12\x14\x55\xe7\x1b\xcb\xcd\xc1\xa4\xdc\xe4\xd5\x9a\x07\xe1\x09\x07\xa8\xf1\x5d\xb7\x6f\x30\x54\x17\x1a\x24\x44\x64\xfd\xdd\xb6\x04\x1e\x9e\x5c\x51\x28\x59\xe4\xdb\x7e\xb1\xca\xb9\xad\x12\x4a\x08\x68\xdb\x10\x42\x9a\xf6\x0e\x70\xf6\x91\x34\xed\x32\xaf\xab\xbf\xe7\xbd\x20\xe9\x3c\xf8\x4c\x36\x55\xdb\x36\x8c\xdf\x33\x04\x12\xea\x71\xc6\xe5\x50\xcc\x7b\xc2\x44\x50\x0a\xa7\x6c\xaa\x65\x2b\xa8\xe4\xc4\x33\x7c\x71\x29\x9c\x76\xdd\xb4\x37\x9a\xf0\x8a\x83\x83\xac\xd4\x08\x4d\x8d\xeb\xcf\x6b\x42\xbe\xa6\x9e\xe1\x23\x02\xe8\x92\xbc\xd8\x10\x2a\xb7\x79\x5d\x32\x8e\x8e\xf9\x8b\xf0\x42\x5f\x89\xd2\x54\xd6\x95\x7d\x5f\xd5\x4b\x46\xf6\xb1\x44\xa5\x97\x1a\x95\x04\x69\x2e\xee\xae\xd9\xb9\xe1\xa4\xf8\xbf\xd2\x67\x7a\x21\x9f\x92\x16\x64\x42\xa2\xcb\xc9\x3d\xe9\xb2\xeb\xb2\x2c\xa4\x2f\x5d\xfa\x8a\xc2\xc9\x76\xb7\x5e\x13\xd6\x7e\xdf\x95\x5d\xcf\x99\x2e\xe8\x9b\xfa\x2f\xdf\x49\xd5\x75\x14\xa0\xe8\xb7\x08\x24\x34\x74\xf5\x02\x9d\x39\x41\x20\x49\x3e\x75\x65\xde\x2e\x56\x9f\x13\xf9\x47\x5b\x39\xc0\xb4\x77\x68\x50\x99\x90\x94\x88\xa4\x06\xab\x20\x59\x34\x05\x7f\x9c\xd0\x1f\x15\x5d\xd5\x5d\x4f\x33\xee\x73\xa2\x01\x06\x93\x90\x0c\x40\x5f\xf5\xc0\x82\x46\x62\xfa\x76\x3c\x82\xe9\xab\xaa\xed\xfa\x27\x7d\x45\xc4\xfa\x61\x57\x27\xdc\x3f\x9a\x6d\x59\x31\x37\x26\xf4\xba\x21\x14\x21\xba\xa5\xfe\x9d\xdd\x5d\xfe\xcb\xbb\xa3\xf4\x82\x38\xd1\xb2\x2d\x29\x9c\x52\x19\xf4\x47\x79\xfe\x30\x4b\x28\x97\xd5\x74\x9a\xf7\xf9\x3c\xef\x4a\x8f\x56\x4e\x14\xea\x76\x69\xa0\x71\xe6\x6a\xe0\x60\x5d\x1f\xf5\x77\x6a\x86\x50\x19\x3a\xaf\x5c\x19\xef\x79\x72\x51\x3c\x33\x35\x64\xbe\x58\x97\x1c\x4f\x45\xa5\x6f\xdf\xbf\x3f\x3f\x7d\x99\x96\xf5\xb2\xaa\xcb\x74\x5f\xf5\xab\x74\xd7\x5f\xff\xb7\x6c\x59\xd6\x65\x4b\x3c\x6e\x51\xa5\x34\xa7\x5a\xa2\x84\x94\x08\x5b\x3a\x37\x4b\xba\x6e\x4d\x73\x1f\xe8\xbd\xbc\x7c\x97\x9e\x31\x8a\xb7\x79\xbf\x42\x43\xfa\x55\xd2\xfd\xbe\x66\x14\xb9\x0a\xaf\x56\x65\x0a\x2a\x03\x50\x73\x6d\xf8\x48\x0b\x6d\xe3\x2c\x29\xdb\x36\x23\xb6\xd4\xdf\x65\x9a\x59\xcb\x1b\x42\x4a\x11\x44\x3a\x75\xd3\xa7\xf3\x32\x45\x9e\x59\x92\x58\x83\x0d\xbb\xc7\xdb\xed\xba\x5a\xc8\x5c\x7f\x2d\x69\x1e\xd1\xbc\x82\x28\x96\x42\x38\x20\xca\xd2\x02\x74\x11\x7b\xe6\xf9\x90\x46\x0c\x04\xf9\x57\x25\x31\xc0\xd5\x6e\x29\x6c\x6f\xdd\xec\x8a\x1f\x40\xa9\xd6\x7a\x4f\xa8\xe9\x87\x86\x1a\x0c\xec\x38\x00\x5f\xc5\x31\x51\x1c\x2f\x5a\x6d\xb9\x69\x88\xaf\x38\x62\xaf\x88\xa0\xf6\x15\x25\x52\x4f\xbb\xfc\x96\xe6\x5b\xdf\xa4\xfd\xaa\xea\xd2\x82\x88\x6d\xc1\x05\xd3\xd4\xd8\xd1\x72\x21\x64\x41\x04\x2a\xa4\x61\x71\xf1\x18\x00\x6a\xb3\x23\x6a\x5a\x51\x61\xbc\x18\xf1\xca\x49\x45\x4e\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x0d\x71\x65\xe6\x9b\xa7\x08\xe8\x77\x58\x3e\xb5\x2a\xbf\xbe\xa6\x56\x75\x44\x15\x6f\xd2\xc5\xba\x21\x92\xfa\xf8\xe1\x5d\xc7\x04\xb3\xca\xb6\x4d\x8b\x65\x8e\x92\x2e\x28\xe8\xe2\x02\x44\x33\x44\xbd\xdb\xcc\xe9\x6b\xbf\xaa\x88\x03\x00\xed\x9c\x83\x57\x73\x8a\xa5\x2a\x76\x1d\x0d\xe1\x51\x4a\x24\x4c\x3d\x20\x94\x81\x00\xb8\x0f\x45\xd5\xe5\x73\x1a\x7b\x06\xbf\xa6\x65\x6b\xd7\x12\x59\xad\xfa\x7e\x6b\x35\xbf\xb9\xba\xba\x90\xaa\x5d\xec\x7d\x75\xe7\x01\x65\x60\x0c\xd6\xbc\xf0\xd6\x69\x53\xcf\x40\x24\xbb\x76\x3d\xa0\x1f\xea\xab\xa5\x1c\xc0\x0b\x37\xe1\x29\xff\x5c\x7a\xf4\x00\xcf\x1d\x49\x27\x7b\x50\x13\xe1\xb8\xc4\x02\x48\x44\xdd\x6c\xb9\xdc\x80\xaa\xcf\x35\xc2\x93\x32\x16\x4d\x97\x2e\x4b\x27\xa5\x42\xf6\x09\xd8\xff\x86\x3a\xac\x6c\xe4\xf2\x8c\xd0\x00\x5e\x82\xd8\xeb\xb6\xd9\x50\xec\x2b\xfa\xf3\x11\xbe\xf9\x67\x5c\x1e\x60\xf2\xa2\x20\xfe\xd6\x1d\xa5\x1f\x5e\x9d\xa4\xff\xf9\x0f\x3f\xff\x3c\x4b\xdf\xf6\x3c\x13\x99\x38\xff\xc6\x44\x45\x41\x59\xc3\x1d\x28\xb1\x8c\x9e\xe8\xee\x01\xcf\xac\x07\xe9\x33\xa4\xfe\xf7\xf2\x4b\x4e\xf2\x47\x39\x5b\x34\x9b\x17\xcc\x55\x36\x79\x3f\x4b\x38\x85\xc8\x55\xe9\xf8\xb2\xac\x0b\x0a\xa8\x24\xa0\x69\x01\xbb\xd3\xf4\x40\x2e\x10\xa9\x28\x5b\x34\xf5\x75\xd5\x72\x87\x7e\xad\x41\x0d\x26\x2f\xd1\x3a\x80\x14\x5b\x6e\x09\x69\xc4\x41\xaa\xeb\x3b\x0f\x8a\xae\xbe\xe7\x48\x1d\xd0\x44\xa8\x2e\x53\x51\xd2\x61\xf9\x52\x88\x91\xc7\xed\x9c\xba\xd7\x1a\xbe\x3b\x8f\xf0\xe6\xfa\x7a\x4d\x1c\xd5\xb8\xa4\xd6\x70\x2e\xb1\xc2\x30\x43\x10\x22\xc6\x2d\x24\xbe\x53\x25\xe2\x93\xd3\xf7\x69\x79\x4b\xd4\x46\xe4\x40\x4b\x74\xb1\x5b\x80\xc2\x18\xf6\x28\xe5\xf5\x89\xf0\x4b\x73\x63\x21\x7c\x35\x60\x12\xdc\x34\xe6\x44\x0b\x02\x22\xde\xa0\x93\x22\x13\x04\xb5\x26\xfb\x58\x35\x97\x2c\x34\x87\x69\x93\x19\x46\xad\xc3\x28\x75\xc3\xbc\x34\xdc\xf5\xfa\x2e\x85\xa0\x02\xba\x10\x51\xd2\x64\xde\x6e\x96\xe8\x22\x69\x92\x73\x76\x5b\x41\xca\x74\x43\x85\x54\x13\xa3\x79\x4e\xff\x99\x01\x58\x7c\xed\x26\xf3\xba\x86\x9d\x73\xc5\x9d\x93\x30\xb9\x7d\x1d\x9a\x80\x1a\x58\x0c\x26\x62\xbc\xad\xc0\xe2\x14\x59\x68\x2b\x61\x0c\x55\x53\x55\x5d\x59\xa2\x04\xca\xff\x94\xca\x44\x9e\x99\x4a\x5d\x2a\x08\xd9\x82\x4f\xc2\x50\x5a\x34\x29\xaf\x40\xe0\xa3\x94\xdb\xba\x5a\x6b\xf7\xb5\xcf\x69\x5b\x2d\x57\xc4\x57\x9a\xfd\x91\x20\x6d\xbf\x6a\x4a\xa6\x9d\xb7\xa7\xcf\x7f\x92\x76\x2c\x99\xab\xba\x4c\xcc\x8f\xf3\x5d\xdf\x30\x9d\xea\x10\x4a\x13\xdc\xba\x06\xc8\x91\x7c\x27\x40\x43\x89\xda\x64\xc6\xb1\x98\xa0\xf3\x24\x4c\xd3\x09\xe2\x61\x24\xf7\x40\x2a\x57\xf1\x29\x5b\x36\x90\x0b\x4d\x5c\xe2\x35\x82\xb6\x18\x5d\x9f\x2d\xab\x3e\xbb\xe6\x09\xcb\x65\xbe\xe2\xbc\xbc\x64\x51\x4a\xfa\x88\x92\x1e\xa5\x34\xeb\x49\xd8\x2d\xfe\x98\x3e\xbc\x55\x39\xe1\x0f\x3c\x13\xb3\xfc\x96\x60\x31\x18\x2a\x6d\xb6\xa5\x88\x29\xb6\xad\x29\x1a\xa2\x73\xc6\x79\xb7\xdb\x82\xa3\xab\x68\x70\x94\x6e\x05\xb0\x68\xf6\xf5\xba\xc9\x0b\xb0\x1c\x9a\x5d\x15\x36\x65\xf3\xaa\xce\x69\x59\xb3\x52\xc0\xca\x1e\x12\x35\xbc\x3f\xbf\x02\xe0\xb2\x99\xef\xaa\x75\x61\x00\x33\xea\xe1\x6d\xbe\xae\x0a\x16\xf0\x74\xdc\x43\x61\xca\xa2\x2a\x69\xcb\xa2\x69\x79\x1d\x46\x6f\x2c\xe3\x01\x01\xa0\xe5\x85\x15\xd1\x94\x57\x61\x91\xcf\xad\xd5\x8c\x06\x1a\x78\x48\xbe\xbc\x92\x83\x62\xaa\xae\x7e\xd4\xa3\xa5\x8b\x1d\xd5\x45\x83\xce\xd1\x94\xb1\x4b\x9f\xbc\xa0\xdf\x84\xe5\x02\xe1\x7b\xcb\x31\xe2\x39\x31\x95\xc4\x9d\xcc\xd2\xa8\xa9\x11\x79\x3b\xea\x32\xe2\x0d\xfa\x1a\xb6\xd7\x48\xa0\xdb\x09\xbd\xf2\x0e\x74\x4d\xc3\x5a\xfe\x40\x81\x47\x34\x81\x97\x6b\x0c\x42\x0e\xb1\x89\xe4\xc7\x86\xf0\xc6\x04\x72\x24\xd3\xe5\x9a\xba\xc6\xbc\xb3\xcf\x6f\xa8\x6d\x39\x2f\xd3\xc9\x27\xde\xa5\x7f\x4e\x76\x22\x79\x35\xeb\xc2\x49\xb9\xa0\xe9\xa6\x1d\xee\x0a\x3d\x90\xa3\xd7\x8e\xc4\xd7\xc5\x2a\x73\x7b\x7c\x46\x4a\x5f\x7e\xc1\x9a\x87\x24\xbf\xe5\x67\x62\xe7\xa4\x64\x73\x87\xe1\xe2\x4e\x9c\xdd\xf9\xd1\x22\xb9\x8b\xa6\x08\xed\x0d\xe6\x0d\x63\xed\xb6\x74\x50\x27\x61\x6c\x9c\x81\xca\x22\x09\x51\x8b\x8a\x37\x6f\x94\x24\x3b\x4c\x4d\x95\x5d\x66\x97\x80\x89\xa9\x82\x02\xbc\x8e\xc6\x53\x37\x4a\x33\x1a\x18\xec\xc2\xac\x66\xe2\x88\x77\x32\x2f\x82\x3a\x93\x4f\xaa\xbc\xf8\x9c\x18\xdc\x87\x38\x9d\xb8\x09\xed\xa8\xfc\xae\x3e\xb3\xd1\x75\xbb\x7b\xde\x8c\x2a\x43\xf1\x0b\xe9\xaa\xdc\xf2\x9a\xbb\xe9\x40\x16\x6b\x82\x2c\xee\x54\x6a\x74\x04\xf2\x8b\xb0\x6a\xa2\x18\x62\x70\x3f\x98\x5a\xe4\x3b\x8b\x78\x59\x11\x29\x20\x7f\xbc\xf4\x88\xaa\x81\x84\x3b\xe8\x57\xda\xf6\xee\x28\x8d\x16\xb1\x55\xde\x11\xfb\xa6\x15\x52\xb3\x15\x33\xdb\xd7\xf0\xb0\xe7\x0b\x99\x33\x50\x91\x80\xca\x25\x67\xd3\x0e\xd7\x44\x6e\xa1\x70\x38\xad\xc5\x49\x0c\x90\x07\x42\xb1\x61\xa2\x4e\x42\xd8\xa6\x64\xa1\x31\xdb\x88\x56\x42\xbe\xd2\xb3\x32\x21\xc9\x66\x49\x13\xda\x08\xf6\x39\x6f\x26\x97\x90\xad\x95\x5e\x19\xa0\xec\x43\x16\xac\x10\x16\xf3\x8b\xa9\x82\x88\x33\xec\xb1\xd3\xa6\xb9\x3d\x42\x3f\x2d\x56\x94\x3c\x33\x96\x2e\x2b\x36\x04\x9c\x8e\xb8\x85\x47\xe2\x31\xab\x71\xd2\x10\x4a\x05\x4d\xdf\x2d\xce\xc0\x5c\xe3\xd9\xfc\xc5\xc3\xee\xd9\xd3\xf9\x0b\xc7\x5b\x17\xab\x72\x71\x23\xf4\x57\xd5\xf3\xe6\x0b\xb6\x8a\x34\xf0\x8c\xe3\x9a\xe7\xd8\xc3\x22\x5d\x51\x2a\x76\x13\xc4\x0b\x28\x1b\x21\x9e\x53\xa3\x41\xa3\xc6\x30\xcb\x98\x99\x52\xcd\xad\x2e\x46\x48\x94\x1b\x95\x48\xcb\x12\x1a\x46\x9e\x7c\x98\x07\x9e\x6e\x8f\x39\x96\x29\x17\xeb\x84\x27\x5d\xf4\x77\x5d\x6d\xaa\x7e\x44\x3a\xcc\x88\x72\x25\x41\xd5\x50\x18\x2e\x51\x16\xb0\x81\xb6\x10\x3b\xa7\x62\x68\xe1\x35\x72\xda\xe7\xb4\xcb\xf8\x43\x4a\x24\xb4\xa3\x65\x8c\xfb\x44\xcd\x24\x7e\x9e\xf3\xca\x4d\x3b\x8c\xbc\xcb\x76\xb5\xa2\xb5\x2c\x8c\x98\xde\x54\x58\x65\xb8\x5e\x23\xf9\x00\xca\x30\xaf\x82\x72\xfa\xd8\x61\xfc\x47\x92\xaa\xaf\x5d\x36\x66\xfd\xdc\xa0\x8a\x85\xba\x7c\x72\xf0\x88\x35\xd6\xa5\x6c\x0c\x81\x01\x86\xe3\x81\xa6\xdd\x85\x1f\x3d\xda\xa2\xdc\x50\x0c\x06\x64\xbe\xeb\xfb\x86\x85\xf6\x35\x53\x8d\xe4\xb1\x56\x9f\x00\x10\xfb\x10\x5f\x1e\x06\x24\xc4\x93\x8c\x4d\x69\x42\x74\xe6\xd5\x9b\xba\xdd\x19\xf4\x4e\xd7\x4a\x07\x56\x88\xa2\x21\xaf\xef\x8c\x94\x89\x20\xb8\x15\x5c\x61\x3f\xdd\x96\xc7\x6d\xf9\xa3\x6f\x8d\x9b\x33\xc8\x61\x2d\x92\xec\xc1\x7c\xfa\x80\x54\x51\x6c\xd9\xac\xb3\xa5\x4f\xd5\x43\x9e\x3e\xda\x18\xbd\x48\xe7\x99\x41\x0c\x96\xe4\xce\x02\x88\xa6\x5e\x20\xf7\x6c\x50\x97\xdf\x2f\x8d\x31\xd8\xc7\x4d\xf6\x2b\x58\xdf\x34\x59\xb7\x92\xbd\xa9\x35\x8f\xf6\xb5\xf5\x32\x52\x70\x40\xb9\x0d\xa2\xfb\x2f\xbc\x4e\xd2\x0e\x20\x5f\x7f\x4e\xee\xa0\x49\xfb\x2b\x71\xf8\x1a\x3a\xca\x26\xa1\x04\xd9\xcd\x9c\x21\x40\xa0\xbc\xb5\xfa\x9c\xf0\x1a\xfa\x7e\x20\x17\xf2\x12\xa1\x71\x81\x80\x82\xa4\x5f\x23\x71\xcf\x86\x30\xb9\x98\x90\x21\x3f\x94\x5e\x17\x8b\x90\xeb\x22\x6d\xc1\xaf\x6c\xaf\x44\xbb\xf1\x9b\x52\x0b\x7f\x43\xfb\xee\xee\x23\xf6\xcd\xb2\x09\xe6\x1d\xf3\x45\x7e\xc7\x52\x9b\x44\xeb\x07\x12\xae\xca\x7c\xa3\xad\xe4\xa0\x14\x71\x4c\xcb\x99\x46\x72\x90\x56\xb9\x40\x1f\x93\x40\x7e\xb1\x2e\x88\x30\xa3\x72\x83\xdb\x3f\x94\xaa\xe8\xfd\x6d\xa4\x44\xfa\x2d\xc9\xd7\xdb\x55\x0e\x01\x22\x00\x83\xbe\x84\x80\x30\xf0\x29\x40\x40\x0b\xbb\x4d\xd9\x56\x0b\x0e\x72\x86\xc7\x4f\xb2\x1f\xa1\x2a\xa3\x89\x42\x92\x64\x5c\x58\x41\x93\xe4\x1f\x2a\x90\xc3\x2c\x65\x86\xe5\x76\xd5\xdf\xad\x17\x51\x71\x1c\x4f\x3c\x87\x20\x20\xd3\x79\x28\x07\x84\x85\x91\xe5\xbb\x9e\xd5\x27\x14\x41\x32\x64\x54\xf4\x26\xff\xf2\xb5\x8c\x9b\x66\x22\x9f\xb0\x02\x9f\xc9\x26\xbc\x76\x31\x66\x07\x04\xcf\x0a\x92\x83\xd0\x34\xf4\x0c\x52\xdf\xd0\xaa\x56\x3b\xb0\x8f\xf2\x9d\xe2\xfb\x8f\xa6\xf6\xa7\x25\x44\x25\xf0\xd4\x1d\x00\xd0\xe2\x5c\x30\xdf\x84\x24\x3d\xf3\xd3\x2d\x94\xae\x1d\x39\xb3\x1c\x6a\x3a\x03\xc7\x38\x48\x24\x95\x8d\x06\x91\xd4\xcc\x9f\x55\x64\xbc\x46\x66\x2c\xb5\xd6\xa1\x6c\xea\x56\x4f\x5b\x5f\x00\x21\x1a\xeb\x6c\x9c\x6f\x30\xe1\x0e\x66\x27\x51\x60\x22\xf7\xf9\x58\x05\x79\x20\x7f\x4f\x53\x66\xa2\x00\x37\x93\x0e\x66\x94\xc1\x44\x26\xea\x79\x31\xe2\x05\xe3\x8c\x0c\x46\xfb\xa6\xf5\xba\x5c\xb2\xae\xca\x2a\x8e\x6a\x53\x12\xa2\xc5\x40\xc0\x42\x02\xf2\x18\x76\x83\x15\x8e\x6b\xb8\x0b\x70\x63\x14\xef\xbf\xa8\xd5\x24\xcf\x53\x90\x73\x06\xbb\x30\x6d\x86\xae\xe4\x1b\xde\x70\x74\x3b\x66\xcd\xbc\x39\x11\xe9\x24\x1e\x0d\x5e\x78\x51\x54\x89\x2a\x0e\x17\x4f\xb4\xc8\x3b\xb6\xaf\x95\x0f\xb0\xef\x2c\x3a\xdc\xaf\x8f\x0b\xd6\xc2\x1d\xd0\xa1\x62\xdd\x8e\xb2\xfc\x52\x41\xef\xf7\xba\x62\x7d\x12\xf6\x94\x6e\x2b\x8d\xb4\x59\xb2\x26\x66\xc0\x7b\x17\xe9\x95\xc8\xb1\xcd\x2d\x6f\xfd\xb8\x3e\x4e\x95\x7c\xa2\x07\xd4\x4e\xf1\x38\xeb\xee\x94\x76\x83\xcd\xbe\x2c\x8e\x68\x89\xe7\x1c\xd4\x4e\xb0\x8d\x7c\xbd\xcf\xef\x3a\x28\x59\x8c\xe3\xb0\xce\x53\xb2\x33\x3b\x21\x01\x60\x89\x56\x85\x9a\x75\x9a\x71\x86\x09\x56\x11\xf3\xe2\xe1\x96\xe9\x3d\xf6\x97\xe0\x16\xaa\xb6\xa1\x6d\x3b\x2f\x7b\x4e\x51\x4c\xe0\xbc\x37\xe6\x9d\x24\xcb\xf8\x92\x1c\x14\x84\xc3\x1a\xe5\xfc\x13\x79\x8f\x58\x3c\xa2\x6a\x58\x58\x21\x7e\x2c\xb8\x26\xf9\x8f\x30\x8b\x26\x05\xca\x86\x1d\x95\xff\x44\xe4\xe2\x8a\x70\xc8\xfb\x2c\xbf\xff\xe6\xb5\x89\x46\xc5\x34\xc3\x12\x8f\xdd\x73\xd2\xf5\x34\x05\x18\xd3\x76\xc0\xf8\x57\x91\xaf\x74\xcf\xcd\xa9\x98\x62\x40\x53\xb7\xaa\xb6\x69\x03\x6d\x63\x88\x42\x4f\xb6\x81\x88\xc9\x3a\xf0\x12\x72\x37\xab\x5d\xdb\xbc\xee\xae\x4b\xe8\x5f\x37\xe9\x35\x9f\x61\xcd\xb4\x6a\x96\x58\xe5\xa0\xf1\x40\xcd\xb2\x87\x41\xd5\xe1\x6a\x81\xb1\x0b\x06\x2a\xae\x5a\x14\xf2\xbc\x60\x49\x1b\x80\x55\x5f\x52\x67\x6d\x60\x32\x1b\xa1\x00\x52\x63\x74\xbc\x62\xad\xb9\x2d\x43\x44\x5c\xff\xa3\x3d\x0f\xb0\xae\x2a\x66\xd1\xcb\xc7\xc3\x24\x95\x42\xdd\x81\xd3\xb1\xf9\x5d\xdc\x7b\xce\xea\x28\x80\xcf\x6a\x6e\x4b\xad\x85\x27\x06\xcf\x95\x41\x81\x50\x73\xf8\xbd\x42\xd2\xe7\xd8\xf2\xcd\xa9\x89\x8b\x55\x34\x3b\xaf\x90\x92\x4a\xca\x68\x82\x26\x9f\xb8\x6a\xda\xc6\xaf\xf2\x7a\x59\xb2\xae\x8c\x4a\xe2\x25\x0f\xdf\x2a\xa1\x4b\x24\x35\x78\xd9\x4a\x98\x35\xec\x96\x65\x41\x13\xb2\xd9\xdc\x9b\xb3\xaa\x4d\xe3\xd3\x25\x7f\x6b\x48\x86\x80\xaa\xf8\x4f\x14\x62\xe9\xb7\x4e\xa2\x53\xa9\x81\x9e\x01\xdb\x83\xaa\xbf\xc3\x71\xd9\x9c\x64\x60\xd9\xa4\x51\x0c\x6d\x73\xc1\x1d\xa0\xfa\x78\x65\x61\x1a\x8f\x9c\x99\x1e\x4f\x6d\x09\x29\x9c\xe8\xa1\x5e\x59\x38\xe1\x5d\xf2\x66\x86\xc5\x81\x85\x69\x68\xb7\x83\x25\xe1\xd1\xc3\xee\x11\x0f\x98\xa5\xcd\x02\xf8\x6d\xde\x13\x5b\xac\x65\x8b\x22\x1c\x2a\xcc\xaa\xc9\xae\x08\x70\x15\x01\x9b\xe1\x2c\x5a\x50\xf1\x39\xf1\x47\xe4\x76\x3a\x3e\xa5\x51\x55\x16\xd3\xa9\xcc\xfb\xcf\x14\x54\x8d\x48\xea\x0c\x44\x74\xab\x8a\x03\x48\x3b\x35\xea\xe2\x43\xa4\x2e\x51\x1d\x52\xac\x40\x52\xf2\x7e\x9e\x9e\x4a\xc0\x36\xbd\xbb\x0a\x7d\xaa\x8a\x24\xd9\x02\xef\xc1\x81\xbe\x0e\x84\x6b\xb4\x1a\x6e\x78\x25\x76\x3b\x5c\xd9\x09\x0b\x52\x0a\x08\xd7\xce\x14\x20\x05\xf0\xe9\x6f\xb0\x61\x63\xed\x2c\x76\x72\x75\x70\x5e\x42\xfb\x5d\xce\xc7\x60\xfb\x72\x9e\xb2\xbe\x94\x08\x87\xf6\x45\xda\xd1\x4d\x4e\x5b\xaa\xdb\x2a\x77\x9a\x19\x1a\x2d\x36\x19\xd0\x55\xf4\x15\x9b\x0b\xe0\x0c\x76\x6c\xdb\xc2\x07\x1a\x7a\x76\xf1\x4e\x83\xc9\x6e\x5b\xb0\x4e\xcb\x77\xf8\x23\x22\x5c\x87\xe3\xf4\x40\x5d\x89\xae\x5b\x36\x27\xcd\x08\x78\x91\x2a\x1c\xb7\xec\x6e\x66\xd3\x67\xc2\x5e\x45\xa7\x50\x31\x04\x09\x4f\x09\x24\x49\x37\xad\x06\x30\x13\xde\x03\xf4\xca\xc1\x20\x10\x42\x6b\x65\xba\x6a\xf6\xe9\xba\xaa\x6f\x3a\xc5\xaf\xd3\x87\xd8\x3e\x39\x3d\x45\x04\x01\x8b\xa6\x86\xc5\xaa\xaa\xde\x95\xbf\x24\x16\x12\x4d\x3e\x82\x63\x0b\x8b\x52\x56\xc5\x21\x33\xd0\x03\x98\x13\x44\xa7\xc7\x88\x9e\x84\xf5\xfb\x5c\xcd\x82\xb3\xe8\xe0\xf0\xf5\xba\x64\x01\x1b\xec\xf0\xb5\x72\x21\xc2\x4f\xd3\x74\xaa\x7b\xf4\xec\x87\xe3\xa0\xa8\x50\x28\x1d\x2d\x07\xa1\x83\x29\x8d\xb1\x83\x0e\x82\xe2\xed\x21\x09\x4b\xda\x1e\xcc\xed\xac\xda\x88\x11\xd3\x47\x4d\x15\x63\x03\xb7\xaf\x40\xf2\x8c\x76\xca\x83\xce\x84\x47\x0e\xef\x09\x97\xd2\x7d\xe3\xa3\x96\x78\x64\xe2\x82\x20\x04\x8b\x7d\xd4\xd8\x21\x65\x69\x01\xa6\x3d\xff\x0a\x81\x19\xf9\x84\x27\x31\xc2\x9b\x1d\x6b\x69\xd6\x91\x50\x78\xa2\xe7\x00\x2e\x9d\x31\x1b\xa4\xbf\xc7\x99\xd9\x50\xdb\x10\xed\x94\xb4\x84\x83\xd2\xf4\xa0\x4d\xa3\xb9\x63\xf9\xf6\xd4\xb7\xb0\x3b\x46\xf0\x33\xa1\xfe\x1c\x9a\x61\x39\x56\xc3\xb9\xbd\xd0\x4b\x8d\x33\x39\x29\x82\x10\x80\x0d\x47\xe7\xf7\x19\xc7\xc2\x8d\x58\xa3\x2e\x56\x51\x0e\x40\x0d\xa3\xe2\xfd\x64\x69\x87\xe0\x21\x63\xdb\xb6\x34\xe8\xb4\xf0\x0e\x34\x51\x23\x96\x16\xb1\x2f\x70\xaf\x06\x27\xba\x9e\x6b\xd1\x0e\x52\xcb\x62\xfe\x8f\x90\xc5\x78\xed\x65\xc9\xda\x2d\xab\x54\x99\xb5\x4b\x15\x96\x9d\x50\x1b\x30\x07\x4a\xa7\x9e\x28\x80\x89\xb8\x89\x00\x0b\x41\x4c\x13\x6a\xd1\x59\xa4\xe7\x85\xc6\xf6\xff\x9b\x6e\x37\xaa\xd0\xe9\x76\x7d\x53\x07\x64\xc3\x6d\x1c\xac\x38\x23\x02\xa2\x04\xac\xbf\x3a\xf4\xc1\xaa\xaa\x83\xef\x16\x57\xae\x46\x64\x7a\x46\x13\x45\x61\x09\x56\x22\x00\x87\x65\x01\x0f\x56\x1b\x30\x39\x12\x01\xbf\x1b\xa9\x21\x63\xfe\x7a\x8c\x1d\x0c\x61\x45\x60\x59\x1e\xe0\x05\x4d\xa4\x3f\xdd\x11\x6d\x18\x11\x72\x6e\xeb\x2c\x68\x46\x47\x33\x47\xba\x6d\x58\x55\xcb\x15\xf5\xab\xda\xf0\x99\x25\xb8\xb6\x1d\x8c\xf9\x5d\x1d\x7f\xd1\xc4\x6b\x96\x35\xeb\x70\xb8\x06\x31\x99\x71\xdc\xf6\x59\xd7\xb7\x4d\xbd\x7c\x71\xda\xf0\x76\x8b\x35\x21\xbc\x54\xfc\xf2\xec\xa9\xc6\x13\xcb\xe0\x31\x64\x43\xd2\xd7\x55\xff\x66\x37\x7f\xd4\xa5\x4b\x92\x0d\xb0\x80\x3c\xcb\xd3\x55\x5b\x5e\x3f\x7f\xf0\xb0\x7b\xf0\x42\x0f\xaa\xc5\x9e\x69\x5f\x3b\xb4\x3c\x7b\x9a\xbf\x60\xe9\xb9\x6b\xd6\x24\xd4\xc6\x59\x9a\xcd\x46\xc6\x97\xd8\xdf\x46\x20\xd1\x7e\x9c\x6d\x97\x35\x30\x57\xb6\x8a\x1f\x2a\x70\xe6\x68\xdd\x8f\x8f\x0e\x9b\x89\x49\x91\x7e\x41\x05\x15\x06\xc6\x91\x5d\xdd\x07\x4c\x93\x75\x0b\xa9\xcb\x86\x05\x76\x9c\x0d\x03\xc9\xea\x1a\xaf\xda\x30\xe5\x04\x24\x68\x94\x61\xf9\x29\x2b\xb5\x44\x24\x0d\x8e\xb3\x3a\x65\xe1\xa4\x90\x91\x56\x40\xbf\xcc\x53\x4d\x95\x09\x81\xd1\x2b\x41\x98\x60\x23\x1a\xfe\xc1\x18\x80\xf4\x5e\xa7\xbf\xf5\x00\x69\x22\xc9\x28\x4e\x04\x02\xf6\x26\x03\x18\xa3\x66\x15\xfa\xc0\x3c\xad\x15\x60\x65\xba\x07\x11\x83\x10\x11\xc8\x84\x24\x49\x42\x67\xf6\xf6\x8d\xb2\xc3\xa8\x5e\xdf\x71\xab\xce\x1f\x7d\xa1\x2d\xc3\x1e\x33\xc6\xd0\xa7\x63\xa0\x83\xfa\x02\x9d\x82\x8e\xd4\x3b\xd5\x20\x20\x81\x96\xe1\x60\xb7\xf0\xbe\xd1\x13\x97\xd4\x22\x31\x26\xb4\x3d\xe8\xcb\x68\x32\x73\x23\x60\xfe\x25\x26\x1e\x50\x4a\xfc\xd7\xb4\xc8\x89\x13\xf4\xcd\x0d\x11\xd3\x38\x0b\xe2\x0f\x65\x72\x1c\xc6\x64\x74\xe5\x2f\xc7\x9e\x3d\x0c\xa5\x76\x3d\xe0\x3c\xc8\x62\x02\xce\xa2\xa5\x3a\xd3\x17\xd1\xa8\x94\x90\x8d\xe7\x55\x5d\x08\x27\x51\x46\xa0\xb6\x24\x8e\x03\x90\x7c\x51\x33\x10\xd4\x9e\x1c\xd0\xef\x70\x58\xa2\xf2\x83\xe9\x42\x0c\x7c\x57\x07\x0c\x54\xc8\x21\x13\x54\xb8\x4e\x5e\xd0\x16\x0c\x76\x64\xc7\x52\xe0\x15\x27\x77\x6a\x44\xa9\xe7\xc4\x96\xe5\xb5\x46\x62\x0e\x00\x50\x10\xde\x39\x44\xe0\xcb\xef\xc6\xad\x14\xb5\x01\x50\x0b\x31\x8c\x01\x51\x9d\xb1\xcc\x95\xd8\x04\xa4\xc7\x17\x6f\x69\xcd\x70\x15\x5a\xa1\xbf\xe6\x24\x47\x4a\x13\xf6\x4e\x13\xc0\xc4\x36\xe4\xb9\xee\x04\x49\xb2\x9b\xe2\x11\x39\x31\xc5\x5d\xa7\x46\x1d\x92\xce\xc4\xe9\x82\xe3\xb2\x0b\xb4\x23\x52\x1b\x5a\x32\x5c\xad\x5c\x57\x7f\x20\xcc\x3a\x1d\x1d\x4f\xad\xed\x1d\xf3\xff\xc0\xfc\x27\x17\x0c\xed\xc1\xc1\x07\x76\x47\x04\x09\x0d\x41\xca\x53\xb8\x75\xfc\xc3\x1a\x6c\x02\x44\x30\x94\x21\x1b\x99\x1c\x4c\xcf\x54\x26\xb3\x4d\x71\x96\xad\x95\x13\xf7\xf9\x6b\x7c\x86\x09\xdf\xef\x5f\xef\xe1\x32\x61\xaf\x02\x52\xbe\x98\xac\xd6\x51\xb4\x54\x3d\xe0\x37\xa9\x2c\x84\x72\x82\xce\xb5\x88\x6c\xad\x14\x11\x98\x64\x52\x29\xfb\x72\xcd\xb6\x94\x5a\xbb\x3f\x45\xd6\xae\x47\x67\xc8\x0a\xe4\x4e\x8f\xd9\x68\xd6\x89\x82\x82\x8a\x50\xbd\x65\x85\x11\x04\x4d\x37\x1c\x1b\xcb\x16\xd8\xd6\xeb\x93\xe3\xf7\xef\xcf\xaf\xfc\x32\xcd\xf3\xa0\x2e\x48\x98\xf8\xc1\x59\x60\x8d\xda\x65\x76\x58\x6e\x00\x63\x08\x6f\x09\xa6\x39\x0e\xc1\x85\x6c\xca\x4a\xa7\xe0\xb2\x01\xef\x69\xb8\x2d\xc6\xcb\xa3\xf6\x17\x87\xc6\x2f\xf9\xc4\xf2\xcd\xe7\xc4\x94\xc4\xe7\xfc\x9f\x84\x7a\xf6\xe0\x6c\x03\x53\xcf\x1f\x81\x78\x4b\x67\x6a\x40\x53\x8c\xf4\xee\x60\xd2\xbb\x1c\x5b\x08\xc2\x7d\x83\xb5\xe2\x3a\xc5\xf1\xe8\x11\xab\x11\x9b\x16\x13\x86\x91\xbb\xab\xab\xdf\x77\x10\xd0\x78\x03\x41\xcc\x83\x0d\xfb\xe6\xd5\x5a\x16\x94\x3f\xbb\x0f\x89\xe7\xd0\xc0\x1a\x37\xa8\x9c\xbe\x9e\x75\x5b\xb6\x55\xa4\xb5\xa1\x7b\xfe\x60\x57\xa5\xac\x95\x62\xdb\xa0\x07\x2f\x48\xdc\x67\x33\x03\x1a\x3e\x82\x78\xc1\x9a\xa5\x1b\x53\x58\x0e\xaf\x76\x20\xcd\x4c\x69\x39\x0d\xf6\xb4\x88\x9d\x68\x85\x6e\x8e\x44\xe3\xd4\x8b\xaa\x32\x0d\x7a\xc1\x53\x8a\x89\xfb\xa6\x0c\x31\xa5\x47\x4a\x6e\xe6\x76\x8b\xb6\x82\x3d\xb0\xc4\xf3\x65\x9e\x34\xb8\xc8\xe3\x22\x7d\xbd\x97\x34\xde\xb4\x01\x9c\x2d\xab\x9e\xb6\x64\x7c\x79\x07\xd6\xa3\x09\x4d\x17\xe2\xe0\xb8\x06\x24\x21\x8b\x19\x65\xe5\xc5\x4e\x60\xa1\x62\x61\x11\x4b\x47\x9e\x03\xfa\x3d\x91\x4b\x01\xed\x12\x12\x6b\xcb\x1b\xda\x92\x56\x4c\xf0\x6f\xe9\x8f\x16\x33\x11\x7d\xe3\xe1\xe9\x90\x5f\x37\xf4\xb2\x3f\x73\x45\xa8\x49\x93\x0e\x88\xda\x32\x05\x43\x52\x94\xd7\xf9\x6e\x6d\xca\x56\x60\x0c\x11\xe9\x4b\x44\xe8\x95\x1f\x6a\x04\x0d\xc0\xad\x48\x00\x72\x09\xe8\xad\xc5\x3c\xe6\x5d\xcf\x8f\x07\x54\x90\xc3\x73\xbc\xef\xd7\x44\x0e\x4b\xb8\x5f\x21\xc9\x46\x1e\x19\xab\x97\x53\x35\x04\x8a\x8e\xbf\x13\xbd\x92\x64\x17\x48\xdc\x9d\x24\xb9\x41\x12\xa6\x1e\x9e\x0c\xb6\x3b\xce\xe3\x39\x01\x1b\xba\xf9\x7a\x57\x3e\x78\x21\x38\xb3\x09\x61\xa5\xea\x10\x9c\xe9\xad\xa8\x60\x0c\x14\x62\x06\x63\xf7\xcc\x36\x7d\x6c\x25\xc1\x1b\x2a\xdd\xe8\x4f\x43\x45\xfc\x4b\x65\x88\x3c\x30\xa0\x7f\xfa\xfa\xed\x15\xcc\xe7\x69\xc4\x60\xee\x6c\x77\x04\xd8\xc4\x72\xe6\xca\xb4\xa3\x24\x80\x98\x55\xe6\x5b\x89\xd4\x7c\x1c\x89\xdd\x5a\xac\x75\x37\x83\x8f\x3c\xbc\x6b\x91\xc8\xac\xb4\xa9\xae\x73\xf4\xda\x4d\x76\x18\xcf\xb3\x65\x74\x3c\xcb\x71\x29\x2c\xc0\x74\x68\x8e\xc4\xec\xb4\xe0\xf5\x60\x7b\x97\xb1\xee\x0f\x4b\xc0\xf6\x2e\x81\xd1\x0e\xad\x96\x19\x84\x09\x89\x04\x43\x5e\x57\x5b\xb9\xb7\x48\x09\x55\x29\xa6\xbb\x08\x9c\xff\x73\x22\x28\x74\x23\x0c\x42\xc1\x65\x46\x4e\x20\xc6\xff\x0b\xf8\x63\xcf\x1b\x3c\x39\x8b\x78\xfe\x20\x9b\x13\x93\xb8\x79\x10\x6c\xf8\xf8\xda\x23\xef\xf2\x7e\x20\xb9\x73\xaf\x27\xe6\x1f\x25\x94\xd8\xf7\x5f\xf0\xb5\x63\x53\x50\x39\x9e\xe7\x40\xa2\x5f\xac\xd2\x4f\xf4\x22\x1c\x73\xc3\x84\x85\x7e\x1d\x4f\x12\xf8\x43\xd6\xf5\xfb\x8e\x7b\x29\x7b\xd5\xe7\xe9\xbf\xf0\x57\xfa\x9a\xbf\xb4\x2b\xcc\x11\xdc\x1c\x07\xd5\x0c\x78\x44\x68\xda\x08\x96\xa7\x06\xc6\x9e\x27\x88\x3d\x54\x80\x7d\x35\x84\x32\x40\xb6\xc2\x4f\xb6\x3b\x36\xfa\xe0\x71\xb7\xda\x2e\x28\x06\x57\x1a\x38\x92\xd7\xcc\xa0\x04\x77\xde\x13\x95\x91\x38\x56\xa3\x2c\xa6\x6f\x4b\x08\xa3\xf4\xa7\x69\xb8\x36\xd9\xe7\xd0\xf0\x0b\x10\x91\xdc\x7f\x4a\xaf\x28\x46\x21\xca\x30\x29\x51\x50\xa4\x0f\x2f\xd0\xad\xf3\x79\x09\xb5\xd8\x3b\x04\x88\xe4\x89\x47\xf6\x84\x22\x68\x4b\xdc\x47\xc2\x6d\xac\x7a\x31\x5e\x45\x28\x51\xd3\x6a\x39\xc5\x91\x60\x02\x1d\x79\x9b\xb3\x9d\xe1\x87\x7c\x2f\x9f\x84\x69\xbd\x71\xf7\x46\x42\x12\x0d\xab\x55\x01\x85\xd1\xaa\x83\x87\x1c\xa1\x34\x7c\x61\xe1\xc4\x1a\x30\x1b\x37\xc4\x52\x06\x17\xfe\xd2\xc5\x20\xfd\x5a\x76\x43\xaf\x78\x2f\x64\x71\x39\xf8\x5f\x6a\x76\x40\x2e\x7e\x43\xcc\x43\xd4\xc1\x67\x12\x72\x29\x85\x98\xa8\x9d\x62\xf5\xd0\x38\xb3\x22\x3e\xe7\x7f\x17\x4b\x04\xa3\xf3\x87\xfe\x9d\x45\xae\xdc\x89\xe5\x6d\x90\xdc\x30\xf4\xd1\xb3\xe1\x58\x04\x49\x35\xaf\xc2\x73\xa8\xe1\x89\xf6\x91\x1e\x26\x2f\x08\xff\x6d\xe6\xf2\x9f\xf0\x67\xba\x1e\x95\xe2\x06\x37\x1c\xdb\x41\x35\x21\x0c\x55\x35\x09\x26\xd5\x85\x90\x52\xe3\x66\x0a\x98\x44\xdf\x3a\x82\x3d\xa7\x88\x90\xb4\xa2\x82\x59\x68\x1b\x94\x0c\x39\x6e\x1a\x9e\x96\x16\xbe\xaf\x01\x49\x56\x83\xe3\x76\x06\x40\xd2\xcc\x7c\x02\x94\x15\x0a\x1e\x8e\x3a\x3e\x04\x52\x9d\x97\x63\x08\xc3\xd1\xf3\xe3\x43\x43\x3b\x1c\x20\x49\xcc\x48\xe6\x58\x94\xce\xe6\x1c\x40\x58\xb5\xf9\x6e\x6a\x54\x8d\x2b\x4c\x2b\x8b\xca\x03\x42\xfb\x7c\x4e\xc9\x0f\x0b\x60\xd3\x65\x66\x5c\xf9\x24\x41\x9d\x25\xd2\xe4\x62\x3b\x65\x2b\x39\x2a\x32\x4c\x23\x01\x23\x13\x91\x49\x10\xe1\xc4\xa7\xf5\x44\x8e\x7b\x29\x6a\x08\x73\xb0\xe4\x11\xdd\x68\xce\x7b\x86\xd7\x43\xf0\xa5\xd3\xc3\x45\x1f\xc8\xa7\x12\x0e\xe4\x9a\x71\xca\x8c\x6f\x26\x38\x4e\x79\x8c\xe3\x7c\x70\xcb\x29\xd0\x4e\xef\xa8\xd3\x22\xcb\x2b\xb2\x6b\x6a\xa1\xda\x85\xa9\x4c\x32\xca\x45\x36\xbf\xd3\x3c\x32\xce\x05\x1b\x0b\x1c\xc8\xb2\x61\x8b\x00\x2c\xbf\x9a\xe5\xcc\x45\x4c\x64\xe9\xf4\x9e\x24\x5f\x54\x1c\xa7\xcc\x58\xf6\x85\xc5\x00\xf3\xa6\x6e\x12\x84\xa9\x14\x20\xe7\x08\x4c\x81\x88\xce\x4d\x77\xcd\xbc\x0a\x88\xd1\xb3\x9d\x51\x4d\x56\xcc\x66\x10\x2e\xc7\x3b\x18\x45\xb4\xdf\x90\x8f\x2d\x06\x99\xaf\x8a\x8a\xf5\xac\x81\x3d\x21\x3e\xef\xa9\xc7\x67\x90\x8a\x46\x39\x78\x26\x61\x14\x08\x44\xc2\xe9\xc3\x4f\x3f\x7d\xee\x78\x18\xbc\xf6\xfa\xd3\xcf\x9f\x49\x9e\x79\xf8\xe9\x0f\x9f\xa1\xb6\x1e\x65\xce\xae\x59\x6b\x33\x2e\x01\x19\x0d\x7a\xdb\x96\xb7\x55\xb3\x83\xae\x42\x83\x9e\x3f\x7c\x91\xa1\xf8\xd2\xc7\x53\xdc\xdd\xd7\x1c\xcc\xf0\xc2\x25\xc5\x33\xbc\xde\x6d\x32\xed\x63\x27\x1c\xc0\xbe\x5c\x76\xc3\x40\x96\x73\x95\xbf\xb9\x6f\xee\x6e\x55\x70\x67\xa9\xf1\x26\xc6\xfd\x93\x7c\xbd\x40\x47\xb8\xeb\xbf\xb9\x9a\x9a\x40\xe1\x7d\x25\x57\x4e\x59\xea\x75\xaa\xf7\xbb\xb2\x9f\xc5\x5c\xc9\xee\xd5\xa3\xc9\x71\x92\xb6\x22\x06\x51\xab\x4a\xa4\x18\x78\x5b\x02\x31\x06\xf7\x01\x9f\x83\xc4\x61\x61\x02\x34\x55\x9a\xb2\x5a\x4f\x25\x27\x83\x74\xc1\xb5\x62\x4a\x96\xa1\xef\x43\x93\x34\xc9\x95\x61\x9f\xdf\x59\xca\xb6\x51\xb7\x1d\x17\x08\x58\xb4\x5c\xf7\x53\x0b\x65\x47\x38\x91\x5a\x45\x23\xed\x02\x08\x09\xd3\xb4\xb7\x00\x3b\xb5\x4b\x1f\xac\xdf\xe7\xa8\x08\xb4\xaa\x33\x33\x74\x56\x79\x9b\x38\x19\x1b\xf3\x88\xd8\x4c\x63\xcc\xf7\xdc\x54\x53\x77\xf0\x4e\x4e\x74\xfc\x13\x5c\xcd\x50\x7c\x87\x53\xa9\x2c\xb0\x87\xff\x95\xfe\x1c\xf2\x07\x56\x07\xd6\x3e\xae\x85\x9a\x4f\x7f\x16\x25\x8b\x96\xcd\x08\xbf\xa8\xc6\xe9\x8b\x66\xdd\xf8\x45\x17\x5f\x43\x00\xd1\x9c\x3d\x2c\x06\x82\x93\x24\x7b\xc2\xd3\xa9\x05\xaa\x8a\x97\x05\x81\x9c\xe8\x8c\x24\x0c\xcc\x6f\xe2\x44\x67\x79\x2f\x0d\x84\xfd\xbd\xdd\x20\x1e\x97\xa2\x46\x2c\x00\x75\xaa\xbb\x49\xb0\x29\x1d\xad\x88\x00\xa1\x4e\x96\x05\xea\xaa\x96\x6b\xd4\x5c\x36\x9f\x4a\x06\x6a\x5a\x2d\xf9\xb0\x56\x76\xba\x6a\xaf\x9e\x95\x96\x7e\xe5\xf8\x07\xae\x3f\xc0\xa3\xb6\x39\x91\x9e\x58\x01\xa8\xa0\xcf\x31\x6a\xd2\xd0\x4d\xc3\x59\x47\x0d\xb8\xdf\x37\xa9\xdb\x0c\xc1\x9f\x0c\x73\xe9\x3c\xe5\xcc\x76\x7b\x07\xe4\xaf\xf9\x67\x5a\x2c\xb1\xb6\xb6\xec\x76\x6b\xb0\x50\x1c\x2c\xc9\xc7\xb5\x1d\x89\x38\x41\x34\x10\xe5\xbd\xe8\x13\x24\x4f\xc8\x69\x41\xea\xb4\xac\x36\x04\x28\xbc\x04\xfc\xb0\x8b\xea\xa6\xbd\xf0\x8e\xe6\xa7\x7a\x90\x69\x52\xfa\x4a\xf1\x35\x6c\x82\xad\x20\xc3\xa2\x1d\x2f\x8e\x7b\x44\xa3\x36\x5f\xd1\x8c\x96\x8b\x28\x22\x7e\x06\x9b\x42\x1a\x76\x35\xb1\x54\xf5\xb5\x0e\x7d\x54\xfc\x40\x54\x9e\xc4\x8e\x4d\x58\xdc\xf1\x08\x13\x26\x54\x93\x61\xaa\xef\xf4\x29\xf5\x98\xb7\x61\xe9\x63\x73\x71\xf0\x63\xdc\xc9\x52\xac\x84\xf8\x3f\x4c\x70\x77\x73\xb5\xa8\x4c\xe8\x5e\x4b\x44\xe1\x1a\xe3\xef\xac\x1e\xb9\x1b\x12\x8f\xee\xa8\xb8\x27\x9b\xcd\x93\xa2\x78\x34\xd1\xeb\x80\xe8\x5d\xb7\x07\x87\xbd\x2a\xfc\x0d\xa8\x3f\x28\x29\xe0\x20\xd3\xb8\x63\x80\x68\x9c\x3e\xb2\x9d\x69\xc9\x9a\xbf\xb4\xf0\x78\x03\x79\x07\x63\xd7\x35\xe9\x96\x96\x20\x42\xbb\x3b\x40\xe2\x03\x04\xb1\xbc\x0f\x7b\x32\xe0\xbd\x41\xd2\xe0\x82\xd0\xbd\xcd\x33\x3c\xe8\xb4\x65\x85\xf4\xe6\x00\x4a\xc4\x2d\xc9\x41\x84\x04\x3c\xcf\x23\xd5\xf1\xbd\x09\xc0\x29\xae\xe7\xeb\xfe\x8f\xe4\x7c\x53\x95\x4f\x91\xc0\xd7\x78\xdf\x94\x6f\x25\x8b\x9b\x09\x7d\xc3\xa0\x53\x42\x3e\x29\xb8\x60\x0c\xfc\x9c\x84\xdf\x1e\x6c\xd5\x34\x37\x72\xc9\x7a\x8e\xa0\x4f\x59\x56\xbd\x25\xb2\xf3\x98\x37\x71\xea\x3c\xef\xaa\x45\xe8\xc3\xe9\x25\x47\x4c\x34\xb1\xe0\x31\x6e\xb3\xbf\xcb\x56\xf0\x14\x5f\xe9\xff\x64\xc2\x70\x20\x6a\x8d\x79\x6e\x97\xea\x2f\xd9\x26\xd3\xa5\xaa\x35\x5c\x50\x95\x1a\xef\x8d\xeb\x52\xc3\x32\x56\xa5\x4d\x9f\x19\x39\xab\xca\x43\x59\x8c\x3e\x86\xda\x73\x3e\x9b\x75\xd6\x67\x23\x03\xcb\x29\xc3\xca\xf8\xfe\xc7\x7d\xe6\x11\xd6\x14\x67\x5a\xce\x3a\x3d\x0d\x9e\x9b\x75\xfa\x18\xcc\xa9\xb0\xbd\x45\x7a\xac\x70\xe7\xe3\xf0\x5a\x0c\xce\x60\x95\xce\xd6\xeb\x1c\x15\x9b\xc2\x13\x5d\x3b\x6f\x38\x2a\xab\x41\x7e\xc4\xe1\x32\xdf\xa5\xb5\x7a\xe1\x5f\x0c\xf7\x52\xd8\xc4\xbf\x93\x03\x0b\xb5\xaf\x17\x5b\x4b\x91\x31\x73\x27\xf7\x75\x38\x9a\x09\x0e\x00\x42\x33\x1a\x7f\xa1\x5a\x8c\x35\xad\xa9\x48\x0b\xc8\x67\x60\x9a\x0c\xdc\x07\x67\x00\x03\x40\x43\xca\x39\xf1\x27\xb1\x7e\x90\x6c\x79\x64\xda\xdf\x07\x1b\x13\x39\xb1\x9c\xe7\x8b\x1b\xd7\x22\x66\x7f\x65\xdb\xc3\xa8\x7e\x8c\x76\x36\xea\x5b\x40\xfc\x78\xb6\x7d\xf1\x04\x7a\x78\x71\xe0\x83\x5e\xc8\x04\xaf\xae\x03\x84\xc0\x8a\x83\xad\x32\x6e\xab\x62\x47\xe4\xcd\x83\x31\x7b\xf6\x74\xfb\x22\xce\x4f\x14\x81\x33\x86\x83\x65\x0c\x06\x8e\x45\x97\x0a\x97\x79\xf9\xd6\x0a\xae\x4f\x5c\xfb\x5b\x41\x1d\x6a\x38\x38\x8b\x02\x56\x14\x90\xba\xb1\x93\xaf\x18\x95\x8e\x71\x62\xbb\x0b\x78\x9e\xc3\x0e\xc3\xc1\xb0\x74\x95\x05\xa4\x0d\x4b\x06\xa3\xd9\x89\xa2\xc4\x42\x62\x70\x82\xe5\x2f\x69\xb8\xa6\x59\x86\xf6\x70\xf3\xe2\x43\xf0\x74\xe2\xf0\xdb\x81\xb2\x85\x91\xe7\x98\xa2\xf8\x2d\x0a\xf4\xe7\x24\x88\x3e\x9c\x61\x60\xcd\x15\x95\x15\x5b\x73\x05\x0d\x94\xa5\xe6\x50\x39\x27\x93\x65\xa8\xc5\x42\x50\x0a\xee\x62\x55\xb8\x75\x93\xa9\x83\x00\xf5\x9a\x38\xbc\xf6\xa2\xa9\xfb\x55\x13\x5c\x4f\x15\x13\x33\x4c\xd6\xb0\x21\xb3\xb8\xaf\x7b\x59\x1f\x14\x2f\xba\x5a\x0c\x96\x11\x9b\x7c\xb6\x96\xe0\xaa\xe3\x66\x47\xbc\x65\x5d\xd1\xa0\x63\xc9\x50\x3f\x59\xe7\x97\x57\xf0\x40\x44\xbc\x90\x18\xcd\x92\xe9\x35\xfd\xcb\x8a\xf6\xc0\x7c\xc6\xc6\xee\xaa\xd8\x46\x74\x99\x36\x8b\x05\x5b\x86\x56\xb5\x7a\xf8\xd8\x97\x66\xaf\x53\x17\x6b\xb1\x12\x0d\x6d\x6c\x8d\xef\xca\xe1\x53\x0a\x97\x54\xcc\x04\xba\x6d\xb9\x20\xa1\x64\xc6\xea\x9e\xb6\x86\x03\xc9\xd4\x36\xad\xf7\x9e\x55\xb9\x9e\xe0\xd0\x88\x77\xa6\x01\x5a\x14\x25\xe1\xc6\x4b\x99\xd4\x08\x3d\x43\xd0\x29\x31\xc4\x30\x7c\x9f\x10\x82\x0b\x10\x62\x26\x52\x11\xa6\x88\xc9\xca\xc9\xc9\xb7\x2c\x2f\xa3\x36\x84\x1e\x56\xa4\xea\xaf\xc8\x22\xc3\xa2\x66\xb6\x5b\x7a\x6e\x7e\x18\xa7\x40\xba\x6d\x23\xa7\xff\x1f\x34\x38\x06\x12\x71\x95\x5b\xf2\x46\x42\x63\x90\xad\x5e\xdd\x76\x97\xb8\xc7\x20\xf3\xa6\x60\x01\xf4\x25\xfd\x8d\xa5\x18\xe7\x4e\xd1\x44\x19\x10\xe7\x96\xaf\x0b\x89\x76\x95\x13\x08\xdd\xe5\xfa\x5a\xae\x7e\xf1\xa1\x30\xe4\x6d\x31\x0e\x60\x73\x11\xf1\x0c\xc4\x67\x9e\x28\x40\x8d\x98\x61\x9f\x07\x7f\x07\x8c\xf8\x6d\xd9\xf2\x70\x99\xb9\x7f\x68\xe9\x3d\x6c\x13\x14\x02\xd6\xae\xb7\xc2\xbb\x31\x0c\xd8\x5d\x88\x73\x8a\x23\x5e\x30\x59\x30\x37\xfd\x99\x9d\xa2\x6f\xc5\x21\x05\x8b\x23\x44\xd4\xb8\x4d\x69\x20\xb2\xc8\x8b\xe7\x3a\xda\xa3\xec\x74\xce\xd8\x25\x0a\x10\x1b\x10\x36\x6e\x91\x4a\x4d\x8c\x20\xb1\xb1\x19\x41\x78\xed\x1e\x80\xcc\xa6\x75\xb8\xce\x28\xb8\x17\xd6\xde\x44\xf3\x21\xe0\x28\x91\x9f\x4b\x34\x54\xdd\x4c\x3c\x63\x1f\x09\x2f\x98\x53\x3c\x7b\x8a\xa0\xdb\x9c\xeb\x2c\xe7\xe3\xf9\x60\x76\xb3\xe7\xb2\x86\xd0\x00\x31\xa3\x2d\x97\x79\x5b\xd8\x1d\x53\xe5\x34\x6c\x2f\x08\x8e\x12\x5e\x21\xc8\xd7\xb4\xfb\xd1\x22\x88\x33\x12\xc8\x0d\x1f\x07\xd2\x78\xb3\x53\x48\xdb\xf0\xf1\x2a\x5b\x08\x1b\x63\xeb\x6c\x62\x2e\xbb\x2d\xf3\x1b\x61\x5e\x56\x0f\xba\xfc\xf8\x4f\x97\xe7\xef\x8f\xd2\x2f\x4f\xf6\xfb\xfd\x13\xce\xfe\x64\xd7\xae\xd9\x8e\xb9\xe0\x3b\xac\xff\xe3\xec\xdd\x51\x5a\xf6\x8b\x1f\x67\xb4\x53\x02\x1b\xf2\xb3\x5b\xed\x10\xa0\x50\x60\xea\xe2\x5d\xf4\x3f\xce\x9e\x74\xc6\xa8\x27\xc1\xd0\xf5\x41\xb8\x40\xf2\xe8\xd9\xa1\x87\x0e\xa6\x1c\x7e\x78\xe9\xbc\xa4\x7d\x29\xce\x0c\x10\xf0\x09\xc0\xaa\x0d\xdf\x47\x46\x87\x08\x92\x88\xef\xd8\xba\x6a\xb7\x2e\x62\xde\x46\xbd\x53\x94\x95\xc5\x2f\xc3\x92\x70\x48\x0e\xc7\x69\xcf\xd3\x3f\xf1\xa6\x9a\x51\x2a\x54\xc0\x49\x46\x05\x00\x0e\x57\x27\x4c\x94\x54\x1d\xb7\x94\xc3\x04\x6f\xae\x70\x5a\xf6\xb8\xe9\x31\x45\x1b\xd2\x72\xd7\x36\x3f\x9a\x36\xdf\x94\xe3\xca\x4a\x29\x46\x7f\x11\x35\x83\x94\x63\x19\x60\x3f\xe4\xaa\xc3\xe5\x5f\xe7\x8a\x5f\x5a\x75\xae\x8c\x96\x0f\x05\x1c\xd4\x31\xe2\xda\x2a\xad\x8d\xa4\xe7\xa0\x86\x43\x0b\x94\x1c\xb5\x64\xda\x4b\xbb\x82\x09\xcb\xe9\x53\x17\x17\x2f\xf7\x46\x35\xe0\x03\x31\xc9\x30\x42\xba\x35\x89\xd4\x59\x38\xc3\x59\x70\x88\x75\xbf\x0c\x02\x83\x7f\x36\x93\x32\x93\xa2\xd1\x75\x87\x50\xa4\x93\x52\xcd\x74\x55\x4c\x6c\x07\x89\x43\x57\xa2\x83\x64\xde\xc5\x89\x97\xe3\x13\x09\x85\xd8\xda\xae\x9b\x3b\xbb\x11\x72\x8a\x2f\xbd\x6a\x19\xf6\xcc\x83\x69\xa7\x3c\x64\xb0\x5b\x6a\xb2\xb8\xb8\xbf\x06\x4e\x77\x54\xe4\xaa\xef\x52\x81\x61\x6b\xc3\x50\xac\x8e\x34\x60\x13\xcd\x9b\xb8\x54\xe0\xa0\x86\xd7\x1f\x4e\x5d\x0d\x07\xae\x3f\xc4\x59\xc3\x2b\x10\x41\xd6\x6f\xb8\x02\x11\x23\x69\x7c\xc1\xc1\x77\xf5\x1b\xee\x38\x4c\x75\x7a\x2c\x67\x4d\x21\x7e\x22\xc3\x94\xb4\x55\x84\x7d\xfb\x86\xbb\x0e\x83\xcd\xf5\xb7\x08\x5c\x53\x2d\xf1\x28\x09\x90\xfb\x35\x15\x50\x51\x5d\x5f\xcf\xe6\x6d\xb3\xef\xf8\x42\x01\xfc\x72\xb2\x11\x0f\x7f\xa7\x97\xf8\x16\x10\x56\x6f\x83\x28\x24\x20\x91\x62\x74\x42\x91\x12\x90\x48\x5e\xda\x46\x7e\x11\x4f\x29\x05\xae\x08\xd9\x4d\x29\x5f\x8d\x94\x94\x99\x64\x21\x76\xbe\xcf\x38\x84\xab\x10\x50\x47\xb1\xda\x03\x99\x2e\x39\x46\xc1\x38\x68\x08\x37\x43\x65\x9c\x38\xea\x65\x55\x88\x53\xde\x66\x19\x84\x65\x70\x04\x46\xc4\x50\x41\x5e\xf2\x20\xa1\xc9\x33\x41\x18\x2e\x3d\x84\x22\x08\x93\xfe\xe5\xdb\xf7\xf2\x09\x33\x22\xbd\xba\x0b\x3b\xa2\x57\x6c\x52\x6a\xc6\x49\xb3\x29\x23\x25\x4b\x13\x63\x2f\xd1\x05\x98\x87\x76\x7c\x39\x88\xa2\xcd\xaf\xa1\x17\xe6\x7f\x17\x4b\x32\x99\xcf\x76\xd1\x96\x4f\x86\xd9\x08\x39\x82\xea\x4b\x04\x5c\xbc\xea\x75\xf9\xcf\xc5\xe5\x2c\x14\x07\x38\x7c\x58\x78\x8c\x98\xa9\x13\xd1\xdd\x43\x5a\x68\x2b\x56\x76\x28\x81\x0e\x2a\x04\x75\x78\x6f\x54\xa0\x1d\xf8\x2c\x37\x88\x3e\x5f\xba\x5b\x0d\xf9\x52\xce\xc7\x7c\x1a\xb6\x51\xe6\x3e\x20\xca\xe3\x5d\x52\x99\xfa\xc6\x9b\xb2\x51\x3a\x9c\xf3\x2e\x42\x0b\x39\x8a\x64\xd3\x38\xdc\x00\xef\x56\xb3\xe1\x40\xb8\x73\x3a\xc5\x59\x8a\x6f\x07\x65\x92\x0a\x93\x4b\xb6\x29\x02\x61\x45\x08\x28\x5c\x56\xce\xf2\xf6\x86\xbd\x75\xe2\x20\xd1\x0a\xd8\xb7\x7a\xe5\x9b\xff\xc3\x11\x53\x2f\xb1\x17\x12\x1a\x55\x18\x5b\xe6\x20\x37\xf6\xa7\xc6\x4c\x5d\x06\x96\xae\xc4\xbd\xc0\x3b\x09\x89\x5f\xf9\x21\x65\x8c\xef\xf7\x50\xda\x93\xe1\xb8\x05\xf0\x0e\xd1\x7f\x29\xff\xcf\xff\xfa\xdf\xc4\x9e\xb6\x0d\xad\x96\xb8\x8c\xa7\x7e\x60\xfc\xb8\x9b\x5d\xaf\xf7\xe9\xfb\x04\x3c\x3a\x68\x88\xa0\x3f\xd5\xfb\x6d\x14\x1a\xd1\x28\x3b\xfc\x34\xfa\xe6\xe3\xd4\x01\x91\x63\xd3\xe2\xc9\x1c\x67\x11\xc3\x32\x8c\xa8\x32\x5d\x23\x9c\x1f\x0a\x1b\x5c\x0c\x9a\xdc\xee\x56\xa2\x9b\x5e\x52\x92\x4f\x4d\xbb\xfc\xec\xbd\x15\xb9\x81\x88\x3c\x15\x61\xa7\xe2\x61\x0c\x61\xaf\x99\xfc\xc6\x6e\xd5\x65\xe7\x27\xae\xd1\x70\xfc\x67\xe6\xff\xe2\x3d\x44\xee\x96\xba\x42\xc2\x8a\x1e\x75\x76\xc1\x54\xbd\xe6\xe1\x0a\xe7\xc4\x2d\xdf\xf0\xe6\x2a\x6d\xfc\xf4\x00\x48\xbc\xa2\xe8\xd1\x57\xf4\x3e\x03\x2c\x4b\x4d\xd7\x66\x62\x60\x91\xe8\x99\x0c\x5b\x3b\x72\x80\x1d\xd7\xb0\xef\x7a\x26\x3f\xd1\xa6\xbf\x45\x04\xcd\x6b\x44\xc0\x29\x13\xec\x39\xf9\x3f\x81\x2b\x0c\x55\x08\x71\xac\x86\x34\x7e\xe0\x6e\x23\x72\xfb\x19\xd8\xbc\xc2\x0d\x4f\xe4\xcb\x93\x0b\x07\xa2\x26\x8e\xe3\x46\xce\x99\x30\x32\x88\xbd\x0f\x3a\xba\xba\xf0\x68\x0d\x0d\xa9\xde\xe5\xe6\xb2\x88\xcb\xa9\x8d\x93\x92\x0c\x5c\x03\xd5\x91\xb9\x41\x37\xf3\xd5\x04\x53\x66\x25\x67\x75\x3e\x1b\x8f\x57\x3e\xa7\xc9\xf3\x8b\xc0\xb3\x4d\x69\xd5\x75\x81\x90\x80\x3c\x3e\x3a\x5d\xd3\x06\x61\x1d\x6d\x66\x50\x10\x8b\x72\xbf\x1c\x30\xde\x1f\xbb\xd1\xfa\x7e\xf3\xfd\x71\x19\xf7\x1b\xf0\xff\xa3\xc7\x44\xd3\x2e\x32\x42\xdd\xca\xc0\x57\x86\x4b\x9a\x72\x9a\xf1\xef\x38\xb4\x21\x92\xd2\x66\x8c\xe6\xf6\xc1\x53\x1b\xcd\xe3\x94\xfe\x87\xdd\x97\x7d\xff\xd9\x4d\xe4\x34\xea\x1b\xa4\xbd\xb8\xc7\x81\xa0\x17\xb5\xca\x21\x84\xf5\x4e\xf1\x6d\xbf\x43\xbb\x37\x2f\xb8\x46\x3c\x63\xb8\xc7\x1b\x5d\x3d\x43\x4f\xef\xcd\x12\x5f\x44\x0b\x9b\xe9\xb4\x4c\xfe\xea\x96\x29\x9e\xe5\x0a\x9a\xa8\x4e\xbf\x7e\x0f\xed\x80\x2e\xfe\xbe\x0b\x69\xc3\x56\x32\xaf\x71\x16\x6f\x61\x23\xef\xcd\x11\x2e\xb3\xf1\x79\xd7\xbf\xe7\x92\xda\xb4\xbe\x9b\xf7\x80\x7b\x53\xc5\x60\x51\x36\xfc\x79\x85\x02\xef\x21\x0c\x5f\xb2\xc9\xf0\x0c\xd7\x63\x6e\x87\x87\x07\xfa\x61\xa3\xd9\xba\x44\xb8\xf7\x4c\x3d\xe8\xd8\xfd\xf4\x41\xbc\x67\x7d\x30\x6a\xd9\xca\x15\x33\x0f\x24\xdf\x10\x77\x26\x53\x86\xf9\xe3\x3a\x62\x1b\x32\x8b\x75\x47\x0e\x67\x08\xb8\x78\xc2\xda\xa2\xc4\xcd\xa7\x13\x09\xb9\x14\xdd\x6b\xa9\x23\x38\xdf\x08\x71\xf2\x05\xa3\xcc\x20\x56\x57\x3d\xc5\x35\x5f\xfe\xa0\x41\xb9\xdb\xf2\x10\xe6\xce\xeb\x0d\x0f\x93\x00\xaa\xb8\xa9\xad\x82\x84\xfc\xc7\x61\x59\xe2\xf0\x58\x57\xcf\xf7\xcd\x3e\x91\xa5\x73\x06\x53\x36\x71\x4a\xa5\x31\x71\x93\x24\x8e\x65\x14\xbd\xf9\x9c\xca\xdd\x34\xbd\x1b\x3b\x4e\x1f\xdc\x86\xc2\xca\xe1\xee\x41\x99\x8f\x39\x16\x40\x21\x35\xe0\x02\x0a\xcb\xf5\x21\x71\xcc\xb4\x54\x08\xb0\xbe\x5a\x91\x44\xa3\x7a\x43\x88\x6f\xa9\x98\xdb\x39\xaa\xee\xc8\xf4\x5b\x70\x39\xc2\x97\x54\x84\x1f\x6e\xac\x1d\xe2\xd4\xdd\xb5\xc3\xbd\x18\xe0\xdb\x11\x42\x7c\x4b\x3b\xb8\x96\xa7\xb0\xbe\xe2\x41\xbc\xaf\x3d\xb4\x39\x54\x0f\x2a\xe1\x49\x55\x37\x6c\xa2\xbf\x0e\x74\x15\xac\xd7\x38\xed\x2d\x06\xf2\x07\xab\x37\xc7\x0b\xa7\xa4\xc8\xa1\xe3\x84\x88\x20\x87\xf2\x93\x97\xc6\xbf\x3e\xc5\x79\xa4\x91\xd3\x81\x06\xc7\xed\x1e\x6c\x6a\x15\xd2\x76\x79\x91\x0e\x32\xd6\x99\xca\x75\x92\xf8\xf5\x85\x57\xe0\xec\xba\xb4\xc8\x77\xe1\x92\x01\x01\xcf\x46\xb2\x10\x87\x9b\x6e\x8e\x33\xab\x0b\x6a\x1d\x17\xe6\x58\x35\xa0\x1c\x8b\x1e\xc3\x19\xef\x0c\xa5\xb3\x40\xd9\xca\x4c\xf9\xc8\x64\x56\x39\xd9\x36\xa8\x4d\x7e\x17\x1d\xb6\xf3\x35\x77\xde\x91\x45\xb3\xe6\xf0\x8a\x3d\x6e\x8a\x5f\xab\xc5\x8b\xa5\x23\x98\x83\x4a\x99\x59\x38\xd5\xc7\x04\xe2\xc9\x6e\xd9\xe6\xac\x0b\xb7\xb1\x66\x66\x11\x90\x02\x0a\xfc\xa3\xeb\xa5\x7b\x52\xc4\x73\x03\x9c\x66\x52\x41\x8f\xee\x63\x0a\xdf\xd1\x00\xb0\x8d\xfb\x5b\x00\xb6\x20\xbe\x38\xa9\x19\x01\x0b\xb8\xaf\x21\xfa\x16\xc8\xb7\x37\x04\x7c\xe3\x1b\x1b\x72\x64\xad\x50\x0f\x70\x45\x31\x39\xff\xef\x6b\xdf\x60\xbb\x03\xe2\x8c\x5c\x0c\x0e\x08\x3e\x7a\x10\xce\x11\x7d\x60\x77\x62\xc5\xe2\x00\x5f\xed\x60\x74\x39\xf3\x45\xd5\x34\x84\xd8\xca\xd6\x7d\x68\x2b\x13\x5f\xd5\x64\xeb\x8d\xbe\xbd\x53\x91\x84\x3b\x17\xdf\x14\xf5\x9e\x94\x64\x13\x86\x23\x49\x71\x3b\xf9\x09\x68\xff\x7c\xe0\xe1\x49\x79\xa7\x46\x4c\x01\xba\xe8\x7d\xc2\xb1\x07\xc0\x7b\xbd\x2f\xc6\x5e\x27\x87\xee\x47\x3b\x71\x36\xb0\x34\x59\xce\x9e\x02\x49\xbc\xa1\xcc\xe5\x1d\xe1\x60\x83\xd7\x8f\x16\xec\x78\xab\xa9\x2b\xb1\xb1\x38\x93\x10\xfb\x5e\x63\x55\x8c\xea\x61\xd8\x61\x87\xbf\xf9\xe0\x7b\x07\xe5\x22\xeb\x98\x54\x10\x90\x70\x90\x1e\x78\x03\x84\x6d\x6b\x6b\xfe\x0d\x7d\x09\x68\x09\x54\x98\xbb\xa0\x65\xda\x0e\x14\xba\xeb\xa6\x6a\xcc\xf8\xa0\x2e\xd5\x63\x4a\xf7\x5c\x1c\x33\x09\x76\x79\x55\xb0\xcb\x2b\x79\x18\xe8\x28\x88\x88\x70\x1e\x26\x6c\x9d\x73\xa1\x28\x3a\x5e\xf8\x7c\x3c\xae\xc5\xc6\x51\x7c\x17\x36\x8a\xc8\x17\xa3\x5a\x4c\x81\x1d\xc6\x89\xdd\x62\x18\x63\x57\x41\xa2\xd2\x63\x07\x33\x61\x92\x38\xd2\x8c\xa2\xf4\xf1\x91\xb8\x27\xa2\x53\x0d\xe3\xd6\xcd\x92\x9d\x80\x42\x09\x19\x77\x4f\x65\xe7\xb8\x4c\x33\x9f\x8c\x8a\x80\x01\x7e\x18\x83\x73\xad\x3e\xef\xe2\xdc\x98\x82\x61\x84\xde\x2c\x1a\x01\xd2\x9e\x3a\x5f\xac\xd0\xff\xd9\x14\x21\xd9\xd6\xd8\x11\x93\xbe\x77\x38\x01\x29\x0f\xc4\xa4\xf6\x1c\xcc\x24\x0c\x3f\x78\x87\xd7\x77\x82\x54\x36\x47\xae\x33\xf5\xc1\xd3\xe8\x1d\x7c\xb6\x4d\x76\xfe\x76\xd2\x73\xcc\xb8\xee\xde\x4c\xc1\x2a\xc6\xf7\xd2\xd4\xc7\x8f\xe6\x14\x89\xe3\x9e\xe5\xcc\x97\xac\x0b\xa3\x1a\x20\xe4\x7e\xaf\xd6\x79\x39\x81\xa5\x1b\xb3\x50\x70\x44\xf2\x4d\x65\x0c\x5a\xe9\x21\x5c\x31\xdf\xdf\x54\x68\xcf\xf8\x62\x2f\x34\x72\x51\x23\x23\xb6\x66\x20\x5f\x29\x61\xd0\xc4\xc9\x22\xbe\xa3\x91\xfc\x62\xd5\x72\xe1\xde\xd9\x39\x65\xdf\x6e\xed\x9c\xaf\x10\xf3\x1a\x56\xca\xcb\x6b\x4d\x1d\x6b\xe0\xa6\xb3\xdf\xd7\x32\x34\x88\xf7\xdc\x53\xc5\x1f\x6a\x5b\x5b\x76\x77\xf5\x22\xc3\x73\x4b\xdd\x4a\x0f\x2a\x3f\x94\xa2\x2b\x7f\x34\xa3\xb8\xa7\xb9\xfa\x81\x28\x71\xa4\xd7\x3d\x12\xe7\x97\x8f\x17\x14\x5f\xf1\x73\x4f\xb4\xc4\x3d\x01\x4f\x44\x6e\x13\xe0\x48\x3c\xeb\x7f\xbc\xb7\xa2\x41\x5f\x02\x86\x18\xe0\xb6\x45\x53\xf8\x59\xc4\x6f\xe8\x41\x70\x48\x1e\x76\x83\xc9\x40\x67\x3f\x78\x45\xe8\xe5\x99\x11\xf7\x98\x5d\x5f\xb0\xb7\x3e\x7e\x04\x43\xad\x76\x74\x41\xb3\xe7\xb4\x54\x79\x74\xa0\x43\x61\xbd\xf7\x8c\xd0\xa3\xa8\x15\x5f\xef\x63\xb8\x08\xc9\x43\x81\xbb\x2d\x9e\x89\x75\x2f\x04\x7e\xc4\x77\xc8\x14\xc4\xf1\x66\xb6\x6c\xda\x86\x86\x47\x6e\x49\xab\x33\xce\xd7\x16\xd7\x4d\x64\x80\x0a\xfc\x2e\xdb\xe9\xcd\x76\xcb\x73\x86\x68\x92\x1f\xf8\x9a\xbb\xcf\xd5\x37\x7d\xbe\xb6\x3c\xac\x81\x5c\xa8\xde\xfa\x8a\x13\x2c\xd7\xb1\x25\x04\x39\x35\x4f\x33\x67\xdb\x5a\x64\x51\xe0\x73\x8d\x09\x60\x71\xcc\xc1\x57\x8f\x09\x5d\xbb\x6d\xc6\x5d\xc5\x1d\x49\x89\x4e\xdf\x21\x3a\xbd\xe2\xe8\x71\x0d\xd6\x2a\x97\x6d\xd0\xa8\x43\xf9\xf8\xc6\xdb\x30\xcf\x2b\xbe\x18\x37\x84\x37\xcc\xad\xca\x7c\x3b\xc2\xdb\x1b\x8a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x5c\x55\x81\x8d\x55\x98\xe3\x2d\x45\x1d\x82\x86\x05\xc0\x10\x1e\x0f\xb8\x1e\xc8\xa1\x6b\xf6\xb0\x55\x7a\x66\x33\x6a\x55\x33\xff\x1b\x5e\x1d\x55\xe8\x73\xf9\x0c\xa0\xe6\x4d\xd3\xf3\xdb\x4c\x5b\x16\xb7\x16\x37\x0e\x4d\x2f\x2d\x9e\xc5\xad\xc5\xcd\x08\x53\x02\x3d\x46\x95\x40\x1f\xc6\xd5\x86\xfd\xc6\x50\x5d\xed\x6e\xc1\xcf\xb3\x76\xae\xc2\xb3\x4b\xf6\x37\x73\xe9\x12\x46\x35\x8e\x72\x86\x14\x3a\xcc\x3c\x55\xf3\x82\x84\x88\x72\xb2\xea\x13\x4e\xb9\xb7\xee\x51\xde\xb0\xf2\x51\xf6\xa9\x99\x02\x5f\xd3\xac\x74\x9e\xef\x16\x37\x65\xcf\xf6\xf9\xab\x0c\x27\xcc\x61\x59\x17\x06\x96\xbe\x04\x58\xfa\x86\xc0\xd2\x2b\x79\x3a\x74\x5c\x2a\x2d\x3a\x9b\xb2\xcf\x61\x29\x10\x94\xf2\xfa\x84\x46\x80\xa3\x8b\x7c\x2a\x17\xb4\x33\x99\x4a\xd9\x3a\x0b\x59\xf0\x09\x4a\xd0\x47\x4d\x45\xf0\x3e\x76\x20\x53\xa5\xf1\x36\x40\x56\xbf\xc5\xdd\x42\x1c\x29\xf3\xc6\x80\xda\xf0\x41\x62\x02\x58\x78\x84\x24\x58\xe3\x91\x38\x14\x87\x6b\x48\x02\xbf\x8a\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\x2e\xf2\x5d\x37\x09\xb8\xcd\x65\x32\x1d\x84\xb4\xea\x0d\xd0\x6a\x1e\xc2\x69\xa5\x9d\xa0\x52\xd8\x8a\xec\xd4\xc4\x8e\x5b\x1d\x2b\xda\x4b\xec\x30\xe3\x36\xb7\x8a\x78\x8f\x5d\x60\xbf\xfa\xd4\x9e\x82\x89\xf4\x0a\x99\x55\x62\x4c\xde\xc2\x33\x12\x16\xb6\xb4\xe8\xe2\xb0\xc4\x45\xef\xfe\x69\x9c\xdd\x53\x73\xde\x09\x34\x3e\xbc\xe0\xaa\x25\x42\x30\x35\x93\x95\xf8\x49\x25\xb5\x5c\x11\x40\xf1\x95\x24\x27\x49\xeb\x30\x33\x36\x0d\xee\x39\xed\xa8\x80\x77\xd8\x4f\x04\x7d\x3b\xe8\x92\xdd\x9c\xd9\x7d\xa3\x57\x76\xdf\x9b\x00\xc7\x38\xe8\x8e\xb1\x5b\x75\x59\x88\xce\xa1\x2f\xbc\x7c\x80\x5e\x06\x57\x0c\x47\xa0\x38\xf9\x0e\x1f\x11\x0c\x8e\x1f\x0d\xe5\x38\xe8\xc3\xeb\xa7\x6a\xc8\x37\x2a\x21\xc8\x13\x3c\x19\xcb\x56\xcd\x72\xaf\x6b\x0a\x45\x5e\x3b\x68\x18\x72\xde\xed\x01\x7d\xef\xd1\x52\x8c\x8b\xe9\x47\x37\xfe\x9f\xbc\x3b\x12\x36\xc0\xbf\x3e\x72\xa0\xfe\xff\x90\xd7\x47\x86\x9a\x59\xf7\xfc\x08\x9e\x57\x98\xe1\x22\x46\x3c\x8f\xa3\x83\xab\x68\x3e\x23\x47\x38\x4f\x11\x11\x1f\xe5\x23\xca\xab\x7d\x4d\xe3\x2b\x5a\x1b\x4c\xd1\x61\x7d\xc1\xdd\x99\xa8\x36\xc9\x31\xf6\xb1\x18\x37\x41\x62\xc6\xa7\x45\x12\xaf\xda\x88\x54\xdd\x74\x95\xaa\x3d\x9a\x41\x25\xa1\x47\x34\x16\x37\xf4\x2a\x05\x65\x92\x4e\xed\x41\x93\xe3\xc9\x1d\xb5\x5a\x32\xc9\xad\x6a\xbb\x96\x33\xc9\x4c\x14\x30\xe8\x8a\xc4\x84\x5e\x5d\x24\x46\xdc\xed\xe3\xfd\x29\x09\x69\xfc\xd8\x0a\x23\x68\xb1\x16\x13\x57\x1d\x14\x0a\xa0\x49\x5e\x15\xb4\x65\x68\x9f\x2a\xb1\xfa\x7c\x3a\x5e\x4e\x97\x18\x7d\x57\x1e\x4f\xca\x4b\x0c\x36\xfb\x05\xac\xdc\x78\x6f\x7f\xfa\x3e\x8c\x0f\x5c\xf4\x23\xd5\x3f\xb4\x2c\xfd\xe2\xc5\x65\x2e\x36\x3b\x58\x54\xd4\x17\xd6\x4b\xb6\xdb\xd1\xd6\xf7\x7d\x5b\xcd\x77\x7c\x3e\xa6\xf6\x00\x4c\xd4\x72\x90\xee\xd2\x46\xb0\xdd\xce\x9e\xae\xb8\xd4\xd0\x61\xd8\xc1\xeb\x7f\x03\x38\x71\xd3\x62\xed\x7b\x85\x2f\x2b\x02\xea\x65\x07\x20\x87\x4e\x11\xc4\x86\x99\x6b\xd6\xe5\x3c\x3d\x88\x37\x15\xe9\xe5\xb1\xa6\xe0\xd9\x79\x55\xab\xe0\x75\xfa\x83\xc3\xc7\x90\xa3\x67\xec\x7d\x92\x0e\x08\x92\x82\x51\xd1\x97\x2c\x7a\x79\x64\x40\x5e\x71\xb8\x7a\x77\x49\xc1\x45\x7b\x27\x27\x4d\x3a\xa0\x7c\xd4\xa0\x8f\xbd\xdb\xd3\x5e\xc7\x67\xee\x39\xfd\x80\x44\xb4\x48\xb8\xb1\xb4\x77\x64\x7d\xe1\xd4\xfe\x46\xdf\x91\x55\x4d\xab\x12\x39\xbf\x83\xc4\x56\xc3\xdb\xce\xca\x09\xee\x8b\x0f\xe6\x8b\xbe\x78\xa1\xe8\x1d\xad\x62\xb1\xca\x17\x2b\x94\x5b\xcd\xc2\x89\x12\x2e\xb2\x51\x05\xdf\xf8\x3e\x45\x58\x56\xb0\x1a\xdd\xd3\xd6\xc9\x0b\xa1\xb1\xb7\xca\x10\x30\x93\x89\x6b\x5e\x6d\xa3\x82\xbd\x13\xe3\x51\x86\xc8\xbd\x6d\x94\x69\xda\x7e\xe0\x3e\xc7\xb6\xa2\x4d\xb0\x5d\xbc\x53\x96\xeb\x2e\x3e\xd6\x99\x2b\x6c\xbe\xdd\x3a\x3e\x12\xf8\x1b\x06\x89\x04\x20\xb7\x32\x1b\x02\x88\x3f\xcb\x3b\xe3\x21\x90\xdc\xff\x08\x81\xf8\x0e\x88\x02\x0c\x99\x91\x46\x37\xd7\xd7\xec\x73\x90\x9d\x8f\xe8\xcd\x6c\xfe\xe4\xbb\xfd\xae\x7e\xf7\xce\x71\xb3\x93\x6d\x3a\x1e\x32\xd7\x3b\x46\x1f\x10\xc9\x12\x9a\x81\xdb\x33\xe4\xa2\xfe\xc4\x14\x0f\x93\xb4\x22\x4e\x0a\x2b\xc1\xd2\xc6\x4f\x9b\x4f\xbc\x78\xfe\xa1\xc1\x73\xc7\xfd\xca\x21\x98\x75\xf5\x8b\x4c\x5c\x0d\x06\x79\x70\x52\xb0\x80\xfd\xef\x38\x13\xb5\x7b\x9c\x83\xda\x7d\x00\x5c\x4e\x8f\x6d\x21\xb8\xc4\x97\xb0\x10\xd7\x62\xb6\x49\x53\x2a\xb2\x0e\x4b\xdc\xf0\xd9\xb6\x10\x07\xc5\xdc\x13\x86\x7b\x0d\x7e\x92\x34\x08\x32\x5c\xcd\x7c\x6c\xb8\x82\xf8\xd8\x70\x2d\xf4\xb1\xda\xb0\x41\x0b\xba\x6e\x6d\x03\x71\x79\xf9\x2e\x1e\x6d\x9f\xea\x8f\xf4\x1f\xb3\x51\xcb\x03\xf6\x42\xb4\xa4\xad\xe9\x83\x94\xef\xee\xfc\x18\xe4\x50\x6c\x86\xf8\xd3\xd8\x61\x19\xfa\x54\xff\xa0\x08\x63\x96\xd1\x94\xa9\x16\x07\x10\xe3\x1e\xdc\x8e\x1e\x32\x49\xe5\x6e\x62\xd5\x96\xb6\xec\x84\x6f\x6e\x8f\x88\xd9\x33\x5b\x47\xca\x21\xa3\xb5\x86\xb1\x2d\x7c\xf8\xf4\x74\xa6\xcf\x1e\xab\x51\xbc\x7b\xe4\xfb\x25\xa2\x7d\x0b\xc5\x77\x92\xf9\x52\x52\xd3\x63\x6b\x1f\x5c\x21\xbd\xad\x61\xad\x6e\x59\xec\x15\x64\xf5\xad\xc1\xed\x7f\x1f\x98\x9b\x1a\x98\xbd\xa6\x04\x55\xc2\xe8\xe1\x25\xe8\x10\xf4\xdd\x25\x63\x0c\x72\x37\x8a\x0d\xc3\xb3\xb5\xea\xcd\xe5\xfe\x14\xcc\xc3\xd3\x77\x50\x94\xbb\x76\x47\xaf\x11\x47\x99\xe4\x11\x64\xf7\xe2\xe9\x38\xb3\x5d\xf3\x73\x83\x68\xd7\x96\x26\x07\xf1\xf7\x5d\xb9\xa3\xc2\xe5\x99\x62\xf6\xd8\x4a\x9f\xe9\x3b\x7c\xba\xb1\x92\xfb\x48\xd8\x46\xb3\x15\xf4\x73\xbb\xa1\x84\xdd\x34\xc5\xb8\x51\xba\xa9\xb6\xbc\x2c\xeb\x33\x8d\x3c\x38\x14\x83\xb5\xf9\xcf\x88\x09\x91\x1c\x72\xe6\x33\x7c\x4f\x37\x50\x61\xc7\xe2\x63\x9c\x6e\x04\x45\x74\xde\x04\xc4\xf4\xe6\xd7\x77\xe7\x03\xc8\x89\x09\xaa\x29\x13\x13\x5a\x53\x26\xa6\xaf\x9c\x01\xb9\x2e\xe0\xdc\x67\xba\x07\x02\x79\xb0\x03\x42\x43\xfe\x48\x17\xc4\x33\x59\x90\x52\x5b\x91\x6f\x65\xc6\x28\x9d\xc9\x77\x0c\x14\xb8\xc1\x16\x28\xf3\x82\x3d\xaa\xb5\x0e\xeb\xac\xe5\xfc\xc2\xf3\x03\xb1\x2d\x08\xf8\x81\xd8\xe8\x4e\x36\xcf\xa0\x69\xaf\x7b\x5b\x15\xea\x30\x5c\xe0\x2f\x34\xca\x40\x0d\xc4\x97\x6c\x10\x5a\xb4\x6b\x26\x11\x6e\xe5\xa4\xb7\x13\x7c\x45\x43\xa7\x13\x91\xe7\x8b\xc0\xfa\x69\xc8\xcf\x38\x49\x0e\x03\x5e\x2e\x1c\x62\x4c\x13\xf5\xfa\xc4\x3b\x08\x87\xd2\x6a\xd0\x99\x75\x75\x5d\x3a\x15\x97\xf6\xe6\x1d\xc5\x45\xc0\x2b\x7e\x08\xdb\x6e\x52\xca\x53\xd8\xe7\xf4\x31\xe8\x44\x58\x94\xf6\x64\x54\xd2\xb6\x82\xda\x31\xc0\x8b\x44\x4c\x63\xdc\xa0\x95\x6f\x07\xe0\xca\xb8\x87\xec\xd6\x9e\x92\x0c\x66\x88\x7f\xd7\xcd\xaf\xcf\xae\x76\x5e\x97\x27\x6b\x66\x28\x5d\xb9\x18\x06\x2b\x97\x99\x19\xcc\x16\xad\x38\xc0\xe1\xbf\x2b\x3e\x00\x76\x29\xe1\xdc\xb3\xb8\x8e\x68\xaf\xd8\xc9\x2d\x1d\x0d\x7a\x78\x6f\x96\x20\x68\xb2\x84\x09\x27\x8e\x31\x40\xf9\xa5\x5c\xec\x82\xf3\x88\x5f\xe5\x5b\x15\x80\xbe\x98\xc6\xac\x0a\x77\x35\x1c\x78\x5e\x48\x4c\x00\x33\xe5\x05\xcb\x9a\x0e\xdb\x48\xb3\x91\x3c\x58\xbf\xab\x1e\xdb\x1f\x86\x32\x53\x0d\x33\x8f\x90\xcf\x6c\x2d\x97\x36\x06\xd6\x1b\x06\x1b\x4a\x21\x61\x5c\xf6\x53\x24\xa7\xb9\xb4\x89\x86\x5b\x52\xb3\x65\x96\xb5\x9d\x05\xb0\x10\xc5\x83\x17\x69\xa4\x0d\x92\xfe\x35\xdb\xac\xe4\x93\x18\x43\x7c\x1e\x78\xf1\x37\xbd\x65\x60\x7f\x13\x5d\x1c\x7a\x28\x6e\x3c\xe5\x76\x95\x65\x62\xd3\x23\x71\xd9\x1a\xc0\x3e\xed\xda\xc5\xd3\x87\xa1\x53\x46\x56\x25\x05\x9e\x41\x7f\x8a\x3d\x83\x6a\x3b\xcc\xf5\xe4\x6f\xea\xee\x51\xbe\xc3\x72\x45\x5f\x22\x45\x77\xff\x14\xb8\x7c\x1c\x7a\xaf\x0c\x3c\x74\x36\xf5\xf7\x14\xe4\x1c\xad\x68\xff\xec\x7b\x80\x17\xdc\xb5\x66\x84\xc8\xa5\xeb\xe1\x43\x5f\x8a\x2a\x5c\xd9\xe6\x2b\x3c\x1e\x4f\xf4\x71\x3f\xa2\xa2\xa2\x46\x88\x52\xdf\x7d\x3f\x67\xde\x9d\x37\x6e\xef\x49\x42\xd5\xa9\xf3\x32\x79\x45\xed\x67\xe7\xca\x3b\xf9\xd4\x37\xcd\xfa\x73\x92\x2f\xb9\x4f\xf4\x9b\xc0\x57\xbe\x18\xfa\xc2\x98\x8d\x82\x89\x7c\x72\xe8\x27\x2e\xf8\x27\xda\xa5\x12\x03\x81\x07\xbd\x9f\x36\x88\xd8\xd0\x9e\xad\x2f\x11\xb1\x42\x04\x3f\xd2\x80\xcf\x02\x9f\x45\x7e\x87\xaf\x3d\xbe\xf6\x65\x79\x23\x99\xc1\x61\x28\x3b\xed\xfa\x56\x88\xb9\xc3\x37\xbb\x84\xe3\x4f\xa9\x47\x1d\x44\xda\x07\xfc\xf6\x71\x75\x1a\x6f\x1f\x14\x2f\x0f\xe2\x3d\xf7\x6f\xe3\x3d\xe4\x83\xb5\x3b\x8d\x42\x88\x62\xb8\x7a\x8d\x92\xe0\x43\xb0\x09\xda\xcb\x6a\x81\x12\xa6\x58\x6e\x87\x46\x4a\x90\xe2\xda\x7c\x9f\xf9\x76\x69\x08\xb1\xbe\x55\x1a\x22\xf4\x16\x6d\xb3\x65\x1f\x5e\x9f\xdd\xcb\x17\xde\x13\xfa\x29\xa5\xa9\x9b\x0c\x38\x56\xe2\xab\x7f\xfc\xbc\x80\x3c\x9d\xc3\x17\xe3\x66\xee\xd1\xed\xaa\xde\xee\xdc\xfe\x49\x7d\x30\x3c\xea\x15\xcc\xfb\xda\x10\x6b\x4f\x76\x6f\x2c\xbe\xdf\x69\x74\xb3\x39\xd6\x00\xec\xcb\xba\xea\xef\xe5\xe3\x7f\xfd\x57\x80\x53\xf0\xdf\xfe\x2d\x3d\x7b\xf9\x63\x5a\x7e\x61\xcf\x41\xfc\x12\xec\x97\x6a\xb3\xdb\x18\x14\x7d\xbe\x8a\x00\xf9\x3a\x1c\xec\xf6\x54\x07\xae\xaf\x67\x41\xf1\xfd\x7f\x03\x00\x00\xff\xff\xd3\xf4\x01\x16\xff\x99\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x92\xdb\x48\x8e\xe7\xff\x7c\x0a\xb6\x37\x7c\x76\x47\x94\xe5\xe8\xee\xb8\x8f\x98\xb0\xdd\x57\xae\x6a\x7f\xcc\xba\x5c\xb5\xae\xf2\xcc\xcd\x39\x1c\x1c\x4a\x64\x49\x1c\x4b\xa4\x9a\xa4\x2c\x6b\x36\x36\xe2\x5e\xe3\x5e\xef\x9e\xe4\x80\x1f\x80\xfc\x20\xa9\xb2\x3d\xbb\x71\xf7\x8f\x94\xcc\x44\x7e\x21\x91\x48\x00\x89\xcc\xcc\xb7\xdb\xac\x28\xbb\x45\xfa\x34\x3d\x4d\xb7\x79\x55\xaf\xcb\xae\x4b\xbb\x72\x7d\xfb\x68\xd5\x74\x7d\x59\xa4\x2f\xab\x9e\xbe\xdb\xcf\xd5\xa2\x4c\x92\x55\xb3\x29\x09\xf4\x15\xfd\x25\x45\xde\xad\xe6\x4d\xde\x16\x14\x71\x6e\xe1\xa4\xfc\xb2\x5d\x37\x2d\x03\xfd\x26\xa1\x64\x55\xae\xb7\x9c\x87\xfe\x92\xae\x5a\xd6\x59\x55\xd3\xe7\x35\x85\xd2\xd7\x75\xd2\x35\x8b\x2a\x5f\x67\x41\x02\x22\x2c\xfd\x0f\xe9\xcf\x75\x91\x5e\xf7\xe5\x36\x7d\xd2\x6d\xf2\xf5\xfa\x59\xde\x21\x4b\x5f\xa6\xf9\x62\xd1\xec\xea\xfe\xc9\x63\x49\x90\xc2\x9b\x5d\x6f\xa5\x5f\xee\x7a\x89\xdb\x6d\x2d\xea\xfd\x36\x69\xcb\x65\x45\x1d\x6b\x29\xea\x9d\x06\x93\x7d\x39\xef\xaa\x9e\x1b\xfd\x67\x09\x25\x9f\xcb\xb6\xab\x1a\x6e\xcf\x9f\x24\x94\x6c\xf3\x25\x03\x5c\xd1\x5f\xd2\x97\x9b\xed\x3a\x47\x86\x1b\x0d\x26\xeb\xbc\x5e\xee\x04\xe6\x8d\x06\x93\x45\x5b\x52\x52\x56\x97\x7b\x8a\x3d\xc3\x47\x4a\x1f\xb3\xd9\x2c\xd9\x11\x4e\xb3\x6d\xdb\xdc\x56\xeb\x32\xcb\xeb\x22\xdb\x08\xd6\xde\x53\x7c\xaa\xf1\x29\xc5\xa7\x1c\x8f\x6e\x94\x05\x21\x28\xcb\x3b\xed\x0b\x0d\x0d\xe1\x2b\xef\x12\x14\x55\xe7\x1b\xcb\xcd\xc1\xa4\xdc\xe4\xd5\x9a\x07\xe1\x11\x07\xa8\xf1\x5d\xb7\x6f\x30\x54\x57\x1a\x24\x44\x64\xfd\x61\x5b\x02\x0f\x8f\x6e\x28\x94\x2c\xf2\x6d\xbf\x58\xe5\xdc\x56\x09\x25\x04\xb4\x6d\x08\x21\x4d\x7b\x00\x9c\x7d\x24\x4d\xbb\xcc\xeb\xea\xef\x79\x2f\x48\xba\x0c\x3e\x93\x4d\xd5\xb6\x0d\xe3\xf7\x02\x81\x84\x7a\x9c\x71\x39\x14\xf3\x96\x30\x11\x94\xc2\x29\x9b\x6a\xd9\x0a\x2a\x39\xf1\x02\x5f\x5c\x0a\xa7\xdd\x36\xed\x27\x4d\x78\xc1\xc1\x41\x56\x6a\x84\xa6\xc6\xf5\xe7\x35\x21\x5f\x53\x2f\xf0\x11\x01\x74\x49\x5e\x6c\x08\x95\xdb\xbc\x2e\x19\x47\xa7\xfc\x45\x78\xa1\xaf\x44\x69\x2a\xeb\xca\xbe\xaf\xea\x25\x23\xfb\x54\xa2\xd2\x6b\x8d\x4a\x82\x34\x17\x77\x68\x76\x6e\x38\x29\xfe\x2f\xf4\x99\x5e\xc9\xa7\xa4\x05\x99\x90\xe8\x72\x72\x4f\xba\xec\xb6\x2c\x0b\xe9\x4b\x97\xbe\xa0\x70\xb2\xdd\xad\xd7\x84\xb5\xdf\x77\x65\xd7\x73\xa6\x2b\xfa\xa6\xfe\xcb\x77\x52\x75\x1d\x05\x28\xfa\x35\x02\x09\x0d\x5d\xbd\x40\x67\xce\x10\x48\x92\x0f\x5d\x99\xb7\x8b\xd5\xc7\x44\xfe\xd1\x56\x0e\x30\xed\x1d\x1b\x54\x26\x24\x25\x22\xa9\xc1\x2a\x48\x16\x4d\xc1\x1f\x67\xf4\x47\x45\x57\x75\xd7\xd3\x8c\xfb\x98\x68\x80\xc1\x24\x24\x03\xd0\x57\x3d\xb0\xa0\x91\x98\xbe\x1d\x8f\x60\xfa\xa2\x6a\xbb\xfe\x51\x5f\x11\xb1\xbe\xdb\xd5\x09\xf7\x8f\x66\x5b\x56\xcc\x8d\x09\xbd\x6c\x08\x45\x88\x6e\xa9\x7f\x17\x87\xeb\x7f\x79\x73\x92\x5e\x11\x27\x5a\xb6\x25\x85\x53\x2a\x83\xfe\x28\xcf\x2f\xb3\x84\x72\x59\x4d\xe7\x79\x9f\xcf\xf3\xae\xf4\x68\xe5\x44\xa1\x6e\x97\x06\x1a\x67\xae\x06\x0e\xd6\xf5\x51\x7f\xa7\x66\x08\x95\xa1\xf3\xca\x95\xf1\x96\x27\x17\xc5\x33\x53\x43\xe6\xab\x75\xc9\xf1\x54\x54\xfa\xfa\xed\xdb\xcb\xf3\xe7\x69\x59\x2f\xab\xba\x4c\xf7\x55\xbf\x4a\x77\xfd\xed\x7f\xcb\x96\x65\x5d\xb6\xc4\xe3\x16\x55\x4a\x73\xaa\x25\x4a\x48\x89\xb0\xa5\x73\xb3\xa4\xeb\xd6\x34\xf7\x81\xde\xeb\xeb\x37\xe9\x05\xa3\x78\x9b\xf7\x2b\x34\xa4\x5f\x25\xdd\xef\x6b\x46\x91\xab\xf0\x66\x55\xa6\xa0\x32\x00\x35\xb7\x86\x8f\xb4\xd0\x36\xce\x92\xb2\x6d\x33\x62\x4b\xfd\x21\xd3\xcc\x5a\xde\x10\x52\x8a\x20\xd2\xa9\x9b\x3e\x9d\x97\x29\xf2\xcc\x92\xc4\x1a\x6c\xd8\x3d\xdd\x6e\xd7\xd5\x42\xe6\xfa\x4b\x49\xf3\x88\xe6\x15\x44\xb1\x14\xc2\x01\x51\x96\x16\xa0\x8b\xd8\x33\xcf\x87\x34\x62\x20\xc8\xbf\x2a\x89\x01\xae\x76\x4b\x61\x7b\xeb\x66\x57\xfc\x00\x4a\xb5\xd6\x7b\x42\x4d\xdf\x35\xd4\x60\x60\xc7\x01\xf8\x2a\x4e\x89\xe2\x78\xd1\x6a\xcb\x4d\x43\x7c\xc5\x11\x7b\x45\x04\xb5\xaf\x28\x91\x7a\xda\xe5\x9f\x69\xbe\xf5\x4d\xda\xaf\xaa\x2e\x2d\x88\xd8\x16\x5c\x30\x4d\x8d\x1d\x2d\x17\x42\x16\x44\xa0\x42\x1a\x16\x17\x8f\x01\xa0\x36\x3b\xa2\xa6\x15\x15\xc6\x8b\x11\xaf\x9c\x54\xe4\x54\x3b\xd1\x25\x2a\x07\xf4\x4d\x94\xdb\x10\x57\x66\xbe\x79\x8e\x80\x7e\x87\xe5\x53\xab\xf2\xdb\x5b\x6a\x55\x47\x54\xf1\x2a\x5d\xac\x1b\x22\xa9\xf7\xef\xde\x74\x4c\x30\xab\x6c\xdb\xb4\x58\xe6\x28\xe9\x8a\x82\x2e\x2e\x40\x34\x43\xd4\xbb\xcd\x9c\xbe\xf6\xab\x8a\x38\x00\xd0\xce\x39\x78\x35\xa7\x58\xaa\x62\xd7\xd1\x10\x9e\xa4\x44\xc2\xd4\x03\x42\x19\x08\x80\xfb\x50\x54\x5d\x3e\xa7\xb1\x67\xf0\x5b\x5a\xb6\x76\x2d\x91\xd5\xaa\xef\xb7\x56\xf3\xab\x9b\x9b\x2b\xa9\xda\xc5\xde\x55\x77\x1e\x50\x06\xc6\x60\xcd\x0b\x6f\x9d\x36\xf5\x0c\x44\xb2\x6b\xd7\x03\xfa\xa1\xbe\x5a\xca\x11\xbc\x70\x13\x1e\xf3\xcf\xb5\x47\x0f\xf0\xdc\x91\x74\xb2\x07\x35\x11\x8e\x4b\x2c\x80\x44\xd4\xcd\x96\xcb\x0d\xa8\xfa\x52\x23\x3c\x29\x63\xd1\x74\xe9\xb2\x74\x52\x2a\x64\x9f\x80\xfd\x6f\xa8\xc3\xca\x46\xae\x2f\x08\x0d\xe0\x25\x88\xbd\x6d\x9b\x0d\xc5\xbe\xa0\x3f\x1f\xe1\x9b\x7f\xc1\xe5\x01\x26\x2f\x0a\xe2\x6f\xdd\x49\xfa\xee\xc5\x59\xfa\x9f\x7f\xf9\xf9\xe7\x59\xfa\xba\xe7\x99\xc8\xc4\xf9\x37\x26\x2a\x0a\xca\x1a\xee\x40\x89\x65\xf4\x44\x77\xf7\x78\x66\xdd\x4b\x9f\x20\xf5\xbf\x97\x5f\x72\x92\x3f\xca\xd9\xa2\xd9\x3c\x63\xae\xb2\xc9\xfb\x59\xc2\x29\x44\xae\x4a\xc7\xd7\x65\x5d\x50\x40\x25\x01\x4d\x0b\xd8\x9d\xa6\x07\x72\x81\x48\x45\xd9\xa2\xa9\x6f\xab\x96\x3b\xf4\x5b\x0d\x6a\x30\x79\x89\xd6\x01\xa4\xd8\x72\x4b\x48\x23\x0e\x52\xdd\x1e\x3c\x28\xba\xfa\x96\x23\x75\x40\x13\xa1\xba\x4c\x45\x49\x87\xe5\x6b\x21\x46\x1e\xb7\x4b\xea\x5e\x6b\xf8\xee\x3c\xc2\x9b\xdb\xdb\x35\x71\x54\xe3\x92\x5a\xc3\xa5\xc4\x0a\xc3\x0c\x41\x88\x18\xb7\x90\xf8\xce\x95\x88\xcf\xce\xdf\xa6\xe5\x67\xa2\x36\x22\x07\x5a\xa2\x8b\xdd\x02\x14\xc6\xb0\x27\x29\xaf\x4f\x84\x5f\x9a\x1b\x0b\xe1\xab\x01\x93\xe0\xa6\x31\x27\x5a\x10\x10\xf1\x06\x9d\x14\x99\x20\xa8\x35\xd9\xc7\xaa\xb9\x66\xa1\x39\x4c\x9b\xcc\x30\x6a\x1d\x46\xa9\x1b\xe6\xa5\xe1\xae\xd7\x87\x14\x82\x0a\xe8\x42\x44\x49\x93\x79\xbb\x59\xa2\x8b\xa4\x49\xce\xd9\xe7\x0a\x52\xa6\x1b\x2a\xa4\x9a\x18\xcd\x73\xfa\x4f\x0c\xc0\xe2\x6b\x37\x99\xd7\x35\xec\x92\x2b\xee\x9c\x84\xc9\xed\xeb\xd0\x04\xd4\xc0\x62\x30\x11\xe3\xe7\x0a\x2c\x4e\x91\x85\xb6\x12\xc6\x50\x35\x55\xd5\x95\x25\x4a\xa0\xfc\x8f\xa9\x4c\xe4\x99\xa9\xd4\xa5\x82\x90\x2d\xf8\x24\x0c\xa5\x45\x93\xf2\x0a\x04\x3e\x4a\xb9\xad\xab\xb5\x76\x5f\xfb\x9c\xb6\xd5\x72\x45\x7c\xa5\xd9\x9f\x08\xd2\xf6\xab\xa6\x64\xda\x79\x7d\xfe\xf4\x27\x69\xc7\x92\xb9\xaa\xcb\xc4\xfc\x38\xdf\xf5\x0d\xd3\xa9\x0e\xa1\x34\xc1\xad\x6b\x80\x1c\xc9\x77\x02\x34\x94\xa8\x4d\x66\x1c\x8b\x09\x3a\x4f\xc2\x34\x9d\x20\x1e\x46\x72\x0f\xa4\x72\x15\x9f\xb2\x65\x03\xb9\xd0\xc4\x25\x5e\x23\x48\xc5\xe8\xfa\x6c\x59\xf5\xd9\x2d\x4f\x58\x2e\xf3\x05\xe7\xe5\x25\x8b\x52\xd2\x07\x94\xf4\x20\xa5\x59\x4f\xc2\x6e\xf1\x87\xf4\xfe\x67\x95\x13\x7e\xe1\x99\x98\xe5\x9f\x09\x16\x83\xa1\xd2\x66\x5b\x8a\x98\x62\x6a\x4d\xd1\x10\x9d\x33\xce\xbb\xdd\x16\x1c\x5d\x45\x83\x93\x74\x2b\x80\x45\xb3\xaf\xd7\x4d\x5e\x80\xe5\xd0\xec\xaa\xa0\x94\xcd\xab\x3a\xa7\x65\xcd\x4a\x01\x2b\xbb\x4f\xd4\xf0\xf6\xf2\x06\x80\xcb\x66\xbe\xab\xd6\x85\x01\xcc\xa8\x87\x9f\xf3\x75\x55\xb0\x80\xa7\xe3\x1e\x0a\x53\x16\x55\x49\x5b\x16\x4d\xcb\xeb\x30\x7a\x63\x19\x8f\x08\x00\x2d\x2f\xac\x88\xa6\xbc\x0a\x8b\x7c\x6e\xad\x66\x34\xd0\xc0\x43\xf2\xe5\x95\x1c\x14\x53\x75\xf5\x83\x1e\x2d\x5d\xec\xa8\x2e\x1a\x74\x8e\xa6\x8c\x5d\xfa\xe8\x19\xfd\x26\x2c\x17\x08\xdf\x5b\x8e\x11\xcf\x89\xa9\x24\xee\x64\x96\x46\x4d\x8d\xc8\xdb\x51\x97\x11\x6f\xd0\xd7\xb0\xbd\x46\x02\xdd\x4e\xe8\x95\x35\xd0\x35\x0d\x6b\xf9\x03\x05\x1e\xd0\x04\x5e\xae\x31\x08\x39\xc4\x26\x92\x1f\x1b\xc2\x1b\x13\xc8\x89\x4c\x97\x5b\xea\x1a\xf3\xce\x3e\xff\x44\x6d\xcb\x79\x99\x4e\x3e\xb0\x96\xfe\x31\xd9\x89\xe4\xd5\xac\x0b\x27\xe5\x82\xa6\x9b\x76\xa8\x15\x7a\x20\x47\xaf\x1d\x89\xaf\x8b\x55\xe6\x74\x7c\x46\x4a\x5f\x7e\xc1\x9a\x87\x24\xaf\xf2\x33\xb1\x73\x52\xb2\x39\x60\xb8\xb8\x13\x17\x07\x3f\x5a\x24\x77\xd1\x14\x21\xdd\x60\xde\x30\xd6\x3e\x97\x0e\xea\x2c\x8c\x8d\x33\x50\x59\x24\x21\x6a\x51\xb1\xf2\x46\x49\xa2\x61\x6a\xaa\x68\x99\x5d\x02\x26\xa6\x06\x0a\xf0\x3a\x1a\x4f\x55\x94\x66\x34\x30\xd0\xc2\xac\x66\xe2\x88\x07\x99\x17\x41\x9d\xc9\x07\x35\x5e\x7c\x4c\x0c\xee\x5d\x9c\x4e\xdc\x84\x34\x2a\xaf\xd5\x67\x36\xba\x4e\xbb\x67\x65\x54\x19\x8a\x5f\x48\x57\xe5\x96\xd7\xdc\x4d\x07\xb2\x58\x13\x64\x71\x50\xa9\xd1\x11\xc8\xaf\xc2\xaa\x89\x62\x88\xc1\xfd\x60\x66\x91\xef\x2c\xe2\x79\x45\xa4\x80\xfc\xf1\xd2\x23\xa6\x06\x12\xee\x60\x5f\x69\xdb\xc3\x49\x1a\x2d\x62\xab\xbc\x23\xf6\x4d\x2b\xa4\x66\x2b\x66\xa6\xd7\xf0\xb0\xe7\x0b\x99\x33\x30\x91\x80\xca\x25\x67\xd3\x0e\xd7\x44\x6e\xa1\x70\x38\xad\xc5\x49\x0c\x90\x07\x42\xb1\x61\xa2\x4e\x42\xd8\xa6\x64\xa1\x31\xdb\x88\x55\x42\xbe\xd2\x8b\x32\x21\xc9\x66\x49\x13\xda\x08\xf6\x29\x2b\x93\x4b\xc8\xd6\x4a\xaf\x0c\x50\xf6\x21\x0b\x56\x08\x8b\xf9\xd5\x4c\x41\xc4\x19\xf6\xd0\xb4\x69\x6e\x8f\xd0\x4f\x8b\x15\x25\xcf\x8c\xa5\xcb\x8a\x0d\x01\xa7\x23\x6e\xe1\x91\x78\xca\x66\x9c\x34\x84\x52\x41\xd3\x77\x8b\x33\x30\xd7\x78\x32\x7f\x76\xbf\x7b\xf2\x78\xfe\xcc\xf1\xd6\xc5\xaa\x5c\x7c\x12\xfa\xab\xea\x79\xf3\x05\xaa\x22\x0d\x3c\xe3\xb8\xe6\x39\x76\xbf\x48\x57\x94\x0a\x6d\x82\x78\x01\x65\x23\xc4\x73\x6a\x34\x68\xd4\x18\x66\x19\x33\x33\xaa\xb9\xd5\xc5\x08\x89\x72\xa3\x12\x69\x59\x42\xc3\xc8\x93\x0f\xf3\xc0\xd3\xed\x29\xc7\x32\xe5\x62\x9d\xf0\xa4\x8b\xfe\xae\xab\x4d\xd5\x8f\x48\x87\x19\x51\xae\x24\xa8\x16\x0a\xc3\x25\xca\x02\x36\xd0\x16\x62\xe7\x54\x0c\x2d\xbc\x46\x4e\xfb\x9c\xb4\x8c\x5f\x52\x22\xa1\x1d\x2d\x63\xdc\x27\x6a\x26\xf1\xf3\x9c\x57\x6e\xd2\x30\xf2\x2e\xdb\xd5\x8a\xd6\xb2\x30\x62\x7a\x55\x61\x95\xe1\x7a\x8d\xe4\x03\x28\xc3\xbc\x0a\xca\xe9\x43\x87\xf1\x1f\x49\xaa\xbe\x75\xd9\x98\xf5\x73\x83\x2a\x16\xea\xf2\xc9\xc1\x23\xd6\x58\x97\xa2\x18\x02\x03\x0c\xc7\x03\x4d\xda\x85\x1f\x3d\x52\x51\x3e\x51\x0c\x06\x64\xbe\xeb\xfb\x86\x85\xf6\x35\x53\x8d\xe4\xb1\x56\x9f\x01\x10\x7a\x88\x2f\x0f\x03\x12\xe2\x49\xc6\xa6\x34\x21\x3a\xf3\xe6\x4d\x55\x77\x06\xbd\xd3\xb5\xd2\x81\x15\x62\x68\xc8\xeb\x83\x91\x32\x11\x04\xb7\x82\x2b\xec\xa7\xdb\xf2\xb0\x2d\x7f\xf4\xad\x71\x73\x06\x39\xac\x45\x92\x3d\x98\x4f\xef\x90\x2a\x86\x2d\x9b\x75\xb6\xf4\xa9\x79\xc8\xd3\x47\x1b\xa3\x17\xe9\x3c\x33\x88\xc1\x92\xdc\x59\x00\xd1\xd4\x0b\xe4\x9e\x0d\xea\xf2\xfa\xd2\x18\x83\x7d\xdc\x64\xbf\x82\xf5\x4d\x93\x75\x2b\xd1\x4d\xad\x79\xa4\xd7\xd6\xcb\xc8\xc0\x01\xe3\x36\x88\xee\xbf\xf0\x3a\x49\x1a\x40\xbe\xfe\x98\x1c\x60\x49\xfb\x0b\x71\xf8\x1a\x36\xca\x26\xa1\x04\xd1\x66\x2e\x10\x20\x50\x56\xad\x3e\x26\xbc\x86\xbe\x1d\xc8\x85\xbc\x44\x68\x5c\x20\xa0\x20\xe9\xb7\x48\xdc\xb3\x21\x4c\xae\x26\x64\xc8\x77\xa5\xb7\xc5\x22\xe4\xba\x48\x2a\xf8\x8d\xe9\x4a\xa4\x8d\x7f\x2a\xb5\xf0\x57\xa4\x77\x77\xef\xa1\x37\x8b\x12\xcc\x1a\xf3\x55\x7e\x60\xa9\x4d\xa2\xf5\x03\x09\x37\x65\xbe\xd1\x56\x72\x50\x8a\x38\xa5\xe5\x4c\x23\x39\x48\xab\x5c\x60\x8f\x49\x20\xbf\x58\x17\x44\x98\x51\xb9\xc1\xe9\x0f\xa5\x1a\x7a\xff\x3a\x32\x22\xfd\x35\xc9\xd7\xdb\x55\x0e\x01\x22\x00\x83\xbd\x84\x80\x30\xf0\x29\x40\x40\x0b\xbb\x4d\xd9\x56\x0b\x0e\x72\x86\x87\x8f\xb2\x1f\x61\x2a\xa3\x89\x42\x92\x64\x5c\x58\x41\x93\xe4\x1f\x2a\x90\xc3\x2c\x65\x86\xe5\x76\xd5\xdf\xad\x17\x51\x71\x1c\x4f\x3c\x87\x20\x20\xd3\x79\x28\x07\x84\x85\x91\xe5\xbb\x9e\xcd\x27\x14\x41\x32\x64\x54\xf4\x26\xff\xf2\xb5\x8c\x9b\x66\x22\x9f\xb0\x02\x9f\xc9\x26\xbc\x76\x31\x66\x07\x04\xcf\x06\x92\xa3\xd0\x34\xf4\x0c\x52\x7f\xa2\x55\xad\x76\x60\xef\xe5\x3b\xc5\xf7\x1f\xcc\xec\x4f\x4b\x88\x4a\xe0\xa9\xdb\x00\xa0\xc5\xb9\x60\xbe\x09\x49\x7a\xe6\xa7\x5b\x28\x5d\x3b\x72\x66\x39\xd4\x6c\x06\x8e\x71\x90\x48\x2a\x8a\x06\x91\xd4\xcc\xef\x55\x64\xbc\x46\x66\x2c\xb5\xd6\xa1\x6c\xea\x56\x4f\x5b\x5f\x00\x21\x16\xeb\x6c\x9c\x6f\x30\xe1\x8e\x66\x27\x51\x60\x22\xf7\xe5\xd8\x04\x79\x24\x7f\x4f\x53\x66\xa2\x00\x37\x93\x8e\x66\x94\xc1\x44\x26\xea\x79\x31\xe2\x05\xe3\x8c\x0c\x46\x7a\xd3\x7a\x5d\x2e\xd9\x56\x65\x15\x47\xb5\x29\x09\xd1\x62\x20\x60\x21\x01\x79\x0c\xbb\xc1\x0a\xc7\x35\xd4\x02\xdc\x18\xc5\xfa\x17\xb5\x9a\xe4\x79\x0a\x72\xce\x40\x0b\xd3\x66\xe8\x4a\xbe\x61\x85\xa3\xdb\x31\x6b\x66\xe5\x44\xa4\x93\x78\x34\x78\xe1\x45\x51\x25\xaa\x38\x5e\x3c\xd1\x22\x6b\x6c\x5f\x2b\x1f\x60\xdf\x59\x74\xa8\xaf\x8f\x0b\xd6\xc2\x1d\xd0\xb1\x62\x9d\x46\x59\x7e\xa9\x60\xf7\x7b\x59\xb1\x3d\x09\x3a\xa5\x53\xa5\x91\x36\x4b\xd6\xc4\x0c\x58\x77\x91\x5e\x89\x1c\xdb\x7c\x66\xd5\x8f\xeb\xe3\x54\xc9\x27\x76\x40\xed\x14\x8f\xb3\x6a\xa7\xa4\x0d\x36\xfb\xb2\x38\xa1\x25\x9e\x73\x50\x3b\xc1\x36\xf2\xf5\x3e\x3f\x74\x30\xb2\x18\xc7\x61\x9b\xa7\x64\x67\x76\x42\x02\xc0\x12\xad\x0a\x2d\xeb\x34\xe3\x0c\x13\x6c\x22\xe6\xc5\xc3\x2d\xd3\x7b\xe8\x97\xe0\x16\x6a\xb6\x21\xb5\x9d\x97\x3d\x67\x28\x26\x70\xd6\x8d\x59\x93\x64\x19\x5f\x92\x83\x82\xb0\x59\xa3\x9c\x7f\x22\xef\x09\x8b\x47\x54\x0d\x0b\x2b\xc4\x8f\x05\xd7\x24\xff\x11\x66\xd1\xa4\xc0\xd8\xb0\xa3\xf2\x1f\x89\x5c\x5c\x11\x0e\x59\xcf\xf2\xfa\x37\xaf\x4d\x34\x2a\x66\x19\x96\x78\x68\xcf\x49\xd7\xd3\x14\x60\x4c\xdb\x06\xe3\x5f\x44\xbe\x52\x9d\x9b\x53\x31\xc5\x80\xa6\x6e\x55\x6d\xd3\x06\xd6\xc6\x10\x85\x9e\x6c\x03\x11\x93\x6d\xe0\x25\xe4\x6e\x36\xbb\xb6\x79\xdd\xdd\x96\xb0\xbf\x6e\xd2\x5b\xde\xc3\x9a\x69\xd5\x2c\xb1\xca\x46\xe3\x91\x9a\x45\x87\x41\xd5\xe1\x6a\x81\xb1\x0b\x06\x2a\xae\x5a\x0c\xf2\xbc\x60\x49\x1b\x80\x55\x5f\x52\x67\x6d\x60\x32\x1b\xa1\x00\x52\x63\xb4\xbd\x62\xad\xf9\x5c\x86\x88\xb8\xfd\x47\x7b\x1e\x60\x5d\x4d\xcc\x62\x97\x8f\x87\x49\x2a\x85\xb9\x03\xbb\x63\xf3\x43\xdc\x7b\xce\xea\x28\x80\xf7\x6a\x3e\x97\x5a\x0b\x4f\x0c\x9e\x2b\x83\x02\x61\xe6\xf0\xba\x42\xd2\xe7\x50\xf9\xe6\xd4\xc4\xc5\x2a\x9a\x9d\x37\x48\x49\x25\x65\x34\x41\x93\x0f\x5c\x35\xa9\xf1\xab\xbc\x5e\x96\x6c\x2b\xa3\x92\x78\xc9\xc3\xb7\x4a\xe8\x12\x49\x0d\x5e\xb6\x12\x66\x0b\xbb\x65\x59\xd0\x84\x6c\x36\x77\xe6\xac\x6a\xb3\xf8\x74\xc9\xdf\x1a\x92\x21\x60\x2a\xfe\x23\x85\x58\xfa\xad\x93\x68\x57\x6a\x60\x67\x80\x7a\x50\xf5\x07\x6c\x97\xcd\x49\x06\x16\x25\x8d\x62\x48\xcd\x05\x77\x80\xe9\xe3\x85\x85\x69\x3c\x72\x66\x7a\x3c\xb5\x25\xa4\x70\x62\x87\x7a\x61\xe1\x84\xb5\xe4\xcd\x0c\x8b\x03\x0b\xd3\xb0\x6e\x07\x4b\xc2\x83\xfb\xdd\x03\x1e\x30\x4b\x9b\x05\xf0\xdb\xbc\x27\xb6\x58\x8b\x8a\x22\x1c\x2a\xcc\xaa\xc9\xae\x08\x70\x15\x01\x9b\x61\x2f\x5a\x50\xf1\x31\xf1\x5b\xe4\xb6\x3b\x3e\x65\x51\x55\x16\xd3\xa9\xcc\xfb\xcf\x14\x54\x8b\x48\xea\x1c\x44\x54\x55\xc5\x06\xa4\xed\x1a\x75\xf1\x26\x52\x97\xa8\x0d\x29\x36\x20\x29\x79\x3f\x4d\xcf\x25\x60\x4a\xef\xae\x42\x9f\xaa\x22\x49\xb6\xc0\x7b\xb0\xa1\xaf\x03\xe1\x1a\xad\x8e\x1b\xde\x88\xdd\x0e\x57\x76\xc2\x82\x94\x02\xc2\xb5\x3d\x05\x48\x01\xbc\xfb\x1b\x28\x6c\x6c\x9d\x85\x26\x57\x07\xfb\x25\xa4\xef\x72\x3e\x06\xdb\x97\xf3\x94\xed\xa5\x44\x38\xa4\x17\x69\x47\x37\x39\xa9\x54\x9f\xab\xdc\x59\x66\x68\xb4\xd8\x65\x40\x57\xd1\x17\xec\x2e\x80\x3d\xd8\xb1\x6f\x0b\x6f\x68\xe8\xde\xc5\x1b\x0d\x26\xbb\x6d\xc1\x36\x2d\xdf\xe1\xf7\x88\x70\x1d\x8e\xd3\x03\x73\x25\xba\x6e\xd9\x9c\x34\x23\xe0\x45\xaa\x70\xdc\xb2\xc3\xcc\xa6\xcf\x84\xbf\x8a\x4e\xa1\x62\x08\x12\xee\x12\x48\x92\x2a\xad\x06\x30\x13\xde\x03\xf4\xca\xc6\x20\x10\x42\x6b\x65\xba\x6a\xf6\xe9\xba\xaa\x3f\x75\x8a\x5f\x67\x0f\x31\x3d\x39\x3d\x47\x04\x01\x8b\xa5\x86\xc5\xaa\xaa\xde\x95\xbf\x26\x16\x12\x4b\x3e\x82\x63\x0f\x8b\x52\x56\xc5\x21\x33\xd0\x0d\x98\x33\x44\xa7\xa7\x88\x9e\x84\xf5\x7a\xae\x66\xc1\x5e\x74\xb0\xf9\x7a\x5b\xb2\x80\x0d\x76\xf8\x52\xb9\x10\xe1\xa7\x69\x3a\xb5\x3d\x7a\xf6\xc3\x71\x30\x54\x28\x94\x8e\x96\x83\xd0\xc1\x94\xc6\xd8\x46\x07\x41\xb1\x7a\x48\xc2\x92\xb6\x07\x73\x3b\xab\x36\xe2\xc4\xf4\x5e\x53\xc5\xd9\xc0\xe9\x15\x48\x9e\x91\xa6\x3c\xe8\x4c\xb8\xe5\xf0\x96\x70\x29\xdd\x37\x3e\x6a\x89\x27\x26\x2e\x08\x42\xb0\xd8\x47\x8d\x1d\x52\x96\x16\x60\xd6\xf3\xaf\x10\x98\x91\x4f\xb8\x13\x23\xbc\xd9\xb1\x96\x66\x1d\x09\x85\x67\xba\x0f\xe0\xd2\x19\xb3\x41\xfa\x5b\xec\x99\x0d\xad\x0d\x91\xa6\xa4\x25\x1c\x95\xa6\x07\x6d\x1a\xcd\x1d\xcb\xb7\xa7\xbe\x85\xdd\x31\x82\x9f\x09\xf5\xe7\xb0\x0c\xcb\xb6\x1a\xf6\xed\x85\x5e\x6a\xec\xc9\x49\x11\x84\x00\x28\x1c\x9d\xd7\x33\x4e\x85\x1b\xb1\x45\x5d\xbc\xa2\x1c\x80\x3a\x46\xc5\xfa\x64\x69\x9b\xe0\x21\x63\xdb\xb6\x34\xe8\xb4\xf0\x0e\x2c\x51\x23\x96\x16\xb1\x2f\x70\xaf\x06\x3b\xba\x9e\x6b\x91\x06\xa9\x65\x31\xff\x47\xc8\x62\xbc\xf5\xb2\x64\xeb\x96\x55\xaa\xcc\xda\xa5\x0a\xcb\x4e\xa8\x0d\x98\x03\xa5\x33\x4f\x14\xc0\x44\xdc\x44\x80\x85\x20\x66\x09\xb5\xe8\x2c\xb2\xf3\xc2\x62\xfb\xff\xcd\xb6\x1b\x55\xe8\x6c\xbb\xbe\xa9\x03\xb2\xe1\x36\x0e\x56\x9c\x11\x01\x51\x02\xd6\x5f\x1d\xfa\x60\x55\xd5\xc1\x77\x8b\x2b\x57\x23\x32\x3d\xa3\x89\xa2\xb0\x04\x2b\x11\x80\xc3\xb2\x80\x07\xaf\x0d\xb8\x1c\x89\x80\xdf\x8d\xcc\x90\x31\x7f\x3d\x85\x06\x43\x58\x11\x58\x96\x07\x78\x41\x13\xe9\x4f\x35\xa2\x0d\x23\x42\xf6\x6d\x9d\x07\xcd\x68\x6b\xe6\x44\xd5\x86\x55\xb5\x5c\x51\xbf\xaa\x0d\xef\x59\x82\x6b\xdb\xc6\x98\xd7\xea\xf8\x8b\x26\x5e\xb3\xac\xd9\x86\xc3\x35\x88\xcb\x8c\xe3\xb6\x4f\xba\xbe\x6d\xea\xe5\xb3\xf3\x86\xd5\x2d\xb6\x84\xf0\x52\xf1\xeb\x93\xc7\x1a\x4f\x2c\x83\xc7\x90\x1d\x49\x5f\x56\xfd\xab\xdd\xfc\x41\x97\x2e\x49\x36\xc0\x02\xf2\x24\x4f\x57\x6d\x79\xfb\xf4\xde\xfd\xee\xde\x33\xdd\xa8\x16\x7f\xa6\x7d\xed\xd0\xf2\xe4\x71\xfe\x8c\xa5\xe7\xae\x59\x93\x50\x1b\x67\x69\x36\x1b\x19\x5f\x62\x7f\x1b\x81\x44\xfb\xb1\xb7\x5d\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc0\x99\xa3\x75\x3f\x3e\x3a\x6c\x26\x26\x45\xf6\x05\x15\x54\x18\x18\x5b\x76\x75\x1f\x30\x4d\xb6\x2d\xa4\x2e\x1b\x16\xd8\x71\x36\x0c\x24\x9b\x6b\xbc\x69\xc3\x8c\x13\x90\xa0\x51\x86\xe5\xa7\xac\xd4\x12\x91\x34\x38\xce\xea\x94\x85\x93\x42\x46\x5a\x01\xfd\x32\x4f\x35\x53\x26\x04\x46\x6f\x04\x61\x82\x8d\x68\xf8\x07\x63\x00\xd2\x7b\x9d\xfe\xd6\x03\xa4\x89\x24\xa3\x38\x11\x08\xf8\x9b\x0c\x60\x8c\x9a\x55\xe8\x03\xf3\xb4\x56\x80\x95\xa9\x0e\x22\x0e\x21\x22\x90\x09\x49\x92\x84\xce\xec\xed\x1b\x65\x87\x51\xbd\xbe\xe3\x56\x9d\xdf\xfa\x42\x5b\x86\x3d\x66\x8c\xa1\x4f\xa7\x40\x07\xf5\x05\x36\x05\x1d\xa9\x37\x6a\x41\x40\x02\x2d\xc3\x81\xb6\xf0\xb6\xd1\x1d\x97\xd4\x22\x31\x26\xa4\x1e\xf4\x65\x34\x99\xb9\x11\x70\xff\x12\x17\x0f\x18\x25\xfe\x6b\x5a\xe4\xc4\x09\xfa\xe6\x13\x11\xd3\x38\x0b\xe2\x8f\x65\x72\x1c\xc6\x64\x74\xe5\x2f\xa7\x9e\x3d\x0c\xa5\x76\xdd\xe0\x3c\xca\x62\x02\xce\xa2\xa5\x3a\xd7\x17\xb1\xa8\x94\x90\x8d\xe7\x55\x5d\x08\x27\x51\x46\xa0\xbe\x24\x8e\x03\x90\x7c\x51\x33\x10\xcc\x9e\x1c\xd0\xef\x70\x58\xa2\xf2\x83\xe9\x42\x0c\x7c\x57\x07\x0c\x54\xc8\x21\x13\x54\xb8\x4e\x5e\x91\x0a\x06\x3f\xb2\x53\x29\xf0\x86\x93\x3b\x75\xa2\xd4\x7d\x62\xcb\xf2\x52\x23\x31\x07\x00\x28\x08\xef\x1c\x22\xf0\xe5\xb5\x71\x2b\x45\x7d\x00\xd4\x43\x0c\x63\x40\x54\x67\x2c\x73\x25\x3e\x01\xe9\xe9\xd5\x6b\x5a\x33\x5c\x85\x56\xe8\x6f\x39\xc9\x91\xd2\x84\xbd\xb3\x04\x30\xb1\x0d\x79\xae\xdb\x41\x92\xec\x66\x78\x44\x4e\x4c\x71\xd7\xa9\x51\x87\xa4\x33\x71\xba\xe0\xb8\xec\x02\xeb\x88\xd4\x86\x96\x0c\x57\x2b\xd7\xd5\x1f\x08\xb3\xce\x46\xc7\x53\x6b\x7b\x60\xfe\x1f\xb8\xff\xe4\x82\xa1\x3d\x38\xf8\xc0\xef\x88\x20\x61\x21\x48\x79\x0a\xb7\x8e\x7f\x58\x83\x4d\x80\x08\x86\x32\x64\x23\x93\x83\xe9\x99\xca\x64\xb6\x29\xce\xb2\xb5\x72\xe2\x3e\x7f\x8d\xcf\x30\xe1\x7b\xfd\xf5\x0e\x2e\x13\xf6\x2a\x20\xe5\xab\xc9\x6a\x1d\x45\x4b\xd5\x03\x7e\x93\xca\x42\x28\x3b\xe8\x5c\x8b\xc8\xd6\x4a\x11\x81\x4b\x26\x95\xb2\x2f\xd7\xec\x4b\xa9\xb5\xfb\x5d\x64\xed\x7a\xb4\x87\xac\x40\x6e\xf7\x98\x9d\x66\x9d\x28\x28\xa8\x08\xcd\x5b\x56\x18\x41\xd0\x74\xc3\xb6\xb1\xa8\xc0\xb6\x5e\x9f\x9d\xbe\x7d\x7b\x79\xe3\x97\x69\x9e\x07\x75\x41\xc2\xc4\x0f\xce\x03\x6b\xd4\x2e\xf3\xc3\x72\x03\x18\x43\x78\x4f\x30\xcd\x71\x0c\x2e\x64\x53\x56\x3a\x05\x97\x0d\x78\x4f\xc3\x6d\x31\x5e\x1e\xb5\xbf\x38\x36\x7e\xc9\x07\x96\x6f\x3e\x26\x66\x24\xbe\xe4\xff\x24\xb4\xb3\x07\x7b\x1b\x98\x7a\x7e\x0b\xc4\x7b\x3a\x53\x03\x9a\x62\x64\x77\x07\x93\xde\xe5\x50\x21\x08\xf7\x0d\xd6\x8a\xdb\x14\xdb\xa3\x27\x6c\x46\x6c\x5a\x4c\x18\x46\xee\xae\xae\x7e\xdf\x41\x40\x63\x05\x82\x98\x07\x3b\xf6\xcd\xab\xb5\x2c\x28\x7f\x72\x1f\x12\xcf\xa1\x81\x37\x6e\x50\x39\x7d\x3d\xe9\xb6\xec\xab\x48\x6b\x43\xf7\xf4\xde\xae\x4a\xd9\x2a\xc5\xbe\x41\xf7\x9e\x91\xb8\xcf\x6e\x06\x34\x7c\x04\xf1\x8c\x2d\x4b\x9f\xcc\x60\x39\x3c\xda\x81\x34\x73\xa5\xe5\x34\xf8\xd3\x22\x76\xa2\x15\xaa\x1c\x89\xc5\xa9\x17\x53\x65\x1a\xf4\x82\xa7\x14\x13\xf7\xa7\x32\xc4\x94\x6e\x29\xb9\x99\xdb\x2d\xda\x0a\xfe\xc0\x12\xcf\x87\x79\xd2\xe0\x20\x8f\x8b\xf4\xf5\x5e\xd3\x78\x93\x02\x38\x5b\x56\x3d\xa9\x64\x7c\x78\x07\xde\xa3\x09\x4d\x17\xe2\xe0\x38\x06\x24\x21\x8b\x19\x65\xe5\xc5\x4e\x60\x61\x62\x61\x11\x4b\x47\x9e\x03\xfa\x3d\x91\x4b\x01\xed\x10\x12\x5b\xcb\x1b\x52\x49\x2b\x26\xf8\xd7\xf4\x47\x8b\x99\x88\xbe\xf1\xf0\x74\xc8\xaf\x0a\xbd\xe8\x67\xae\x08\x75\x69\xd2\x01\x51\x5f\xa6\x60\x48\x8a\xf2\x36\xdf\xad\xcd\xd8\x0a\x8c\x21\x22\x7d\x8e\x08\x3d\xf2\x43\x8d\xa0\x01\xf8\x2c\x12\x80\x1c\x02\x7a\x6d\x31\x0f\x59\xeb\xf9\xf1\x88\x09\x72\xb8\x8f\xf7\xfd\x96\xc8\x61\x09\x77\x1b\x24\xd9\xc9\x23\x63\xf3\x72\xaa\x8e\x40\xd1\xf6\x77\xa2\x47\x92\xec\x00\x89\x3b\x93\x24\x27\x48\xc2\xd4\xe3\x93\xc1\xb4\xe3\x3c\x9e\x13\xf0\xa1\x9b\xaf\x77\xe5\xbd\x67\x82\x33\x9b\x10\x56\xaa\x0e\xc1\x85\x9e\x8a\x0a\xc6\x40\x21\x66\x70\x76\xcf\x4c\xe9\x63\x2f\x09\x56\xa8\x54\xd1\x9f\x86\x8a\xf8\x97\xca\x10\x79\xe0\x40\xff\xf8\xe5\xeb\x1b\xb8\xcf\xd3\x88\xc1\xdd\xd9\xce\x08\xb0\x8b\xe5\xcc\x95\x69\x5b\x49\x00\x31\xaf\xcc\xd7\x12\xa9\xf9\x38\x12\xda\x5a\x6c\x75\x37\x87\x8f\x3c\x3c\x6b\x91\xc8\xac\xb4\xa9\xae\x73\xf4\xd6\x4d\x76\x38\xcf\xb3\x67\x74\x3c\xcb\x71\x28\x2c\xc0\x74\xe8\x8e\xc4\xec\xb4\xe0\xf5\x60\x7b\xc8\xd8\xf6\x87\x25\x60\x7b\x48\xe0\xb4\x43\xab\x65\x06\x61\x42\x22\xc1\x90\xd7\xd5\x56\xce\x2d\x52\x42\x55\x8a\xeb\x2e\x02\x97\xff\x9c\x08\x0a\xdd\x08\x83\x50\x70\x98\x91\x13\x88\xf1\xff\x0a\xfe\xd8\xb3\x82\x27\x7b\x11\x4f\xef\x65\x73\x62\x12\x9f\xee\x05\x0a\x1f\x1f\x7b\x64\x2d\xef\x07\x92\x3b\xf7\xba\x63\xfe\x5e\x42\x89\x7d\xff\x19\x5f\x3b\x76\x05\x95\xed\x79\x0e\x24\xfa\xc5\x26\xfd\x44\x0f\xc2\x31\x37\x4c\x58\xe8\xd7\xf1\x24\x81\x3f\x64\x5d\xbf\xef\xb8\x97\xa2\xab\x3e\x4d\xff\x85\xbf\xd2\x97\xfc\xa5\x5d\x61\x8e\xe0\xe6\x38\xa8\x66\xc0\x23\x42\xd7\x46\xb0\x3c\x75\x30\xf6\x3c\x41\xfc\xa1\x02\xec\xab\x23\x94\x01\xb2\x17\x7e\xb2\xdd\xb1\xd3\x07\x8f\xbb\xd5\x76\x45\x31\x38\xd2\xc0\x91\xbc\x66\x06\x25\xb8\xfd\x9e\xa8\x8c\xc4\xb1\x1a\x65\x31\x7d\x5b\x42\x18\xa5\x3f\x4d\xc3\xb1\xc9\x3e\x87\x85\x5f\x80\x88\xe4\xfe\x53\x7a\x43\x31\x0a\x51\x86\x49\x89\x82\x22\x7d\x78\x80\x6e\x9d\xcf\x4b\x98\xc5\xde\x20\x40\x24\x4f\x3c\xb2\x27\x14\xc1\x5a\xe2\x3e\x12\x6e\x63\xd5\x8b\xf3\x2a\x42\x89\xba\x56\xcb\x2e\x8e\x04\x13\xd8\xc8\xdb\x9c\xfd\x0c\xdf\xe5\x7b\xf9\x24\x4c\xeb\x89\xbb\x57\x12\x92\x68\x78\xad\x0a\x28\x9c\x56\x1d\x3c\xe4\x08\xa5\xe1\x2b\x0b\x27\xd6\x80\xd9\xb8\x21\x96\x32\x38\xf0\x97\x2e\x06\xe9\xb7\xa2\x0d\xbd\x60\x5d\xc8\xe2\x72\xf0\xbf\xd4\xfc\x80\x5c\xfc\x86\x98\x87\x98\x83\x2f\x24\xe4\x52\x0a\x71\x51\x3b\xc7\xea\xa1\x71\xe6\x45\x7c\xc9\xff\x2e\x96\x08\x46\xe7\x0f\xfd\x3b\x8f\x5c\x39\x13\xcb\x6a\x90\x9c\x30\xf4\xd1\xb3\xe1\x58\x04\x49\x35\xaf\xc2\x73\x98\xe1\x89\xf6\x91\x1e\x26\x2f\x08\xff\x6d\xe6\xf2\x9f\xf1\x67\xba\x1e\x95\xe2\x06\x37\x1c\xdb\x41\x35\x21\x0c\x55\x35\x09\x26\xd5\x85\x90\x52\xe3\x66\x0a\x98\x44\xdf\x3a\x82\xbd\xa4\x88\x90\xb4\xa2\x82\x59\x68\x1b\x94\x0c\x39\x6e\x1a\x9e\x96\x16\x3e\xaf\x01\x49\x56\x83\xe3\x76\x06\x40\xd2\xcc\x7c\x02\x94\x0d\x0a\x1e\x8e\x3a\x3e\x04\x52\x9b\x97\x63\x08\xc3\xd1\xf3\xe3\x43\x43\x3b\x1c\x20\x49\xcc\x48\xe6\x58\x94\xce\xe7\x1c\x40\x58\xb5\xf9\x6c\x6a\x54\x8d\x2b\x4c\x2b\x8b\xca\x03\x42\xfb\x7c\x4e\xc9\xf7\x0b\x60\xd3\x65\x66\x5c\xf9\x24\x41\x9d\x25\xd2\xe4\x62\x3f\x65\x2b\x39\x2a\x32\x4c\x23\x01\x23\x13\x91\x49\x10\xe1\xc4\xa7\xf5\x44\x8e\x3b\x29\x6a\x08\x73\xb4\xe4\x11\xdd\x68\xce\x3b\x86\xd7\x43\xf0\xa1\xd3\xe3\x45\x1f\xc9\xa7\x12\x0e\xe4\x9a\x71\xca\x8c\x4f\x26\x38\x4e\x79\x8a\xed\x7c\x70\xcb\x29\xd0\x4e\xcf\xa8\xd3\x22\xcb\x2b\xb2\x6b\x6a\xa1\xd6\x85\xa9\x4c\x32\xca\x45\x36\x3f\x68\x1e\x19\xe7\x82\x9d\x05\x8e\x64\xd9\xb0\x47\x00\x96\x5f\xcd\x72\xe1\x22\x26\xb2\x74\x7a\x4e\x92\x0f\x2a\x8e\x53\x66\x2c\xfb\xc2\x63\x80\x79\x53\x37\x09\xc2\x54\x0a\x90\x4b\x04\xa6\x40\xc4\xe6\xa6\x5a\x33\xaf\x02\xe2\xf4\x6c\x7b\x54\x93\x15\xb3\x1b\x84\xcb\xf1\x06\x4e\x11\xed\x37\xe4\x63\x8f\x41\xe6\xab\x62\x62\xbd\x68\xe0\x4f\x88\xcf\x3b\xea\xf1\x19\xa4\xa2\x51\x0e\x9e\x49\x18\x05\x02\x91\x70\x7a\xff\xc3\x4f\x1f\x3b\x1e\x06\x6f\xbd\xfe\xf0\xf3\x47\x92\x67\xee\x7f\xf8\xe5\x23\xcc\xd6\xa3\xcc\xd9\x2d\x5b\x6d\xc6\x25\x20\xa3\x41\x6f\xdb\xf2\x73\xd5\xec\x60\xab\xd0\xa0\xe7\x0f\x5f\x64\x28\xbe\xf4\xf1\x14\x77\xe7\x35\x07\x33\xbc\x70\x49\xf1\x0c\xaf\x77\x9b\x4c\xfb\xd8\x09\x07\xb0\x2f\x97\xdd\x30\x90\xe5\x5c\xe5\x5f\xdd\x37\x77\xb7\x2a\xb8\xb3\xd4\x78\x13\xe3\xfe\x49\xbe\x9e\xa1\x23\xdc\xf5\xbf\xba\x9a\x9a\xc0\xe0\x7d\x23\x47\x4e\x59\xea\x75\xa6\xf7\x43\xd9\xcf\x62\xae\x64\xe7\xea\xd1\xe4\x38\x49\x5b\x11\x83\xa8\x57\x25\x52\x0c\xbc\x2d\x81\x18\x83\x7b\x87\xcf\x41\xe2\xb0\x30\x01\x9a\x2a\x4d\x59\xad\xa7\x92\xb3\x41\xba\xe0\x5a\x31\x25\xcb\xd0\xf7\xa1\x49\x9a\xe4\xca\xb0\xcf\xef\x2c\x65\xdb\xe8\xb5\x1d\x57\x08\x58\xb4\x1c\xf7\x53\x0f\x65\x47\x38\x91\x59\x45\x23\xed\x00\x08\x09\xd3\xa4\x5b\x80\x9d\xda\xa1\x0f\xb6\xef\x73\x54\x04\x5a\xd5\x99\x39\x3a\xab\xbc\x4d\x9c\x8c\x9d\x79\x44\x6c\xa6\x31\xe6\x73\x6e\x6a\xa9\x3b\x7a\x26\x27\xda\xfe\x09\x8e\x66\x28\xbe\xc3\xa9\x54\x16\xd0\xe1\x7f\xa3\x3f\x87\xfc\x81\xd7\x81\xb5\x8f\x6b\xa1\xe6\xd3\x9f\x45\xc9\xa2\x65\x33\xc2\x2f\xaa\x71\xfa\xa2\x59\x37\x7e\xd1\xc5\xd7\x10\x40\x2c\x67\xf7\x8b\x81\xe0\x24\xc9\x9e\xf0\x74\x6a\x81\xaa\xe2\x65\x41\x20\x27\x3a\x23\x09\x03\xf7\x9b\x38\xd1\x79\xde\x4b\x03\xe1\x7f\x6f\x27\x88\xc7\xa5\xa8\x13\x0b\x40\x9d\xe9\x6e\x12\x6c\xca\x46\x2b\x22\x40\x68\x93\x65\x81\xba\xaa\xe5\x18\x35\x97\xcd\xbb\x92\x81\x99\x56\x4b\x3e\x6e\x95\x9d\xae\xda\x9b\x67\xa5\xa5\x5f\xd9\xfe\xc1\xd5\x1f\xe0\x51\xdb\x9c\x48\x4f\xbc\x00\x54\xd0\xe7\x18\x75\x69\xe8\xa6\xe1\xac\xa3\x06\xdc\xef\x9b\xd4\x29\x43\xb8\x4f\x86\xb9\x74\x9e\x72\x66\x3b\xbd\x03\xf2\xd7\xfc\x33\x2d\x96\x58\x5b\x5b\x76\xbb\x35\x58\x28\x36\x96\xe4\xe3\xd6\xb6\x44\x9c\x20\x1a\x88\xf2\x5e\xf4\x09\x92\x27\xe4\xb4\x20\x75\x5a\x56\x1b\x02\x14\x5e\x02\xbe\xdf\x45\x75\x93\x2e\xbc\xa3\xf9\xa9\x37\xc8\x34\x29\x7d\xa5\xf8\x1a\x36\xc1\x56\x90\x61\xd1\x8e\x17\xc7\x3d\xa2\x51\x9b\xaf\x68\x46\xcb\x41\x14\x11\x3f\x03\xa5\x90\x86\x5d\x5d\x2c\xd5\x7c\xad\x43\x1f\x15\x3f\x10\x95\x27\xb1\x63\x13\x16\x67\x3c\xc2\x84\x09\xd3\x64\x98\xea\x3b\x7d\x4e\x3d\x66\x35\x2c\x7d\x68\x57\x1c\xfc\x18\x77\xb2\x14\x2f\x21\xfe\x0f\x13\xdc\xd9\x5c\x2d\x2a\x13\xba\xd7\x12\x51\xb8\xc6\xf8\x33\xab\x27\xee\x84\xc4\x83\x03\x15\xf7\x68\xb3\x79\x54\x14\x0f\x26\x7a\x1d\x10\xbd\xeb\xf6\x60\xb3\x57\x85\xbf\x01\xf5\x07\x25\x05\x1c\x64\x1a\x77\x0c\x10\x8d\xd3\x7b\xf6\x33\x2d\xd9\xf2\x97\x16\x1e\x6f\x20\xef\x60\xec\xba\x26\xdd\xd2\x12\x44\x68\x77\x1b\x48\xbc\x81\x20\x9e\xf7\x61\x4f\x06\xbc\x37\x48\x1a\x1c\x10\xba\xb3\x79\x86\x07\x9d\xb6\x6c\x90\xde\x1c\x41\x89\x5c\x4b\x72\x14\x21\x01\xcf\xf3\x48\x75\x7c\x6f\x02\x70\x8a\xeb\xf9\xba\xff\x23\x39\xdf\x54\xe5\x53\x24\xf0\x35\xde\x37\x75\xb7\x92\xc5\xcd\x84\xbe\xe1\xd0\x29\x21\x9f\x14\x1c\x30\x06\x7e\xce\xc2\x6f\x0f\xb6\x6a\x9a\x4f\x72\xc8\x7a\x8e\xa0\x4f\x59\x56\xbd\x25\xf2\xe5\x31\xaf\xe2\xd4\x79\xde\x55\x8b\xf0\x0e\xa7\xe7\x1c\x31\xd1\xc4\x82\xc7\xb8\xcd\xfe\x2e\xaa\xe0\x39\xbe\xd2\xff\xc9\x84\xe1\x40\xd4\x1b\xf3\xd2\x0e\xd5\x5f\xb3\x4f\xa6\x4b\x55\x6f\xb8\xa0\x2a\x75\xde\x1b\xd7\xa5\x8e\x65\x6c\x4a\x9b\xde\x33\x72\x5e\x95\xc7\xb2\x18\x7d\x0c\xad\xe7\xbc\x37\xeb\xbc\xcf\x46\x0e\x96\x53\x8e\x95\xf1\xf9\x8f\xbb\xdc\x23\xac\x29\xce\xb5\x9c\x6d\x7a\x1a\xbc\x34\xef\xf4\x31\x98\x33\x61\x7b\x8f\xf4\xd8\xe0\xce\xdb\xe1\xb5\x38\x9c\xc1\x2b\x9d\xbd\xd7\x39\x2a\x76\x85\x27\xba\x76\xb7\xe1\xa8\xac\x06\xf9\x11\x9b\xcb\x7c\x96\xd6\xea\xc5\xfd\x62\x38\x97\xc2\x2e\xfe\x9d\x6c\x58\xa8\x7f\xbd\xf8\x5a\x8a\x8c\x99\x3b\xb9\xaf\xc3\xd6\x4c\xb0\x01\x10\xba\xd1\xf8\x03\xd5\xe2\xac\x69\x4d\x45\x5a\x40\x3e\x03\xd7\x64\xe0\x3e\xd8\x03\x18\x00\x1a\x52\x2e\x89\x3f\x89\xf7\x83\x64\xcb\x23\xd7\xfe\x3e\x50\x4c\x64\xc7\x72\x9e\x2f\x3e\xb9\x16\x31\xfb\x2b\xdb\x1e\x4e\xf5\x63\xb4\xb3\x53\xdf\x02\xe2\xc7\x93\xed\xb3\x47\xb0\xc3\xcb\x05\x3e\xe8\x85\x4c\xf0\xea\x36\x40\x08\xbc\x38\xd8\x2b\xe3\x73\x55\xec\x88\xbc\x79\x30\x66\x4f\x1e\x6f\x9f\xc5\xf9\x89\x22\xb0\xc7\x70\xb4\x8c\xc1\xc0\xb1\xe8\x52\xe1\x30\x2f\x9f\x5a\xc1\xf1\x89\x5b\x7f\x2a\xa8\x43\x0d\x47\x67\x51\xc0\x8a\x02\x52\x37\x76\xf2\x15\xa7\xd2\x31\x4e\x4c\xbb\xc0\xcd\x73\xd0\x30\x1c\x0c\x4b\x57\x59\x40\xda\xf0\x64\x30\x9a\x9d\x28\x4a\x3c\x24\x06\x3b\x58\xfe\x90\x86\x6b\x9a\x65\x68\x8f\x37\x2f\xde\x04\x4f\x27\x36\xbf\x1d\x28\x7b\x18\x79\x8e\x29\x86\xdf\xa2\x40\x7f\xce\x82\xe8\xe3\x19\x06\xde\x5c\x51\x59\xb1\x37\x57\xd0\x40\x59\x6a\x8e\x95\x73\x36\x59\x86\x7a\x2c\x04\xa5\xe0\x2c\x56\x85\x53\x37\x99\x5e\x10\xa0\xb7\x26\x0e\x8f\xbd\x68\xea\x7e\xd5\x04\xc7\x53\xc5\xc5\x0c\x93\x35\x6c\xc8\x2c\xee\xeb\x5e\xd6\x07\xc5\x8b\xae\x16\x83\x65\xc4\x26\x9f\xad\x25\x38\xea\xb8\xd9\x11\x6f\x59\x57\x34\xe8\x58\x32\xf4\x9e\xac\xcb\xeb\x1b\xdc\x40\x44\xbc\x90\x18\xcd\x92\xe9\x35\xfd\xf3\x8a\x74\x60\xde\x63\xe3\xeb\xaa\xd8\x47\x74\x99\x36\x8b\x05\x7b\x86\x56\xb5\xde\xf0\xb1\x2f\xcd\x5f\xa7\x2e\xd6\xe2\x25\x1a\xfa\xd8\x1a\xdf\x95\xcd\xa7\x14\x57\x52\x31\x13\xe8\xb6\xe5\x82\x84\x92\x19\x9b\x7b\xda\x1a\x17\x48\xa6\xa6\xb4\xde\xb9\x57\xe5\x7a\x82\x4d\x23\xd6\x4c\x03\xb4\x28\x4a\x42\xc5\x4b\x99\xd4\x08\x3d\x43\xd0\x29\x31\xc4\x30\x7c\x97\x10\x82\x03\x10\xe2\x26\x52\x11\xa6\x88\xc9\xca\xce\xc9\xb7\x2c\x2f\xa3\x36\x84\x37\xac\x48\xd5\x5f\x91\x45\x86\x45\xcd\x4c\x5b\x7a\x6a\xf7\x30\x4e\x81\x74\xdb\x46\x76\xff\xdf\x69\x70\x0c\x24\xe2\x2a\xb7\xe4\x95\x84\xc6\x20\x5b\x3d\xba\xed\x0e\x71\x8f\x41\xe6\x4d\xc1\x02\xe8\x73\xfa\x1b\x4b\x31\xee\x3a\x45\x13\x65\x40\x9c\x5b\x3e\x2e\x24\xd6\x55\x4e\x20\x74\x97\xeb\x5b\x39\xfa\xc5\x9b\xc2\x90\xb7\xc5\x39\x80\xdd\x45\xe4\x66\x20\xde\xf3\x44\x01\xea\xc4\x0c\xff\x3c\xdc\x77\xc0\x88\xdf\x96\x2d\x0f\x97\xb9\xfb\x87\x9e\xde\xc3\x36\xc1\x20\x60\xed\x7a\x2d\xbc\x1b\xc3\x00\xed\x42\x2e\xa7\x38\xe1\x05\x93\x05\x73\xb3\x9f\xd9\x2e\xfa\x56\x2e\xa4\x60\x71\x84\x88\x1a\xa7\x29\x0d\x44\x16\x79\xb9\xb9\x8e\x74\x94\x9d\xce\x19\x3b\x44\x01\x62\x03\xc2\xc6\x2d\x52\xa9\x89\x11\x24\x3e\x36\x23\x08\x6f\xdd\x03\x90\xf9\xb4\x0e\xd7\x19\x05\xf7\xc2\xda\xab\x68\x3e\x04\x1c\x25\xba\xe7\x12\x0d\xd5\x6b\x26\x9e\xf0\x1d\x09\xcf\x98\x53\x3c\x79\x8c\xa0\x53\xce\x75\x96\xf3\xf6\x7c\x30\xbb\xf9\xe6\xb2\x86\xd0\x00\x31\xa3\x2d\x97\x79\x5b\xd8\x19\x53\xe5\x34\xec\x2f\x08\x8e\x12\x1e\x21\xc8\xd7\xa4\xfd\x68\x11\xc4\x19\x09\xe4\x13\x6f\x07\xd2\x78\xf3\xa5\x90\xa6\xf0\xf1\x2a\x5b\x08\x1b\x63\xef\x6c\x62\x2e\xbb\x2d\xf3\x1b\x61\x5e\x56\x0f\xba\xfc\xf0\x8f\xd7\x97\x6f\x4f\xd2\x2f\x8f\xf6\xfb\xfd\x23\xce\xfe\x68\xd7\xae\xd9\x8f\xb9\xe0\x33\xac\xff\xe3\xe2\xcd\x49\x5a\xf6\x8b\x1f\x67\xa4\x29\x81\x0d\xf9\xd9\xad\x7e\x08\x30\x28\x30\x75\xb1\x16\xfd\x8f\xb3\x27\x9d\x31\x7a\x93\x60\x78\xf5\x41\xb8\x40\xf2\xe8\xd9\xa6\x87\x0e\xa6\x6c\x7e\x78\xe9\xbc\x24\xbd\x14\x7b\x06\x08\xf8\x04\x60\xd5\x86\xef\x3d\xa3\x43\x04\x49\xc4\x77\xec\x5d\xb5\x5b\x17\x31\x6f\xa3\xde\x29\xca\xca\xe2\xd7\x61\x49\xd8\x24\xc7\xc5\x69\x4f\xd3\x3f\xb2\x52\xcd\x28\x15\x2a\xe0\x24\xa3\x02\x00\xcf\x86\x99\x71\xc3\x07\xaf\x1e\x07\x59\x39\x68\x46\xc9\xcd\x25\xe6\x2c\xe7\xd3\x9c\xc3\xdc\xa8\x10\x15\x45\x79\x5b\xa0\x4f\x37\x4e\x34\x05\x55\x48\x71\xe3\x2c\xb1\x49\x63\x3a\xd9\x90\x24\x1b\xef\x72\x71\x61\xbe\x34\x7d\x7f\x0a\x0f\xa9\x78\x08\x4c\xa2\x28\xe0\x64\x00\xe5\xf9\x1e\xba\x2c\xf8\x59\x06\x16\x92\xea\x95\x36\xe5\x30\xc1\x3b\x72\x9c\x97\x3d\xce\xc0\x4c\xcd\x1a\x19\x53\x37\x6a\x9e\xce\x8d\x13\xe9\x5a\x24\x32\x84\xb8\x43\x46\xf3\x1c\x93\x3c\x96\x8e\xf6\xc3\xf5\x66\x28\x18\x29\x17\xf1\x42\x87\x72\x91\xd1\xc2\xaa\x80\x83\x3a\x46\xeb\x99\xca\xb1\x23\xbd\x22\xa8\xe1\xd8\xd2\x2d\x9b\x50\x99\xf6\xd2\x0e\xa7\xc2\xa7\xfc\xdc\xc5\xc5\x82\x90\xcd\x27\x70\xc8\x78\x32\x31\x42\xba\x35\x29\x1b\x59\xc8\xfb\x58\xa4\x8a\xad\xe2\x0c\x82\xa3\x10\xec\x40\x66\xce\x56\xa3\x83\x20\xa1\xb0\x2b\xa5\x9a\x53\xaf\x38\x1f\x0f\x12\x87\x97\xac\x0e\x92\x59\xbf\x95\xfb\x9f\xcf\x24\x14\x62\x6b\xbb\x6e\x0e\x76\x56\xe6\x1c\x5f\x7a\x08\x35\xec\x99\x07\xd3\x4e\x79\xc8\x40\x8f\x6c\xb2\xb8\xb8\xbf\x04\xd7\x11\xa9\x30\x5a\x1f\x52\x81\x61\x3f\xcc\x50\xe1\x88\x6c\x83\x13\xcd\x9b\x38\x6e\xe1\xa0\x86\x07\x43\xce\x5d\x0d\x47\x0e\x86\xc4\x59\xc3\xc3\x21\x41\xd6\x6f\x38\x1c\x12\x23\x69\x7c\xf4\xc3\x77\xf5\x1b\x4e\x7f\x4c\x75\x7a\x2c\x81\x4e\x21\x7e\x22\xc3\x94\x1c\x5a\x84\x7d\xfb\x86\x53\x20\x03\xb3\xc3\xb7\x88\xa2\x53\x2d\xf1\x28\x09\x90\xfb\x35\xe3\x58\x51\xdd\xde\xce\xe6\x6d\xb3\xef\xf8\xa8\x05\x6e\x2c\x65\x2e\xcb\xdf\xe9\x35\xbe\x05\x84\x0d\xff\x20\x0a\x09\x48\xa4\xb8\xe3\x50\xa4\x04\x24\x92\x17\xfd\xd1\x8d\x91\xe7\x94\x82\x4b\x1a\xf9\x02\x57\x3e\x34\x2a\x29\x33\xc9\x42\x0b\xdd\x3e\xe3\x10\x0e\x89\xc0\x50\xc7\x06\x21\x64\xba\xe6\x18\x05\xe3\xa0\x21\xdc\x56\x25\xec\xc5\xea\x31\x5e\x08\x9a\xde\x9b\x1b\x84\x65\x70\x04\x46\xc4\x50\x41\x92\xf4\x20\xa1\x33\x38\x41\x18\x2e\x3d\x84\x22\x08\x93\xfe\xf9\xeb\xb7\xf2\x09\x07\x2b\x3d\xd4\x0c\x0f\xab\x17\xec\x6c\x6b\x6e\x5b\xb3\x29\xf7\x2d\x4b\x13\x37\x38\xb1\x92\xd8\xdd\xf5\xf8\x72\x10\x45\x9b\xdf\xc2\x62\xce\xff\x2e\x96\xa4\x55\x9f\xed\xaa\x2d\x1f\x0d\xb3\x11\x72\x04\xd5\xd7\x08\xb8\x78\xb5\x78\xf3\x9f\x8b\xcb\x59\x5d\x08\x70\x78\xbf\xf0\x18\x31\x27\x30\xa2\xbb\xfb\x24\x82\x54\x6c\x06\x52\x02\x1d\x54\x08\xea\xf0\xf7\x74\x81\x76\x70\x9b\xbb\x41\xd0\x0a\xed\xce\x7b\xd0\x62\x5d\x8b\xcb\xb9\xa5\x41\xc1\xb4\x8b\x15\xa2\x3c\xfe\xb2\x2e\x33\x6c\x79\x27\x3f\x4a\xc7\xea\xbf\x08\x7d\x07\x59\x14\xe0\x13\x70\x7c\xe0\xac\x5b\xcd\x86\x03\xe1\x76\x30\x15\x67\x29\xbe\x1d\x94\xc9\x70\x4c\x2e\xd9\xa6\x08\xc4\x38\x21\xa0\x70\x59\xb9\xc8\xdb\x4f\x7c\x8f\x29\xb6\x58\xad\x80\x7d\xab\x87\xe1\xf9\x3f\x1c\x31\xbd\x3f\xf7\x4a\x42\xa3\x0a\x63\x9f\x25\xe4\x86\xe6\x6e\xcc\xd4\x65\x60\xb9\x53\x44\xb2\x37\x12\x92\x1b\xf7\x87\x94\x31\x3e\xf9\x44\x69\x8f\x86\xe3\x16\xc0\x3b\x44\xff\xb9\xfc\x3f\xff\xeb\x7f\x13\x7b\xda\x36\xb4\x5a\xe2\x98\xa2\xde\x90\xe3\xc7\xdd\x3c\x9e\xfd\x6d\xc7\x8f\xc0\xa3\x83\x86\x08\xfa\x53\x3d\xf9\x47\xa1\x11\x8d\xf2\x55\xa8\x46\xdf\xbc\xd1\x3c\x20\x72\xa8\x73\x9e\xcc\xb1\x4b\x33\x2c\xc3\x88\x2a\xd3\x35\xc2\xdd\xd0\x61\x83\x8b\x41\x93\x73\xef\x4a\x74\xd3\x4b\x4a\xf2\xa1\x69\x97\x1f\xfd\x3d\x4e\x6e\x20\xa2\x3b\x9c\xa0\xc3\x79\x18\x43\xd8\x4b\x26\xbf\xf1\x85\xf3\xa2\x13\xcb\xa5\x71\xd8\x18\xb5\x83\x11\x72\xaf\x8a\x9c\xba\x75\x85\x84\x15\x3d\xe8\xec\xe8\xad\xde\x27\x88\xc3\xad\x13\xe7\x9f\xc3\x33\xbd\xa4\x12\xab\x78\x2c\xf7\xc5\xe8\xa6\x60\xf4\x72\x05\x7c\x6e\xcd\x0a\x69\x62\x60\x91\xe8\x6e\x15\xfb\x81\x72\x80\xaf\xf4\xe1\x5b\xfd\x99\xfc\x64\x9f\xe1\x35\x22\x68\x5e\x23\x02\xd7\x55\xc1\xd3\x95\xff\x13\x5c\x12\xa2\xa6\x32\x8e\xd5\x90\xc6\x0f\x2e\x22\x89\x2e\x44\x0d\xbc\x81\x71\x41\x51\x74\xcb\x29\x17\x0e\x44\x4d\x6c\x54\x8e\xae\xad\xc2\xc8\x20\xf6\x2e\xe8\xe8\x50\xc7\x83\x35\x6c\xc7\x7a\xca\x9d\xcb\x22\x2e\xa7\xde\x5f\x4a\x32\xb8\x34\xa9\x8e\x1c\x31\xba\x99\xaf\x26\x98\x32\x2b\xd9\xc5\xf4\xd9\x78\xbc\xf2\x39\x4d\x9e\x5f\x05\x9e\xbd\x6d\xab\xae\x0b\x84\x04\xe4\xf1\xd1\xe9\x9a\x14\x84\x75\xa4\xe6\xa1\x20\x16\xe5\x7e\x3d\x72\xac\x61\x7c\xc1\xd8\xf7\x1f\x6c\x18\x97\x71\xf7\xd1\x86\x7f\x74\x03\x6d\xfa\xf2\x90\xd0\xea\x34\xb8\x45\xc4\x25\x4d\x5d\x27\xf2\xef\xd8\xce\x22\x92\xd2\x66\x8c\xe6\xf6\xd1\xfd\x2c\xcd\xe3\xb6\x43\x8e\x5f\xec\xf6\xfd\xbb\x5a\xd1\x75\x5a\xdf\x20\xed\xc5\x3d\x0e\x04\xbd\xa8\x55\x0e\x21\x6c\x91\x8b\xcf\x41\x1e\xd3\xde\xbc\xe0\x1a\xf1\x8c\xa1\x8e\x37\x3a\x94\x87\x9e\xde\x99\x25\x3e\xa2\x17\x36\xd3\xd9\xdf\xfc\xa1\x36\x33\xc9\xcb\xe1\x3c\x31\x2a\x7f\xfd\x84\xde\x91\x5d\x8a\xbb\x8e\xea\x0d\x5b\xc9\xbc\xc6\xf9\x02\x86\x8d\xbc\x33\x47\xb8\xcc\xc6\x3b\x81\xff\x9e\xe3\x7b\xd3\x3b\x01\xac\x03\xee\xcd\x48\x85\x45\xd9\xf0\xe7\x0d\x0a\xac\x43\x18\xbe\x44\xc9\xf0\x0c\xd7\x63\x6e\x87\x27\x19\xfa\x61\xa3\xd9\xef\x46\xb8\xf7\x4c\xef\x16\xb2\x93\xfb\x83\x78\xcf\xfa\xe0\xee\xb3\x95\xc3\x77\x1e\x48\xbe\x21\xee\x4c\xa6\x0c\xf3\xc7\x75\xc4\xde\x75\x16\xeb\x36\x63\x2e\x10\x70\xf1\x84\xb5\x45\x89\x33\x61\x67\x12\x72\x29\xaa\x6b\xe9\x15\x79\xbe\x11\x72\xfd\x19\xdc\x55\x83\x58\x5d\xf5\x14\xd7\x7c\x2c\x86\x06\xe5\xb0\xe5\x21\xcc\xdd\x7d\x40\x3c\x4c\x02\xa8\xe2\xa6\xb6\x0a\x12\xf2\x1f\x86\x65\xc9\x55\xd0\xba\x7a\xbe\x6d\xf6\x89\x2c\x9d\x33\x38\xf9\xc9\x75\x5d\x1a\x13\x37\x49\xe2\x58\x46\xd1\x33\xe1\xa9\x9c\xda\xd3\x53\xc3\xe3\xf4\xc1\x39\x31\xac\x1c\xee\x84\x98\xdd\xbe\xc7\x02\x28\xa4\x06\x1c\xcd\x61\xb9\x3e\x24\x8e\x99\x96\x0a\x01\xd6\x57\x2b\x92\x68\x54\x6f\x08\xf1\x2d\x15\x73\x3b\x47\xd5\x9d\x98\x7d\x0b\x97\xb1\xa8\xe1\x4d\x6e\xd3\x90\x5a\xe4\xba\x7b\xd7\x0e\xf7\x96\x82\x6f\x47\x08\xf1\x2d\xed\xe0\x5a\x1e\xc3\x2f\x8d\x07\xf1\xae\xf6\x90\x72\xa8\x77\xcb\x84\x7b\x78\xdd\xb0\x89\xfe\xa0\xd4\x4d\xb0\x5e\x63\x1f\xbc\x18\xc8\x1f\x6c\xf8\x1d\x2f\x9c\x92\x22\xdb\xb1\x13\x22\x82\xb8\x2b\x4c\x1e\xa7\xff\xfa\x14\xe7\x91\x46\x4e\x07\x1a\x38\x22\x78\xb0\xa9\x55\x48\xdb\xe5\x45\x3a\xc8\x58\x17\x2a\xd7\x49\xe2\xd7\x17\x5e\x81\xb3\x83\xe4\x22\xdf\x85\x4b\x06\x04\x3c\x1b\xc9\x42\xae\x22\x75\x73\x9c\x59\x5d\x50\xeb\xb8\x30\xc7\xaa\x01\xe5\x58\xf4\x18\xce\x78\x67\x28\x9d\x05\xc6\x56\x66\xca\x27\x26\xb3\xca\x9e\xbf\x41\x6d\xf2\x43\xe4\x86\xc0\x17\x00\xb0\x46\x16\xcd\x9a\xe3\x2b\xf6\xb8\x29\x7e\xad\x96\xfb\x3d\x1d\xc1\x1c\x35\xca\xcc\xc2\xa9\x3e\x26\x10\x4f\x76\xcb\x36\xe7\x5d\x02\x1b\x6b\x66\x16\x01\x29\xa0\xc0\x3f\xb8\x5e\xba\xc7\x56\x3c\x37\xc0\x3e\x2f\x15\xf4\xe0\x2e\xa6\xf0\x1d\x0d\x00\xdb\xb8\xbb\x05\x60\x0b\x72\x4b\x29\x35\x23\x60\x01\x77\x35\x44\x5f\x49\xf9\xf6\x86\x80\x6f\x7c\x63\x43\x4e\xac\x15\x7a\x37\x5e\x51\x4c\xce\xff\xbb\xda\x37\x50\x77\x40\x9c\xd1\xe5\x8b\x03\x82\x8f\x9e\xca\x73\x44\x1f\x78\xe4\x58\xb1\x70\x6d\x50\x0f\x21\x5d\xce\x7c\x51\x35\x0d\x21\x54\xd9\xba\x0f\xbd\x88\xe2\x43\xac\xec\xd7\xd2\xb7\x07\x15\x49\xb8\x73\xf1\x19\x5a\x7f\xc7\x94\x28\x61\xd8\xac\x95\x0b\x39\x3f\x00\xed\x1f\x8f\x3c\xc9\x29\x2f\xf8\x88\x93\x44\x17\xbd\xdc\x38\xbe\x1b\xf1\xce\x7b\x29\xe3\xfb\x38\x87\x17\xb3\x76\x72\x0d\xc3\xd2\x64\x39\x7b\x24\x25\xf1\x2e\x44\xd7\x07\xc2\xc1\x06\xef\x42\x2d\xf8\x4a\xb2\xa6\xae\xc4\xfb\xe4\x42\x42\xd4\xf7\x84\x4d\x31\x6a\x87\xe1\xab\x4c\xfc\x99\x10\xdf\x3b\x18\x17\xd9\xc6\xa4\x82\x80\x84\x83\xf4\xe0\x9e\x44\x78\xfd\xb6\x76\xf3\xa3\x2f\x01\x2d\x81\x09\x73\x17\xb4\x4c\xdb\x81\x42\x77\xdd\x54\x8d\x19\x6f\x61\xa6\xba\x81\xeb\x1e\xd2\x63\x26\xc1\x97\x81\x15\x7c\x19\x98\x3c\x99\x74\x12\x44\x44\x38\x0f\x13\xb6\xee\xda\xa5\x28\x3a\x5e\xf8\x7c\x3c\x0e\x0c\xc7\x51\x7c\x4a\x38\x8a\xc8\x17\xa3\x5a\xcc\x80\x1d\xc6\x89\x47\x67\x18\x63\x87\x64\xa2\xd2\xe3\xab\x77\xc2\x24\xb9\x62\x34\x8a\xd2\x67\x59\xe2\x9e\x88\x4d\x35\x8c\x5b\x37\x4b\xbe\x1e\x15\x46\xc8\xb8\x7b\x2a\x3b\xc7\x65\x9a\x63\x69\x54\x04\x8e\x26\x84\x31\xd8\xd7\xea\xf3\x2e\xce\x8d\x29\x18\x46\xe8\x99\xab\x11\x20\xe9\xd4\xf9\x62\x85\xfe\xcf\xa6\x08\xc9\x54\x63\x47\x4c\xfa\x12\xe4\x04\xa4\x3c\x9d\x93\xda\x43\x39\x93\x30\xfc\x14\x20\xde\x25\x0a\x52\xd9\x51\xbb\xce\xf4\x76\xa2\x46\x6f\x27\x60\xaf\x6d\x77\x13\x51\x7a\x89\x19\xd7\xdd\x99\x29\x58\xc5\xf8\xc4\x9e\xde\x7e\xa4\x39\x45\xe2\xb8\x63\x39\xf3\x25\xeb\xc2\xa8\xae\x19\xb9\xd7\xd5\x3a\x2f\x27\xb0\x74\x63\xbe\x1b\x8e\x48\xbe\xa9\x8c\x41\x2b\x3d\x84\x2b\xe6\xfb\x9b\x0a\xeb\x19\x1f\x79\x86\x45\x2e\x6a\x64\xc4\xd6\x0c\xe4\x2b\x25\x0c\x9a\x38\x59\xc4\x77\x34\x92\xdf\xf2\x5a\x2e\xdc\x0b\x44\xe7\x7c\xeb\x5d\x3b\xe7\xc3\xd5\xbc\x86\x95\xf2\x26\x5d\x53\xc7\x16\xb8\xe9\xec\x77\xb5\x0c\x0d\x62\x9d\x7b\xaa\xf8\x63\x6d\x6b\xcb\xee\x50\x2f\x32\x3c\x44\xd5\xad\x74\xa3\xf2\x5d\x29\xb6\xf2\x07\x33\x8a\x7b\x9c\xeb\x0d\x19\x25\xb6\xf4\xba\x07\x72\x2d\xe8\xc3\x05\xc5\x57\xfc\x10\x16\x2d\x71\x8f\xc0\x13\x91\xdb\x04\x38\x12\xcf\xfa\x1f\xef\xac\x68\xd0\x97\x80\x21\x06\xb8\x6d\xd1\x14\x7e\x30\xf2\x1b\x7a\x10\x6c\x92\x87\xdd\x60\x32\xd0\xd9\x0f\x5e\x11\xde\x7f\xcd\x88\x7b\xc8\x0e\x0f\x7c\x8f\x21\x3f\x0f\xa2\xfe\x4c\xba\xa0\xd9\x43\x63\x6a\x3c\x3a\xd2\xa1\xb0\xde\x3b\x46\xe8\x41\xd4\x8a\xaf\xf7\x31\x5c\x84\xe4\x09\xc5\xdd\x16\x0f\xe8\xba\xb7\x13\xdf\xe3\x3b\x64\x0a\x72\x25\x69\xb6\x6c\xda\x86\x86\x47\xce\x8f\xeb\x35\xa5\x2f\x2d\xae\x9b\xc8\x00\x13\xf8\x21\xdb\xe9\x99\x7f\xcb\x73\x81\x68\x92\x1f\xf8\x02\x00\x9f\xab\x6f\xfa\x7c\x6d\x79\xd8\x02\xb9\x50\xbb\xf5\x0d\x27\x58\xae\x53\x4b\x08\x72\x6a\x9e\x66\xce\x5e\xc7\xc8\xa2\xc0\x97\x1a\x13\xc0\x62\x9b\x83\x0f\x65\x13\xba\x76\xdb\x8c\xbb\x8a\xd3\xa3\x12\x9d\xbe\x41\x74\x7a\xc3\xd1\xe3\x1a\xac\x55\x2e\xdb\xa0\x51\xc7\xf2\xf1\x59\xc0\x61\x9e\x17\x7c\x64\x70\x08\x6f\x98\x5b\x95\xf9\x76\x84\xb7\x57\x14\x39\xc2\x1a\x20\xc7\x08\x00\xec\x71\x2c\x84\xb9\xaa\x02\x8a\x55\x98\xe3\x35\x45\x1d\x83\x86\x07\xc0\x10\x1e\x4f\xdb\x1e\xc9\xa1\x6b\xf6\xb0\x55\xba\x67\x33\x6a\x55\x33\xff\x1b\xde\x63\x55\xe8\x4b\xf9\x0c\xa0\xe6\x4d\xd3\xf3\xab\x55\x5b\x16\xb7\x16\x9f\x1c\x9a\x9e\x5b\x3c\x8b\x5b\x8b\x4f\x23\x4c\x09\xf4\x18\x55\x02\x7d\x1c\x57\x1b\xbe\x51\x87\xea\x6a\x77\x0b\x7e\xb8\xb6\x73\x15\x5e\x5c\xf3\x4d\x3c\xd7\x2e\x61\x54\xe3\x28\x67\x48\xa1\xc3\xcc\x53\x35\x2f\x48\x88\x28\x27\xab\x3e\xe3\x94\x3b\xeb\x1e\xe5\x0d\x2b\x1f\x65\x9f\x9a\x29\xb8\x85\x9b\x8d\xce\xf3\xdd\xe2\x53\xd9\xf3\xc9\x85\x55\x86\x1d\xe6\xb0\xac\x2b\x03\x4b\x9f\x03\x2c\x7d\x45\x60\xe9\x8d\x3c\xaa\x3a\x2e\x95\x16\x9d\x4d\xd9\xe7\xf0\x14\x08\x4a\x79\x79\x46\x23\xc0\xd1\x45\x3e\x95\x0b\xd6\x99\x4c\xa5\x6c\x9d\x85\x2c\xf8\x04\x25\xe8\x73\xaf\x22\x78\x9f\x3a\x90\xa9\xd2\x58\x0d\x90\xd5\x6f\x71\x58\xc8\x15\xd3\xac\x18\x50\x1b\xde\x49\x4c\x00\x8b\xbb\x32\x09\xd6\x78\x24\x36\xc5\x71\x69\x26\x81\xdf\xc4\x8c\x52\x38\x98\x07\x16\xc6\x45\x70\x57\xf9\xae\x9b\x04\xdc\xe6\x32\x99\x8e\x42\x5a\xf5\x06\x68\x35\x0f\xe1\xb4\xd2\x4e\x50\x29\x6c\x45\x34\x35\xf1\x70\xd7\x2b\x27\xed\x8d\x7a\x38\xb8\xdb\x85\x93\x78\xa9\x5e\x60\xbf\xfa\x08\xa1\x82\x89\xf4\x0a\x99\x55\x62\x4c\xde\xc2\x03\x1b\x16\xb6\xb4\xe8\x48\xb5\xc4\x45\x2f\x22\x6a\x9c\x9d\xe0\x73\xf7\x36\x68\x7c\x78\xf4\x57\x4b\x84\x60\x6a\x2e\x2b\xf1\x63\x53\xea\xb9\x22\x80\x72\x8b\x94\xec\x24\xad\xc3\xcc\x50\x1a\xdc\x43\xe3\x51\x01\x6f\xa0\x4f\x04\x7d\x3b\x7a\x59\xbd\x5d\xf3\xf7\x8d\xf7\xd5\xfb\xde\x04\x38\xc6\x46\x77\x8c\xdd\xaa\xcb\x42\x74\x0e\x6f\x09\xcc\x07\xe8\x65\x70\xc5\x70\x04\x8a\x9d\xef\xf0\x79\xc5\x60\xfb\xd1\x50\x8e\x8d\x3e\xbc\x0b\xab\x8e\x7c\xa3\x12\x82\x3c\xc1\x63\xba\xec\x3e\x29\x27\xde\xa6\x50\xe4\xad\x83\x86\x21\x77\xef\x3f\xa0\xef\xdc\x5a\x8a\x71\x31\xfd\x1c\xc9\xff\x93\x17\x59\xc2\x06\xf8\x77\x59\x8e\xd4\xff\x1f\xf2\x2e\xcb\xd0\x32\xeb\x1e\x66\xc1\xc3\x13\x33\x1c\x51\x89\xe7\x71\xb4\x71\x15\xcd\x67\xe4\x08\xe7\x29\x22\xe2\xad\x7c\x44\x79\xb3\xaf\x59\x7c\xc5\x6a\x83\x29\x3a\xac\x2f\x38\x55\x14\xd5\x26\x39\xc6\xb7\x4f\xc6\x4d\x90\x98\xf1\x6e\x91\xc4\xab\x35\x22\xd5\x0b\xcc\x4a\xb5\x1e\xcd\x60\x92\xd0\x2d\x1a\x8b\x1b\xde\xb7\x05\x63\x92\x4e\xed\x41\x93\xe3\xc9\x1d\xb5\x5a\x32\xc9\x79\x73\x3b\xb0\x34\xc9\x4c\x14\x30\xe8\x8a\xc4\x84\xf7\xdd\x48\x8c\x3c\x44\x80\x97\xb9\x24\xa4\xf1\x63\x2f\x8c\xa0\xc5\x5a\x4c\x5c\x75\x50\x28\x80\x26\x79\x55\xd0\x96\xa1\x7f\xaa\xc4\xea\xc3\xf2\x78\x53\x5e\x62\xf4\xc5\x7d\x3c\xb6\x2f\x31\x50\xf6\x0b\x78\xb9\xb1\x6e\x7f\xfe\x36\x8c\x0f\x1e\x2f\x40\xaa\x7f\x82\x5a\xfa\xc5\x8b\xcb\x5c\x7c\x76\xb0\xa8\xe8\x2d\x61\xcf\xd9\x6f\x47\x5b\xdf\xf7\x6d\x35\xdf\xf1\xfe\x98\xfa\x03\x30\x51\xcb\x46\xba\x4b\x1b\xc1\x76\x3b\x7b\xd4\xe3\x5a\x43\xc7\x61\x07\xef\x22\x0e\xe0\xe4\x02\x1b\x6b\xdf\x0b\x7c\x59\x11\x30\x2f\x3b\x00\xd9\x74\x8a\x20\x36\xcc\x5c\xb3\x2e\xe7\xe9\x41\xbc\xa9\x48\xaf\x4f\x35\x05\x0f\xf2\xab\x59\x05\xef\xf6\x1f\x1d\x3e\x86\x1c\x3d\xf0\xef\x93\x74\x40\x90\x14\x8c\x8a\xbe\xf1\xd1\xcb\xf3\x0b\xf2\xbe\xc5\xcd\x9b\x6b\x0a\x2e\xda\x83\xec\x34\xe9\x80\xf2\x56\x83\x3e\x83\x6f\x8f\x9e\x9d\x5e\xd8\xc3\xf7\x21\x89\x68\x91\xb8\xe0\xd3\x5e\xd8\xf5\x85\x53\xfb\x1b\x7d\x61\x57\x2d\xad\x4a\xe4\xfc\x42\x14\x7b\x0d\x6f\x3b\x2b\x27\x38\x49\x3f\x98\x2f\xfa\x16\x88\xa2\x77\xb4\x8a\xc5\x26\x5f\xac\x50\x6e\x35\x0b\x27\x4a\xb8\xc8\x46\x15\x7c\xe3\xcb\x1d\x61\x59\xc1\x6a\x74\x47\x5b\x27\x8f\xca\xc6\xf7\x78\x86\x80\x99\x4c\x5c\xbb\xef\x37\x2a\xd8\x5f\xef\x3c\xca\x10\x5d\xfc\x1b\x65\x9a\xf6\x1f\xb8\xeb\xca\x5f\xb1\x26\x98\x16\xef\x8c\xe5\xaa\xc5\xc7\x36\x73\x85\xcd\xb7\x5b\xc7\x47\x82\x9b\x98\x41\x22\x01\xc8\x67\x99\x0d\x01\xc4\x9f\xe4\x05\xf6\x10\x48\x4e\xc6\x84\x40\x7c\x3a\x46\x01\x86\xcc\x48\xa3\x9b\xdb\x5b\xbe\x8d\x91\xaf\x65\xd1\x33\xeb\xfc\xc9\xb7\x1e\xb8\xfa\xdd\x0b\xd0\xcd\x4e\xd4\x74\x3c\xf1\xae\xa7\xaf\xde\x21\x92\x25\x34\x03\xb7\x07\xda\xc5\xfc\x89\x29\x1e\x26\x69\x45\x9c\x14\x56\x82\xa5\x8d\x1f\x7d\x9f\x78\x0b\xfe\x5d\x83\x87\xa0\xfb\x95\x43\x30\xdb\xea\x17\x99\x5c\xc2\x18\xe4\xc1\x4e\xc1\x02\xfe\xbf\xe3\x4c\xd4\xee\x71\x0e\x6a\xf7\x11\x70\xd9\x3d\xb6\x85\xe0\x1a\x5f\xc2\x42\x5c\x8b\xd9\x27\x4d\xa9\xc8\x3a\x2c\x71\xc3\x07\xed\x42\x1c\x14\x73\x4f\x18\xee\x9d\xfc\x49\xd2\x20\xc8\x70\x35\xf3\xb1\xe1\x0a\xe2\x63\xc3\xb5\xd0\xc7\x6a\xc3\x06\x2d\xe8\xba\xb5\x0d\xc4\xf5\xf5\x9b\x78\xb4\x7d\xaa\xdf\xd2\x7f\xc8\x4e\x2d\xf7\xf8\x7e\xa6\x25\xa9\xa6\xf7\x52\x3e\xd5\xf4\x63\x90\x43\xb1\x19\xe2\x4f\x63\x87\x65\x74\xbf\xaf\xab\xbe\xfc\x65\x50\x84\x31\xcb\x68\xca\x54\x8b\x23\x88\x71\x4f\x91\x47\x4f\xbc\xa4\x72\x6a\xb3\x6a\x4b\x5b\x76\xc2\xd7\xc8\x47\xc4\xec\x99\xad\x23\xe5\x90\xd1\x5a\xc3\xd8\x17\x3e\x7c\x94\x3b\xd3\x07\xa1\xd5\x29\xde\x3d\x7f\xfe\x1c\xd1\xbe\x85\x72\xab\x94\xdd\x32\xa5\xae\xc7\xd6\x3e\x5c\x12\xf5\xba\x86\xb7\xba\x65\xb1\xf7\xa1\xf5\xd6\x11\x6e\xff\xdb\xc0\xdd\xd4\xc0\xec\x9d\x29\x98\x12\x46\x4f\x52\xc1\x86\xa0\x2f\x52\x19\x63\x90\xb3\x51\xec\x18\x9e\xad\xd5\x6e\x2e\xe7\xa7\xe0\x1e\x9e\xbe\x81\xa1\xdc\xb5\x3b\x7a\xa7\x39\xca\x24\xcf\x43\xbb\xb7\x60\xc7\x99\xed\x00\xa4\x1b\x44\x3b\xb6\x34\x39\x88\xbf\xef\xca\x1d\x15\x2e\x0f\x38\xf3\x5d\xb6\xf4\x99\xbe\xc1\xa7\x1b\x2b\x39\x8f\x04\x35\x9a\xbd\xa0\x9f\xda\x09\x25\x68\xd3\x14\xe3\x46\xe9\x53\xb5\xe5\x65\x59\x1f\xb0\xe4\xc1\xa1\x18\xac\xcd\x7f\x42\x4c\x88\xe4\x90\x33\x5f\xe0\x7b\xba\x81\x0a\x3b\x16\x1f\xe3\x74\x23\x28\xa2\xf3\x26\x20\xa6\x57\xbf\xbd\xb9\x1c\x40\x4e\x4c\x50\x4d\x99\x98\xd0\x9a\x32\x31\x7d\x65\x0f\xc8\x75\x01\xfb\x3e\xd3\x3d\x10\xc8\xa3\x1d\x10\x1a\xf2\x5b\xba\x20\x9e\xc9\x82\x94\xda\x8a\x7c\x2b\x33\x46\xe9\x4c\xbe\x63\xa0\xe0\x82\x70\x81\xb2\xfb\xc1\x47\xb5\xd6\x61\x9d\xb5\xec\x5f\x78\x7e\x20\xbe\x05\x01\x3f\x10\x1f\xdd\xc9\xe6\x19\x34\xe9\xba\x9f\xab\x42\xaf\x52\x17\xf8\x2b\x8d\x32\x50\x03\xf1\x25\x1b\x84\x16\xed\x9a\x49\x84\x5b\x39\xe9\xed\x0c\x5f\xd1\xd0\xe9\x44\xe4\xf9\x22\xb0\x7e\x1a\xf2\x03\x57\x92\xc3\x80\x97\x0b\x87\x18\xb3\x44\xbd\x3c\xf3\x57\xa7\xc3\x68\x35\xe8\xcc\xba\xba\x2d\x9d\x89\x4b\x7b\xf3\x86\xe2\x22\xe0\x15\x3f\x11\x6e\x67\x4c\xe5\x91\xf0\x4b\xfa\x18\x74\x22\x2c\x4a\x7b\x32\x2a\x69\x5b\xc1\xec\x18\xe0\x45\x22\xa6\x31\x6e\xd0\xca\xb7\x03\x70\x65\xdc\x43\x76\x6b\x8f\x6c\x06\x33\xc4\xbf\x78\xe7\xd7\x67\x57\x3b\xaf\xcb\x93\x35\x33\x94\xae\x5c\x0c\x83\x95\xcb\xdc\x0c\x66\x8b\x56\xae\x06\xe2\xbf\x1b\xde\x00\x76\x29\xe1\xdc\xb3\xb8\x8e\x68\xaf\xd8\xc9\x29\x1d\x0d\x7a\x78\xef\x96\x20\x68\xb2\x84\x89\xeb\x2d\x63\x80\xf2\x4b\xb9\xd8\x05\xfb\x11\xbf\xc9\xb7\x1a\x00\x7d\x31\x8d\x79\x15\xee\x6a\x5c\x6d\x7a\x25\x31\x01\xcc\xd4\xfd\x60\xd6\x74\xf8\x46\x9a\x8f\xe4\xd1\xfa\x5d\xf5\x50\x7f\x18\xca\x5c\x35\xcc\x3d\x42\x3e\xb3\xb5\x1c\xda\x18\x78\x6f\x18\x6c\x28\x85\x84\x71\xd9\x4f\x91\x9c\xe6\xd2\x26\x1a\x6e\x49\xcd\x96\x59\xd6\x76\x16\xc0\x42\x14\x0f\xde\xea\x91\x36\x48\xfa\xd7\x7c\xb3\x92\x0f\xe2\x0c\xf1\x71\xf0\xbe\x81\xd9\x2d\x03\xff\x9b\xe8\xe0\xd0\x7d\xb9\xe0\x54\x4e\x57\x59\x26\x76\x3d\x92\xcb\x6c\x03\xd8\xc7\x5d\xbb\x78\x7c\x3f\xbc\xae\x92\x4d\x49\xc1\x9d\xa9\x3f\xc5\x77\xa6\x6a\x3b\xec\x52\xce\xbf\xea\x45\x98\xf2\x1d\x96\x2b\xf6\x12\x29\xba\xfb\xa7\xe0\x32\xcc\xe1\xbd\x9e\xc1\xdd\xa5\x4d\xfd\x3d\x05\xb9\x2b\x68\xb4\x7f\xf6\x3d\xc0\x0b\x4e\xa1\x33\x42\xe4\x38\xfa\xf0\x09\x34\x45\x15\x4e\x6a\xf3\x11\x1e\x8f\x27\xfa\xb8\x1b\x51\x51\x51\x23\x44\xe9\xad\x86\x3f\x67\xfe\xa2\x73\x9c\xde\x93\x84\xaa\xd3\x6b\xdd\xe4\x7d\xb9\x9f\xdd\x25\xe7\xc9\x87\xbe\x69\xd6\x1f\x93\x7c\xc9\x7d\xa2\xdf\x04\xaf\x08\x88\xa3\x2f\x9c\xd9\x28\x98\xc8\x27\x87\x7e\xe2\x82\x7f\x22\x2d\x95\x18\x08\xee\x16\xfc\x69\x83\x88\x0d\xe9\x6c\x34\x2d\x39\x62\x85\x08\x7e\xbe\x02\x9f\x05\x3e\x8b\xfc\x80\xaf\x3d\xbe\xf6\x65\xf9\x49\x32\x83\xc3\x50\x76\xd2\xfa\x56\x88\x39\xe0\x9b\x2f\xcb\xe3\x4f\xa9\x47\xaf\xce\xb4\x0f\xdc\x68\xc8\xd5\x69\xbc\x7d\x50\xbc\x3c\x15\xf8\xd4\xbf\x1a\x78\x9f\x37\xd6\x0e\x1a\x85\x10\xc5\x70\xf5\x1a\x25\xc1\xfb\x60\x13\xa4\xcb\x6a\x81\x12\xa6\x58\x6e\x87\x46\x4a\x90\xe2\xda\x7c\x9f\xf9\x76\x69\x08\xb1\xbe\x55\x1a\x22\xf4\x16\x6d\xb3\xe5\xdb\xcd\x3e\xba\x37\x41\xfc\x1d\xf1\xe7\x94\xa6\x17\x88\xe0\xca\x29\x3e\xfa\xc7\x0f\x2f\xc8\xa3\x42\x7c\x30\x6e\xe6\x9e\x23\xaf\xea\xed\xce\xe9\x4f\x7a\x3b\xc5\x83\x5e\xc1\xfc\x2d\x24\xe2\xed\xc9\x17\x3f\xcb\xad\xf8\x34\xba\xd9\x1c\x6b\x00\xf4\xb2\xae\xfa\x7b\xf9\xf0\x5f\xff\x15\xe0\x14\xfc\xb7\x7f\x4b\x2f\x9e\xff\x98\x96\x5f\xf8\x4e\x25\x7e\x23\xf7\x4b\xb5\xd9\x6d\x0c\x8a\x3e\x5f\x44\x80\x7c\x1c\x0e\x7e\x7b\x6a\x03\xd7\x77\xc5\x60\xf8\xfe\xbf\x01\x00\x00\xff\xff\xa4\xd8\xa7\x75\x19\x9b\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 39423, mode: os.FileMode(420), modTime: time.Unix(1440750948, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 39705, mode: os.FileMode(420), modTime: time.Unix(1440769324, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index 7d0d2d96f..e0a3cf8f2 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}pre{font:12px Consolas,"Liberation Mono",Menlo,Courier,monospace}pre.raw{padding:7px 12px;margin:10px 0;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px;font-size:13px;line-height:1.5;overflow:auto}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.red a{color:#d95c5c!important}.ui .text.red a:hover{color:#E67777!important}.ui .text.blue{color:#428bca!important}.ui .text.blue a{color:#15c!important}.ui .text.blue a:hover{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.green{color:#6cc644!important}.ui .text.left{text-align:left!important}.ui .text.right{text-align:right!important}.ui .text.small{font-size:.75em}.ui .text.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.ui .text.thin{font-weight:400}.ui .text.middle{vertical-align:middle}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .info.header{background-color:#d9edf7!important;border-color:#85c5e5}.ui .info.segment{border-color:#85c5e5}.ui .normal.header{font-weight:400}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}.overflow.menu .items{max-height:300px;overflow-y:auto}.overflow.menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.overflow.menu .items .item.active{font-weight:700}.overflow.menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}footer{margin-top:54px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@media only screen and (max-width:991px) and (min-width:768px){.ui.container{width:95%}}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:80px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:80px}.install form label{text-align:right;width:320px!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:335px!important}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.ui.attached.header .right .button{padding:8px 10px;font-weight:400}.repository.new.fork form,.repository.new.migrate form,.repository.new.repo form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message,.repository.new.repo form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header,.repository.new.repo form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label,.repository.new.repo form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help,.repository.new.repo form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon,.repository.new.repo form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text,.repository.new.repo form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i,.repository.new.repo form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title,.repository.new.repo form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea,.repository.new.repo form input,.repository.new.repo form textarea{width:50%!important}.repository.new.repo .selection.dropdown{width:50%!important}.repository.new.repo #auto-init{margin-left:265px!important}.new.webhook form .help{margin-left:25px}.repository{padding-top:15px;padding-bottom:80px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title h1 .ui.input{font-size:.5em;vertical-align:top;width:50%;min-width:600px}.repository.view.issue .title h1 .ui.input input{font-size:1.5em;padding:6px 10px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .title .edit-zone{margin-top:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .actions .item{float:left}.repository.view.issue .comment-list .comment .actions a.item{margin-top:6px;margin-left:10px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .comment .edit.buttons{margin-top:10px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{margin-top:5px;font-size:20px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:35px;color:#6cc644}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository.commits .header .ui.right .search input{font-weight:400;padding:5px 10px}.repository.commits .header .ui.right .button{float:right;margin-left:5px;margin-top:1px}.repository .commits.table{font-size:13px}.repository .commits.table td:first-child,.repository .commits.table th:first-child{padding-left:15px}.repository .commits.table td{line-height:15px}.repository .commits.table .author{min-width:180px}.repository .commits.table .message span{max-width:500px}.repository .commits.table .date{width:120px}.repository .sha.label{font-family:Consolas,Menlo,Monaco,"Lucida Console",monospace;font-size:14px;padding:6px 10px 4px 10px;font-weight:400}.repository .diff-detail-box{margin:15px 0;line-height:30px}.repository .diff-detail-box ol{clear:both;padding-left:0;margin-top:5px;margin-bottom:28px}.repository .diff-detail-box ol li{list-style:none;padding-bottom:4px;margin-bottom:4px;border-bottom:1px dashed #DDD;padding-left:6px}.repository .diff-detail-box span.status{display:inline-block;width:12px;height:12px;margin-right:8px;vertical-align:middle}.repository .diff-detail-box span.status.modify{background-color:#f0db88}.repository .diff-detail-box span.status.add{background-color:#b4e2b4}.repository .diff-detail-box span.status.del{background-color:#e9aeae}.repository .diff-detail-box span.status.rename{background-color:#dad8ff}.repository .diff-box .count{margin-right:12px}.repository .diff-box .count .bar{background-color:#e75316;height:12px;width:40px;display:inline-block;margin:2px 4px 0 4px;vertical-align:text-top}.repository .diff-box .count .bar .add{background-color:#77c64a;height:12px}.repository .diff-box .file{color:#888}.repository .diff-file-box .header{border-bottom:1px solid #d4d4d5!important}.repository .diff-file-box .file-body.file-code .lines-num{text-align:right;color:#999;background:#fafafa;width:1%}.repository .diff-file-box .file-body.file-code .lines-num-old{border-right:1px solid #DDD}.repository .diff-file-box .code-diff{font-size:13px}.repository .diff-file-box .code-diff td{padding:0;border-top:none}.repository .diff-file-box .code-diff pre{margin:0}.repository .diff-file-box .code-diff .lines-num{border-right:1px solid #d4d4d5;padding:0 5px}.repository .diff-file-box .code-diff tbody tr.tag-code pre,.repository .diff-file-box .code-diff tbody tr.tag-code td{background-color:#E0E0E0!important;border-color:#ADADAD!important}.repository .diff-file-box .code-diff tbody tr.del-code pre,.repository .diff-file-box .code-diff tbody tr.del-code td{background-color:#ffe2dd!important;border-color:#e9aeae!important}.repository .diff-file-box .code-diff tbody tr.add-code pre,.repository .diff-file-box .code-diff tbody tr.add-code td{background-color:#d1ffd6!important;border-color:#b4e2b4!important}.repository .diff-file-box .code-diff tbody tr:hover td{background-color:#FFF8D2!important;border-color:#F0DB88!important}.repository .diff-file-box .code-diff tbody tr:hover pre{background-color:transparent!important}.repository .code-view{overflow:auto;overflow-x:auto;overflow-y:hidden}.issue.list{list-style:none;padding-top:15px}.issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.issue.list>.item .title:hover{color:#000}.issue.list>.item .comment{padding-right:10px;color:#666}.issue.list>.item .desc{padding-top:5px;color:#999}.issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.issue.list>.item .desc a.milestone:hover{color:#000!important}.issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.page.buttons{padding-top:15px}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.settings .hook.list>.item:not(:first-child){border-top:1px solid #eaeaea}.settings .hook.list .item{padding:10px 20px}.settings .hook.list .item .fa,.settings .hook.list .item .octicon{width:20px;text-align:center}.settings .hook.history.list .item{padding-left:13px}.settings .hook.history.list .item .meta .ui.right{margin-top:5px}.settings .hook.history.list .item .meta .ui.right .time{font-size:12px}.settings .hook.history.list .item .info{margin-top:10px}.settings .hook.history.list .item .info .tabular.menu .item{font-weight:500}.settings .hook.history.list .item .info .tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none}.settings .hook.history.list .item .info .tab.segment>*{color:#666}.settings .hook.history.list .item .info .tab.segment pre{word-wrap:break-word}.settings .hook.history.list .item .info .tab.segment pre .hljs{padding:0;background-color:inherit}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px}.organization{padding-top:15px;padding-bottom:80px}.organization .head .ui.header .text{vertical-align:middle;font-size:1.6rem;margin-left:15px}.organization .head .ui.header .ui.right{margin-top:5px}.user{padding-top:15px;padding-bottom:80px}.user.settings .key.list .item.ui.grid{margin-top:15px}.dashboard{padding-top:15px;padding-bottom:80px}.dashboard.issues .context.user.menu{min-width:200px}.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}.dashboard.issues .filter.menu .item.active{background-color:#4183c4;color:#FFF}.dashboard.issues .ui.right .head.menu{margin-top:-5px}.dashboard.issues .ui.right .head.menu .item.active{color:#d9453d}.admin{padding-top:15px;padding-bottom:80px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}pre{font:12px Consolas,"Liberation Mono",Menlo,Courier,monospace}pre.raw{padding:7px 12px;margin:10px 0;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px;font-size:13px;line-height:1.5;overflow:auto}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.red a{color:#d95c5c!important}.ui .text.red a:hover{color:#E67777!important}.ui .text.blue{color:#428bca!important}.ui .text.blue a{color:#15c!important}.ui .text.blue a:hover{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.green{color:#6cc644!important}.ui .text.left{text-align:left!important}.ui .text.right{text-align:right!important}.ui .text.small{font-size:.75em}.ui .text.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.ui .text.thin{font-weight:400}.ui .text.middle{vertical-align:middle}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .info.header{background-color:#d9edf7!important;border-color:#85c5e5}.ui .info.segment{border-color:#85c5e5}.ui .normal.header{font-weight:400}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}.overflow.menu .items{max-height:300px;overflow-y:auto}.overflow.menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.overflow.menu .items .item.active{font-weight:700}.overflow.menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}footer{margin-top:54px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@media only screen and (max-width:991px) and (min-width:768px){.ui.container{width:95%}}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:80px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:80px}.install form label{text-align:right;width:320px!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:335px!important}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.ui.attached.header .right .button{padding:8px 10px;font-weight:400}.repository.new.fork form,.repository.new.migrate form,.repository.new.repo form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message,.repository.new.repo form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header,.repository.new.repo form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label,.repository.new.repo form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help,.repository.new.repo form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon,.repository.new.repo form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text,.repository.new.repo form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i,.repository.new.repo form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title,.repository.new.repo form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea,.repository.new.repo form input,.repository.new.repo form textarea{width:50%!important}.repository.new.repo .selection.dropdown{width:50%!important}.repository.new.repo #auto-init{margin-left:265px!important}.new.webhook form .help{margin-left:25px}.new.webhook .events.fields .column{padding-left:40px}.repository{padding-top:15px;padding-bottom:80px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title h1 .ui.input{font-size:.5em;vertical-align:top;width:50%;min-width:600px}.repository.view.issue .title h1 .ui.input input{font-size:1.5em;padding:6px 10px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .title .edit-zone{margin-top:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .actions .item{float:left}.repository.view.issue .comment-list .comment .actions a.item{margin-top:6px;margin-left:10px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .comment .edit.buttons{margin-top:10px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{margin-top:5px;font-size:20px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:35px;color:#6cc644}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository.commits .header .ui.right .search input{font-weight:400;padding:5px 10px}.repository.commits .header .ui.right .button{float:right;margin-left:5px;margin-top:1px}.repository .commits.table{font-size:13px}.repository .commits.table td:first-child,.repository .commits.table th:first-child{padding-left:15px}.repository .commits.table td{line-height:15px}.repository .commits.table .author{min-width:180px}.repository .commits.table .message span{max-width:500px}.repository .commits.table .date{width:120px}.repository .sha.label{font-family:Consolas,Menlo,Monaco,"Lucida Console",monospace;font-size:14px;padding:6px 10px 4px 10px;font-weight:400}.repository .diff-detail-box{margin:15px 0;line-height:30px}.repository .diff-detail-box ol{clear:both;padding-left:0;margin-top:5px;margin-bottom:28px}.repository .diff-detail-box ol li{list-style:none;padding-bottom:4px;margin-bottom:4px;border-bottom:1px dashed #DDD;padding-left:6px}.repository .diff-detail-box span.status{display:inline-block;width:12px;height:12px;margin-right:8px;vertical-align:middle}.repository .diff-detail-box span.status.modify{background-color:#f0db88}.repository .diff-detail-box span.status.add{background-color:#b4e2b4}.repository .diff-detail-box span.status.del{background-color:#e9aeae}.repository .diff-detail-box span.status.rename{background-color:#dad8ff}.repository .diff-box .count{margin-right:12px}.repository .diff-box .count .bar{background-color:#e75316;height:12px;width:40px;display:inline-block;margin:2px 4px 0 4px;vertical-align:text-top}.repository .diff-box .count .bar .add{background-color:#77c64a;height:12px}.repository .diff-box .file{color:#888}.repository .diff-file-box .header{border-bottom:1px solid #d4d4d5!important}.repository .diff-file-box .file-body.file-code .lines-num{text-align:right;color:#999;background:#fafafa;width:1%}.repository .diff-file-box .file-body.file-code .lines-num-old{border-right:1px solid #DDD}.repository .diff-file-box .code-diff{font-size:13px}.repository .diff-file-box .code-diff td{padding:0;border-top:none}.repository .diff-file-box .code-diff pre{margin:0}.repository .diff-file-box .code-diff .lines-num{border-right:1px solid #d4d4d5;padding:0 5px}.repository .diff-file-box .code-diff tbody tr.tag-code pre,.repository .diff-file-box .code-diff tbody tr.tag-code td{background-color:#E0E0E0!important;border-color:#ADADAD!important}.repository .diff-file-box .code-diff tbody tr.del-code pre,.repository .diff-file-box .code-diff tbody tr.del-code td{background-color:#ffe2dd!important;border-color:#e9aeae!important}.repository .diff-file-box .code-diff tbody tr.add-code pre,.repository .diff-file-box .code-diff tbody tr.add-code td{background-color:#d1ffd6!important;border-color:#b4e2b4!important}.repository .diff-file-box .code-diff tbody tr:hover td{background-color:#FFF8D2!important;border-color:#F0DB88!important}.repository .diff-file-box .code-diff tbody tr:hover pre{background-color:transparent!important}.repository .code-view{overflow:auto;overflow-x:auto;overflow-y:hidden}.issue.list{list-style:none;padding-top:15px}.issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.issue.list>.item .title:hover{color:#000}.issue.list>.item .comment{padding-right:10px;color:#666}.issue.list>.item .desc{padding-top:5px;color:#999}.issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.issue.list>.item .desc a.milestone:hover{color:#000!important}.issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.page.buttons{padding-top:15px}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.settings .hook.list>.item:not(:first-child){border-top:1px solid #eaeaea}.settings .hook.list .item{padding:10px 20px}.settings .hook.list .item .fa,.settings .hook.list .item .octicon{width:20px;text-align:center}.settings .hook.history.list .item{padding-left:13px}.settings .hook.history.list .item .meta .ui.right{margin-top:5px}.settings .hook.history.list .item .meta .ui.right .time{font-size:12px}.settings .hook.history.list .item .info{margin-top:10px}.settings .hook.history.list .item .info .tabular.menu .item{font-weight:500}.settings .hook.history.list .item .info .tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none}.settings .hook.history.list .item .info .tab.segment>*{color:#666}.settings .hook.history.list .item .info .tab.segment pre{word-wrap:break-word}.settings .hook.history.list .item .info .tab.segment pre .hljs{padding:0;background-color:inherit}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px}.organization{padding-top:15px;padding-bottom:80px}.organization .head .ui.header .text{vertical-align:middle;font-size:1.6rem;margin-left:15px}.organization .head .ui.header .ui.right{margin-top:5px}.user{padding-top:15px;padding-bottom:80px}.user.settings .key.list .item.ui.grid{margin-top:15px}.dashboard{padding-top:15px;padding-bottom:80px}.dashboard.issues .context.user.menu{min-width:200px}.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}.dashboard.issues .filter.menu .item.active{background-color:#4183c4;color:#FFF}.dashboard.issues .ui.right .head.menu{margin-top:-5px}.dashboard.issues .ui.right .head.menu .item.active{color:#d9453d}.admin{padding-top:15px;padding-bottom:80px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px} \ No newline at end of file diff --git a/public/js/gogs.js b/public/js/gogs.js index 34bd84060..6827aada8 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -367,6 +367,23 @@ function initRepository() { } }; +function initWebhook() { + if ($('.new.webhook').length == 0) { + return; + } + + $('.events.checkbox input').change(function () { + if ($(this).is(':checked')) { + $('.events.fields').show(); + } + }); + $('.non-events.checkbox input').change(function () { + if ($(this).is(':checked')) { + $('.events.fields').hide(); + } + }); +} + $(document).ready(function () { csrf = $('meta[name=_csrf]').attr("content"); @@ -473,4 +490,5 @@ $(document).ready(function () { initCommentForm(); initInstall(); initRepository(); + initWebhook(); }); \ No newline at end of file diff --git a/public/less/_form.less b/public/less/_form.less index a470c6376..920fe4ef1 100644 --- a/public/less/_form.less +++ b/public/less/_form.less @@ -76,4 +76,12 @@ margin-left: 25px; } } +} + +.new.webhook { + .events.fields { + .column { + padding-left: 40px; + } + } } \ No newline at end of file diff --git a/routers/api/v1/repo_hooks.go b/routers/api/v1/repo_hooks.go index 68b483438..2cb71b159 100644 --- a/routers/api/v1/repo_hooks.go +++ b/routers/api/v1/repo_hooks.go @@ -83,7 +83,7 @@ func CreateRepoHook(ctx *middleware.Context, form api.CreateHookOption) { ctx.JSON(422, &base.ApiJsonErr{"missing config option: channel", base.DOC_URL}) return } - meta, err := json.Marshal(&models.Slack{ + meta, err := json.Marshal(&models.SlackMeta{ Channel: channel, }) if err != nil { @@ -141,7 +141,7 @@ func EditRepoHook(ctx *middleware.Context, form api.EditHookOption) { if w.HookTaskType == models.SLACK { if channel, ok := form.Config["channel"]; ok { - meta, err := json.Marshal(&models.Slack{ + meta, err := json.Marshal(&models.SlackMeta{ Channel: channel, }) if err != nil { diff --git a/routers/repo/setting.go b/routers/repo/setting.go index b463b7c6a..fc5e1abc9 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -320,6 +320,18 @@ func WebhooksNew(ctx *middleware.Context) { ctx.HTML(200, orCtx.NewTemplate) } +func ParseHookEvent(form auth.WebhookForm) *models.HookEvent { + return &models.HookEvent{ + PushOnly: form.PushOnly(), + SendEverything: form.SendEverything(), + ChooseEvents: form.ChooseEvents(), + HookEvents: models.HookEvents{ + Create: form.Create, + Push: form.Push, + }, + } +} + func WebHooksNewPost(ctx *middleware.Context, form auth.NewWebhookForm) { ctx.Data["Title"] = ctx.Tr("repo.settings.add_webhook") ctx.Data["PageIsSettingsHooks"] = true @@ -345,13 +357,11 @@ func WebHooksNewPost(ctx *middleware.Context, form auth.NewWebhookForm) { } w := &models.Webhook{ - RepoID: orCtx.RepoID, - URL: form.PayloadURL, - ContentType: contentType, - Secret: form.Secret, - HookEvent: &models.HookEvent{ - PushOnly: form.PushOnly, - }, + RepoID: orCtx.RepoID, + URL: form.PayloadURL, + ContentType: contentType, + Secret: form.Secret, + HookEvent: ParseHookEvent(form.WebhookForm), IsActive: form.Active, HookTaskType: models.GOGS, OrgID: orCtx.OrgID, @@ -385,7 +395,7 @@ func SlackHooksNewPost(ctx *middleware.Context, form auth.NewSlackHookForm) { return } - meta, err := json.Marshal(&models.Slack{ + meta, err := json.Marshal(&models.SlackMeta{ Channel: form.Channel, }) if err != nil { @@ -394,12 +404,10 @@ func SlackHooksNewPost(ctx *middleware.Context, form auth.NewSlackHookForm) { } w := &models.Webhook{ - RepoID: orCtx.RepoID, - URL: form.PayloadURL, - ContentType: models.JSON, - HookEvent: &models.HookEvent{ - PushOnly: form.PushOnly, - }, + RepoID: orCtx.RepoID, + URL: form.PayloadURL, + ContentType: models.JSON, + HookEvent: ParseHookEvent(form.WebhookForm), IsActive: form.Active, HookTaskType: models.SLACK, Meta: string(meta), @@ -491,9 +499,7 @@ func WebHooksEditPost(ctx *middleware.Context, form auth.NewWebhookForm) { w.URL = form.PayloadURL w.ContentType = contentType w.Secret = form.Secret - w.HookEvent = &models.HookEvent{ - PushOnly: form.PushOnly, - } + w.HookEvent = ParseHookEvent(form.WebhookForm) w.IsActive = form.Active if err := w.UpdateEvent(); err != nil { ctx.Handle(500, "UpdateEvent", err) @@ -523,7 +529,7 @@ func SlackHooksEditPost(ctx *middleware.Context, form auth.NewSlackHookForm) { return } - meta, err := json.Marshal(&models.Slack{ + meta, err := json.Marshal(&models.SlackMeta{ Channel: form.Channel, }) if err != nil { @@ -533,9 +539,7 @@ func SlackHooksEditPost(ctx *middleware.Context, form auth.NewSlackHookForm) { w.URL = form.PayloadURL w.Meta = string(meta) - w.HookEvent = &models.HookEvent{ - PushOnly: form.PushOnly, - } + w.HookEvent = ParseHookEvent(form.WebhookForm) w.IsActive = form.Active if err := w.UpdateEvent(); err != nil { ctx.Handle(500, "UpdateEvent", err) diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index b64385088..a8176b50d 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -26,4 +26,22 @@ + + + {{if .RequireHighlightJS}} + + + {{end}} + {{if .RequireMinicolors}} + + + {{end}} + {{if .RequireDatetimepicker}} + + + {{end}} + {{if .RequireDropzone}} + + + {{end}} \ No newline at end of file diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index 8657a5236..ebf98b891 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -25,24 +25,6 @@ - - {{if .RequireHighlightJS}} - - - {{end}} - {{if .RequireMinicolors}} - - - {{end}} - {{if .RequireDatetimepicker}} - - - {{end}} - {{if .RequireDropzone}} - - - {{end}} - {{if .Title}}{{.Title}} - {{end}}{{AppName}} diff --git a/templates/repo/settings/hook_history.tmpl b/templates/repo/settings/hook_history.tmpl index 4c5207ebf..d81c317cb 100644 --- a/templates/repo/settings/hook_history.tmpl +++ b/templates/repo/settings/hook_history.tmpl @@ -28,7 +28,7 @@ {{if .IsSucceed}} {{.ResponseInfo.Status}} {{else}} - 500 + {{.ResponseInfo.Status}} {{end}} {{else}} N/A diff --git a/templates/repo/settings/hook_settings.tmpl b/templates/repo/settings/hook_settings.tmpl index c1435acca..18a480e01 100644 --- a/templates/repo/settings/hook_settings.tmpl +++ b/templates/repo/settings/hook_settings.tmpl @@ -1,14 +1,52 @@

{{.i18n.Tr "repo.settings.event_desc"}}

-
-
-
- - -
-
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+ +
+ +
+
+
+ + + {{.i18n.Tr "repo.settings.event_create_desc"}} +
+
+
+ +
+
+
+ + + {{.i18n.Tr "repo.settings.event_push_desc"}} +
+
+
+
+ +
+