From b615d670b3c49c077731d3b2fe28ba267bd1b83a Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 11 Mar 2017 18:41:32 -0500 Subject: [PATCH] webhook: add Release event (#2387) --- conf/locale/locale_en-US.ini | 2 + models/issue.go | 3 +- models/release.go | 73 +++++++++++++++++-- models/webhook.go | 9 +++ models/webhook_discord.go | 18 +++++ models/webhook_slack.go | 11 +++ modules/bindata/bindata.go | 20 ++--- modules/form/repo.go | 1 + public/css/gogs.css | 34 ++++----- public/less/_admin.less | 4 - public/less/_repository.less | 4 +- routers/repo/release.go | 4 +- routers/repo/webhook.go | 1 + templates/repo/settings/webhook_settings.tmpl | 10 +++ .../github.com/gogits/go-gogs-client/gogs.go | 2 +- .../gogits/go-gogs-client/release.go | 22 ++++++ .../gogits/go-gogs-client/repo_hook.go | 27 +++++++ vendor/vendor.json | 6 +- 18 files changed, 202 insertions(+), 49 deletions(-) create mode 100644 vendor/github.com/gogits/go-gogs-client/release.go diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index e3bf2d5dd..f67133433 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -776,6 +776,8 @@ settings.event_issue_comment = Issue Comment settings.event_issue_comment_desc = Issue comment created, edited, or deleted. settings.event_pull_request = Pull Request settings.event_pull_request_desc = Pull request opened, closed, reopened, edited, assigned, unassigned, label updated, label cleared, milestoned, demilestoned, or synchronized. +settings.event_release = Release +settings.event_release_desc = Release published in 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/issue.go b/models/issue.go index 89c72f487..8cf5add3c 100644 --- a/models/issue.go +++ b/models/issue.go @@ -12,9 +12,10 @@ import ( "github.com/Unknwon/com" "github.com/go-xorm/xorm" - api "github.com/gogits/go-gogs-client" log "gopkg.in/clog.v1" + api "github.com/gogits/go-gogs-client" + "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/setting" ) diff --git a/models/release.go b/models/release.go index 53b2e631d..081923700 100644 --- a/models/release.go +++ b/models/release.go @@ -11,8 +11,10 @@ import ( "time" "github.com/go-xorm/xorm" + log "gopkg.in/clog.v1" "github.com/gogits/git-module" + api "github.com/gogits/go-gogs-client" "github.com/gogits/gogs/modules/process" ) @@ -21,6 +23,7 @@ import ( type Release struct { ID int64 `xorm:"pk autoincr"` RepoID int64 + Repo *Repository `xorm:"-"` PublisherID int64 Publisher *User `xorm:"-"` TagName string @@ -52,6 +55,13 @@ func (r *Release) AfterSet(colName string, _ xorm.Cell) { } func (r *Release) loadAttributes(e Engine) (err error) { + if r.Repo == nil { + r.Repo, err = getRepositoryByID(e, r.RepoID) + if err != nil { + return fmt.Errorf("getRepositoryByID [repo_id: %d]: %v", r.RepoID, err) + } + } + if r.Publisher == nil { r.Publisher, err = getUserByID(e, r.PublisherID) if err != nil { @@ -59,7 +69,7 @@ func (r *Release) loadAttributes(e Engine) (err error) { r.PublisherID = -1 r.Publisher = NewGhostUser() } else { - return fmt.Errorf("getUserByID.(Publisher) [%d]: %v", r.PublisherID, err) + return fmt.Errorf("getUserByID.(Publisher) [publisher_id: %d]: %v", r.PublisherID, err) } } } @@ -71,6 +81,22 @@ func (r *Release) LoadAttributes() error { return r.loadAttributes(x) } +// This method assumes some fields assigned with values: +// Required - Publisher +func (r *Release) APIFormat() *api.Release { + return &api.Release{ + ID: r.ID, + TagName: r.TagName, + TargetCommitish: r.Target, + Name: r.Title, + Body: r.Note, + Draft: r.IsDraft, + Prerelease: r.IsPrerelease, + Author: r.Publisher.APIFormat(), + Created: r.Created, + } +} + // IsReleaseExist returns true if release with given tag name already exists. func IsReleaseExist(repoID int64, tagName string) (bool, error) { if len(tagName) == 0 { @@ -113,6 +139,17 @@ func createTag(gitRepo *git.Repository, r *Release) error { return nil } +func (r *Release) preparePublishWebhooks() { + if err := PrepareWebhooks(r.Repo, HOOK_EVENT_RELEASE, &api.ReleasePayload{ + Action: api.HOOK_RELEASE_PUBLISHED, + Release: r.APIFormat(), + Repository: r.Repo.APIFormat(nil), + Sender: r.Publisher.APIFormat(), + }); err != nil { + log.Error(2, "PrepareWebhooks: %v", err) + } +} + // CreateRelease creates a new release of repository. func CreateRelease(gitRepo *git.Repository, r *Release) error { isExist, err := IsReleaseExist(r.RepoID, r.TagName) @@ -126,8 +163,20 @@ func CreateRelease(gitRepo *git.Repository, r *Release) error { return err } r.LowerTagName = strings.ToLower(r.TagName) - _, err = x.InsertOne(r) - return err + if _, err = x.Insert(r); err != nil { + return fmt.Errorf("Insert: %v", err) + } + + // Only send webhook when actually published, skip drafts + if r.IsDraft { + return nil + } + r, err = GetReleaseByID(r.ID) + if err != nil { + return fmt.Errorf("GetReleaseByID: %v", err) + } + r.preparePublishWebhooks() + return nil } // GetRelease returns release by given ID. @@ -205,12 +254,22 @@ func SortReleases(rels []*Release) { } // UpdateRelease updates information of a release. -func UpdateRelease(gitRepo *git.Repository, rel *Release) (err error) { - if err = createTag(gitRepo, rel); err != nil { +func UpdateRelease(doer *User, gitRepo *git.Repository, r *Release, isPublish bool) (err error) { + if err = createTag(gitRepo, r); err != nil { + return fmt.Errorf("createTag: %v", err) + } + + r.PublisherID = doer.ID + if _, err = x.Id(r.ID).AllCols().Update(r); err != nil { return err } - _, err = x.Id(rel.ID).AllCols().Update(rel) - return err + + if !isPublish { + return nil + } + r.Publisher = doer + r.preparePublishWebhooks() + return nil } // DeleteReleaseOfRepoByID deletes a release and corresponding Git tag by given ID. diff --git a/models/webhook.go b/models/webhook.go index 32c3ab34d..86beeb87a 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -69,6 +69,7 @@ type HookEvents struct { Issues bool `json:"issues"` IssueComment bool `json:"issue_comment"` PullRequest bool `json:"pull_request"` + Release bool `json:"release"` } // HookEvent represents events that will delivery hook. @@ -196,6 +197,12 @@ func (w *Webhook) HasPullRequestEvent() bool { (w.ChooseEvents && w.HookEvents.PullRequest) } +// HasReleaseEvent returns true if hook enabled release event. +func (w *Webhook) HasReleaseEvent() bool { + return w.SendEverything || + (w.ChooseEvents && w.HookEvents.Release) +} + type eventChecker struct { checker func() bool typ HookEventType @@ -211,6 +218,7 @@ func (w *Webhook) EventsArray() []string { {w.HasIssuesEvent, HOOK_EVENT_ISSUES}, {w.HasIssueCommentEvent, HOOK_EVENT_ISSUE_COMMENT}, {w.HasPullRequestEvent, HOOK_EVENT_PULL_REQUEST}, + {w.HasReleaseEvent, HOOK_EVENT_RELEASE}, } for _, c := range eventCheckers { if c.checker() { @@ -381,6 +389,7 @@ const ( HOOK_EVENT_ISSUES HookEventType = "issues" HOOK_EVENT_ISSUE_COMMENT HookEventType = "issue_comment" HOOK_EVENT_PULL_REQUEST HookEventType = "pull_request" + HOOK_EVENT_RELEASE HookEventType = "release" ) // HookRequest represents hook task request information. diff --git a/models/webhook_discord.go b/models/webhook_discord.go index 0e9a36f2b..e403399a7 100644 --- a/models/webhook_discord.go +++ b/models/webhook_discord.go @@ -353,6 +353,22 @@ func getDiscordPullRequestPayload(p *api.PullRequestPayload, slack *SlackMeta) ( }, nil } +func getDiscordReleasePayload(p *api.ReleasePayload) (*DiscordPayload, error) { + repoLink := DiscordLinkFormatter(p.Repository.HTMLURL, p.Repository.Name) + refLink := DiscordLinkFormatter(p.Repository.HTMLURL+"/src/"+p.Release.TagName, p.Release.TagName) + content := fmt.Sprintf("Published new release %s of %s", refLink, repoLink) + return &DiscordPayload{ + Embeds: []*DiscordEmbedObject{{ + Description: content, + URL: setting.AppUrl + p.Sender.UserName, + Author: &DiscordEmbedAuthorObject{ + Name: p.Sender.UserName, + IconURL: p.Sender.AvatarUrl, + }, + }}, + }, nil +} + func GetDiscordPayload(p api.Payloader, event HookEventType, meta string) (payload *DiscordPayload, err error) { slack := &SlackMeta{} if err := json.Unmarshal([]byte(meta), &slack); err != nil { @@ -374,6 +390,8 @@ func GetDiscordPayload(p api.Payloader, event HookEventType, meta string) (paylo payload, err = getDiscordIssueCommentPayload(p.(*api.IssueCommentPayload), slack) case HOOK_EVENT_PULL_REQUEST: payload, err = getDiscordPullRequestPayload(p.(*api.PullRequestPayload), slack) + case HOOK_EVENT_RELEASE: + payload, err = getDiscordReleasePayload(p.(*api.ReleasePayload)) } if err != nil { return nil, fmt.Errorf("event '%s': %v", event, err) diff --git a/models/webhook_slack.go b/models/webhook_slack.go index d1134ed81..46e8ef9ad 100644 --- a/models/webhook_slack.go +++ b/models/webhook_slack.go @@ -277,6 +277,15 @@ func getSlackPullRequestPayload(p *api.PullRequestPayload, slack *SlackMeta) (*S }, nil } +func getSlackReleasePayload(p *api.ReleasePayload) (*SlackPayload, error) { + repoLink := SlackLinkFormatter(p.Repository.HTMLURL, p.Repository.Name) + refLink := SlackLinkFormatter(p.Repository.HTMLURL+"/src/"+p.Release.TagName, p.Release.TagName) + text := fmt.Sprintf("[%s] new release %s published by %s", repoLink, refLink, p.Sender.UserName) + return &SlackPayload{ + Text: text, + }, nil +} + func GetSlackPayload(p api.Payloader, event HookEventType, meta string) (payload *SlackPayload, err error) { slack := &SlackMeta{} if err := json.Unmarshal([]byte(meta), &slack); err != nil { @@ -298,6 +307,8 @@ func GetSlackPayload(p api.Payloader, event HookEventType, meta string) (payload payload, err = getSlackIssueCommentPayload(p.(*api.IssueCommentPayload), slack) case HOOK_EVENT_PULL_REQUEST: payload, err = getSlackPullRequestPayload(p.(*api.PullRequestPayload), slack) + case HOOK_EVENT_RELEASE: + payload, err = getSlackReleasePayload(p.(*api.ReleasePayload)) } if err != nil { return nil, fmt.Errorf("event '%s': %v", event, err) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index a5f23e7c2..72325ec00 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -307,7 +307,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 15007, mode: os.FileMode(420), modTime: time.Unix(1489206524, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 15007, mode: os.FileMode(420), modTime: time.Unix(1489214583, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3607,7 +3607,7 @@ func confGitignoreMacos() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/macOS", size: 380, mode: os.FileMode(420), modTime: time.Unix(1488676657, 0)} + info := bindataFileInfo{name: "conf/gitignore/macOS", size: 380, mode: os.FileMode(420), modTime: time.Unix(1489214412, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4367,12 +4367,12 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 63588, mode: os.FileMode(420), modTime: time.Unix(1488861442, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 63588, mode: os.FileMode(420), modTime: time.Unix(1489214412, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\xeb\x72\x1c\x37\xb2\x30\xf8\xbf\x9e\x02\xd6\x09\x86\xec\x08\xaa\x15\x9e\xf9\xce\xb7\x1b\x0e\xd3\x5e\x9a\xb2\x2e\xe7\x50\x97\x23\x4a\x33\xdf\xac\x42\x51\x46\x57\xa1\xbb\x31\xac\x06\x6a\x0a\x28\xb6\xda\x13\xf3\x06\xfb\x00\xfb\x7c\xfb\x24\x1b\x79\xc1\xad\xaa\x9a\x92\x66\xce\xf7\x87\xec\x02\x12\x09\x20\x01\x24\x32\x13\x89\x84\xec\xfb\xba\x55\xae\x11\x17\xe2\x52\xf4\x52\x9b\x4e\x39\x27\x9c\xea\x36\x8f\x76\xd6\x79\xd5\x8a\x67\xda\x0b\xa7\x86\x3b\xdd\xa8\xaa\xda\xd9\xbd\x12\x17\xe2\xb9\xdd\xab\xaa\x95\x6e\xb7\xb6\x72\x68\xc5\x85\x78\x12\x7e\x57\xea\x53\xdf\xd9\x01\x80\x7e\xa5\x5f\xd5\x4e\x75\x3d\x94\x51\x5d\x5f\x39\xbd\x35\xb5\x36\xe2\x42\xdc\xe8\xad\x11\x2f\x0c\xa5\xd8\xd1\x87\xa4\xd7\xa3\xa7\xb4\xb1\x0f\x49\xef\xfb\x6a\x50\x5b\xed\xbc\x1a\xc4\x85\x78\xcb\x3f\xab\x83\x5a\x3b\xed\xa1\xa6\x3f\xd3\xaf\xea\x4e\x0d\x4e\x5b\xc0\xfe\x27\xfa\x55\xf5\x72\x0b\x00\x6f\xe4\x56\x55\x5e\xed\xfb\x4e\x62\x81\x77\xfc\xb3\xea\xa4\xd9\x8e\x04\x73\xcd\x3f\xab\x66\x50\xd2\xab\xda\xa8\x83\xb8\x10\x57\xf8\xb1\x5a\xad\xaa\xd1\xa9\xa1\xee\x07\xbb\xd1\x9d\xaa\xa5\x69\xeb\x3d\x75\xf3\xbd\x53\x83\xe0\x74\x21\x4d\x2b\x20\x1d\xbb\xa0\xda\x5a\x9b\x5a\x3a\xee\x87\x6a\x85\x36\x42\xba\x0a\x51\x19\xb9\x0f\xa5\xe1\x67\xa5\xf6\x52\x77\x40\x35\xf8\x5f\xf5\xd2\xb9\x83\x45\xd2\xbe\xe1\x9f\xd5\xa0\x6a\x7f\xec\x15\x92\xe0\xd1\xbb\x63\xaf\xaa\x46\xf6\xbe\xd9\x49\x68\x26\xfd\xaa\xaa\x41\xf5\xd6\x69\x6f\x87\x23\xc2\x85\x8f\xca\x0e\x5b\x69\xf4\xef\xd2\x13\x7d\x5e\x67\x9f\xd5\x5e\x0f\x83\x05\xd2\xbe\xc4\x1f\x95\x51\x87\x1a\xf0\x88\x0b\xf1\x4a\x1d\x72\x2c\x90\xb3\xd7\xdb\x81\xa8\x08\x99\x2f\xf1\x0b\xb0\x50\x1e\x63\xa2\xac\x88\x6d\x63\x87\x5b\x4e\x7d\x0a\x3f\x27\x28\xed\xb0\xe5\xdc\xb2\x5d\xd2\xc8\xad\xe2\xdc\x97\xf8\x51\x00\xb8\x4a\xb6\x7b\x6d\xea\x5e\x1a\x05\xa4\xbb\x84\x2f\xf1\x06\xbe\x2a\xd9\x34\x76\x34\xbe\x76\xca\x7b\x6d\xb6\x30\x06\x97\x94\x24\x6e\x38\xa9\xca\xf2\x62\xda\xd1\x8e\x71\x94\xc5\x85\xf8\x8b\x1d\x07\xf1\x86\x3e\x29\x2f\x2b\x84\x99\xb1\x64\x25\x1b\xaf\xef\xb4\xd7\x8a\x2a\x0b\x1f\x55\x3f\x76\x5d\x3d\xa8\xbf\x8d\xca\x79\xc8\x7a\x33\x76\x9d\x78\xcb\xdf\x95\x76\x6e\xc4\x12\x2f\xf0\x47\x55\x35\xd2\x34\xd8\x9d\x2b\xfc\x51\x55\x1f\xb4\x71\x5e\x76\xdd\xc7\x8a\x7f\x00\x30\xfd\x22\x3a\x79\xed\xb1\xb1\x9c\x28\x6e\xbc\xea\x1d\x10\x5a\x3c\xd5\x83\xf3\x8f\xbc\xde\x2b\xf1\x76\x34\x55\x6b\x9b\x5b\x35\xd4\xb0\x20\x71\x29\xbd\xd8\x88\xa3\x1d\x1f\x0e\x4a\x0c\xa3\x31\xda\x6c\xc5\x33\xbb\x75\x42\x1b\xa7\x5b\x25\x9e\x20\xf4\xb9\xe8\x3b\x25\x9d\x12\x83\x92\xad\xf8\x51\x0a\x2f\x87\xad\xf2\x17\x0f\xea\x75\x27\xcd\xed\x03\xb1\x1b\xd4\xe6\xe2\xc1\x99\x7b\xf0\xd3\xb3\x51\xb7\xaa\xd3\x46\xb9\x1f\x1f\xcb\x9f\x44\x23\x07\xb5\x19\xbb\xee\x28\xd6\x6a\x03\x6b\xe5\x68\x47\xd1\xec\xa4\xd9\xc2\x3a\x39\xfa\x1d\x54\xa8\x8d\xf0\x3b\xed\x04\x2c\xd4\x6f\x2a\xa0\x92\xf6\xaa\x6e\xd7\x81\x29\x61\x83\x30\x79\x50\x4e\xbc\x3c\xde\xfc\xd7\xf5\xb9\x78\x63\x9d\xdf\x0e\x0a\x7f\xdf\xfc\xd7\xb5\xf6\xea\x8f\xe7\xe2\xe5\xcd\xcd\x7f\x5d\x0b\x3b\x88\x77\xfa\xc9\x2f\xab\xaa\x5d\xd7\x81\x2e\x4f\xa4\x97\x6b\xe8\x42\x1c\x2b\xc8\xa4\xa5\x14\xf3\x70\x41\x01\xcb\x43\xf6\xe6\x3c\x2e\x52\x5e\xa0\x8b\xcb\xb1\x5d\xd7\xbc\x86\x23\x8e\x57\xb0\x90\xdb\x75\x22\xf0\x1b\x22\xdd\xe8\x94\x78\xf1\xea\xd5\xeb\x27\xbf\x08\x65\xb6\xda\x28\x71\xd0\x7e\x27\x46\xbf\xf9\x3f\xeb\xad\x32\x6a\x90\x5d\xdd\x68\xa0\xcd\xe0\x94\x17\x1b\x3b\x50\x4f\x57\x95\x73\x5d\xbd\xb7\x2d\xd4\x72\x73\x73\x2d\x5e\xda\x56\x55\xbd\xf4\x3b\x6c\x88\xdf\x55\xee\x6f\x1d\xd0\x2b\x56\xf8\x6e\xa7\x04\x4e\x5d\x04\xb2\x9b\x40\x1e\xd1\x72\x1b\x57\xe2\xc7\xf5\xf0\x53\xd6\x2e\xb9\x76\xb6\x1b\x3d\x97\x38\xec\x94\xc1\x71\x72\x5e\x0e\x5e\x48\x17\x58\xff\xaa\x52\xc3\x50\xab\x7d\xef\x8f\x30\x3a\xdc\x86\x29\x76\x42\xd2\x48\x63\xac\x17\x6b\x25\x10\x7e\x55\x19\x5b\xd3\x4a\x05\xb6\xd9\x6a\x27\xd7\x9d\xaa\x89\xa5\x0f\x81\x23\xfd\x05\x26\x07\x15\x64\x08\x51\x40\x00\xc5\x60\x9b\x40\xee\x0c\x33\x47\x1a\x81\x48\x05\x2f\xf5\xbc\x85\x81\x2f\xc4\x51\x23\xd6\x10\x13\x66\x2d\xac\xc2\x30\x84\x39\x73\xd9\xf7\x9d\x6e\xa8\xea\x67\x94\x97\xa6\x0f\x6c\x9a\x3c\xf6\x39\x1c\x0e\x7f\xc8\xcb\x26\xc1\xe8\x81\xa4\x83\x28\x78\x30\x96\xdf\xa9\x41\x89\xdd\xb8\xa5\x8d\xa3\xb3\x63\xfb\x0d\x72\xf0\x40\xdf\xc4\x27\xc5\x5b\x6b\x3d\x8d\x79\x04\x48\x55\x5c\x76\x1d\xee\xd3\x83\xda\x5b\x0f\x84\xe3\x62\xc0\x8b\x0e\xba\xeb\xa0\xa7\x4e\xde\xa9\x56\x78\x4b\xeb\xad\xd5\x83\x6a\x00\xf1\xaa\x1a\x46\x53\xf3\x64\x7f\x3b\x1a\x9a\xf0\x21\xad\x9c\x59\x08\xb5\x1f\x9d\x17\x3b\x79\xa7\x80\xf0\x20\x2c\x78\xbb\xd8\x4e\xec\xd2\x30\x1a\x5c\xc2\xab\xaa\xb5\x7b\x89\x1b\xff\x13\xfc\xc1\xdf\x39\x7e\xed\x84\xdc\x6c\x54\xe3\x9d\xb8\xb9\x79\x2e\x9a\xce\x1a\x25\xde\xbf\xbd\x76\xb0\x0c\x76\x75\x6f\x07\x14\x12\x6e\x9e\x8b\x37\x76\xf0\x31\x2d\x23\x34\x40\x98\x71\xbf\x56\x83\x38\xec\x74\xb3\x23\xb2\x43\x09\x98\xc5\x6a\x10\xda\x89\xd1\x69\xb3\x3d\x17\x9d\x82\x1e\x68\x4f\x13\x00\xfa\x10\x66\x1d\x80\x6f\x94\xf4\xe3\xa0\x70\xd3\xaf\xd7\xa3\xee\xbc\x36\x35\x54\xc8\x78\x90\x2d\x88\x5f\x28\x03\x4b\xdc\x60\xc6\x09\xf8\xba\xb7\x3d\x89\x33\xb8\xaa\xd6\x59\x39\x46\x08\x4b\x1e\x06\xd0\xf6\x8a\xe6\xbb\xe3\x26\xc1\x84\x1b\xb5\xdb\x89\xcd\x60\xf7\xc2\x1d\x9d\x57\x7b\x2c\xd8\x4a\xb5\xb7\x66\x55\xed\xbc\xef\x03\x6d\x9e\xbf\x7b\xf7\x86\x88\x13\x53\xef\xa3\x8e\xcc\xe6\x2e\xce\x92\x0e\x04\x2b\x23\x00\x2d\x4c\xe3\x71\xe8\x26\x33\xfc\xfd\xdb\xeb\x90\x73\x62\xe4\xa0\x09\x8f\xe1\xcf\x4d\x1a\x40\x9c\x09\xce\xee\xd5\x01\xe7\xbb\x36\x02\x85\x9d\x55\xd5\xd9\x6d\x3d\x58\xeb\xc3\x74\xbf\xb6\x5b\x9a\xe2\x45\x46\xaa\xe9\x49\x98\xb4\x40\x9c\xc3\x00\xc2\x5f\x67\xb7\xc8\xf0\x80\x5e\xab\xaa\xb2\x3d\xb4\x33\x5b\xc7\xaf\x39\x21\x2d\x5e\xac\x3b\xe6\xa3\xb8\x85\xa3\xa7\x9b\x6c\x83\x70\x7b\xdf\xd7\xbc\x1b\xdc\xbc\x7c\xf7\x86\xb6\x04\x4c\xc5\x81\xb8\x10\x4f\x07\xbb\x4f\x09\xa9\x8d\x2f\x01\x1f\xc2\xc8\xb6\x1d\x94\x73\xe7\xe2\xed\xd3\x2b\xf1\xef\x7f\xfc\xc3\x1f\x56\xe2\x85\x07\xd6\x03\xab\xf1\xaf\xb0\x8a\x24\x53\x22\x81\xda\x41\xf8\x9d\x12\x0f\x80\x95\x3c\x10\x3f\x62\xee\xff\xa5\x3e\xc9\x7d\xdf\xa9\x55\x63\xf7\x3f\xc1\x4c\xd9\x4b\xbf\xaa\x20\x47\x0d\x61\xe1\xde\x28\xd3\xaa\x81\x85\x47\xce\xca\xd8\x1f\x67\x67\xa2\x24\xc9\xd0\x75\x63\xcd\x46\x0f\xd0\x9f\x5f\x0d\xce\xfe\x20\x5d\x8b\x2b\xca\x09\x92\x98\xee\x6a\x63\xbd\xde\x1c\x13\x28\xf6\xf4\x15\x24\xf2\xf4\xa8\x78\xb6\xf3\x96\x11\x69\x4c\x6b\x03\x67\xc1\x6b\xbf\x53\x43\x20\xb7\x4b\xf4\xb6\x9b\x0d\x08\x0e\x61\xaf\xe3\x1a\x5e\x53\x2a\x6d\x7b\x39\x48\x5c\x50\x4f\x78\xd1\x5e\x3d\x79\x25\xd4\x9d\x32\x30\xb9\xfa\xc1\xb6\x63\x83\xf3\x15\x60\xcf\x05\xc8\x44\x83\x72\x76\x1c\x1a\xc5\x93\x25\x32\x45\x68\x1a\x70\xde\x46\x76\xdd\x71\x55\x85\xcd\x69\x3b\xc8\x3b\xe9\xe5\x90\x55\xf1\x2c\x24\x71\xeb\x67\xb0\xb3\x46\xc5\x12\xd0\xf3\x66\x74\x1e\x56\x30\xb6\xc2\x51\xa3\x28\xdb\x09\x39\x28\x31\xf6\x9d\x95\xad\x6a\xc5\xfa\x88\x7c\xd6\xc1\x5c\x68\xd5\x46\x8e\x9d\x5f\x55\x1b\xd5\x02\x63\x50\x6d\xcd\x75\x75\xd6\xde\x62\x65\x4c\xaa\xa7\x01\x40\x5c\x32\xd2\x6b\x84\x38\x55\x32\x36\x96\xcb\x47\xb0\xd8\x28\xae\xc1\x5b\x14\x13\x52\xbe\xed\x95\xe1\x6e\x04\xe1\x40\xc0\xde\xdf\x0a\x6b\x44\xa7\xd7\xdc\xe9\x44\xcb\xc9\x46\x1f\xa8\x73\x03\x3a\x66\x9e\xb7\x58\x60\x46\x54\x9c\xf0\x6e\x5a\xf6\x5c\x58\xd3\x1d\x59\x20\x80\x25\x46\x4a\x5c\x90\x0d\xdc\xaa\x52\xd8\xcf\x3a\xa9\x4c\xdc\xf1\xa0\x39\x95\xf9\xb1\xda\xb7\x24\x7a\x8a\x3b\xd9\xe9\x16\x30\x06\x04\xc0\xb1\x97\xdb\xb2\xaa\x58\x5e\xad\x59\xdb\xad\xef\x34\xea\x92\x71\x89\x11\x4a\xd6\x80\x81\xc2\x7f\x02\x00\x50\x52\xdd\x62\xd9\xd8\x9a\xd7\xd0\x49\x17\x75\x49\x9a\x27\xd0\x5d\xac\x01\x64\x68\x77\x2e\xee\x34\x6e\xc5\x3c\xc9\x91\x2e\x6b\x90\xf3\x3a\x05\x55\x39\xa5\x10\x83\xd0\xe6\xf1\xd8\x53\x99\x15\x2b\x52\xac\xdb\x04\xd9\x1b\x44\xb2\xd6\x0a\x90\x94\x70\xbf\xf7\x36\x92\x75\x22\x7b\x89\x41\x6f\x77\x5e\x18\x7b\x38\x27\xa2\x1c\x76\x56\xc1\x9a\x7f\xf1\xe4\xe2\x7b\x6a\xc7\x16\x76\xff\x58\x08\xe4\x06\x39\x7a\x0b\xfc\x85\x97\x1e\x35\x21\xca\x5f\x08\x39\x53\xd9\x08\x68\xaa\x3b\xcf\xc4\xbd\xc8\xe8\x98\xbf\xe5\x79\xcc\xd8\x12\x0c\x95\x0e\xfa\x37\x55\x4c\x8c\x94\xf5\xad\x7a\x6b\x51\xdf\x0b\xfa\x15\x08\x34\x95\x57\xce\xd7\x5b\xed\xeb\x0d\x70\x5b\x40\xfc\x14\x10\x80\x7c\xa5\x9c\x17\x0f\xb7\xda\x3f\x14\x8d\xdd\xef\xa5\x69\x7f\x10\x67\x77\x2c\xaa\xff\x11\xd8\x28\x2c\x45\xdd\xe1\x88\xb0\x16\x39\x28\x92\xc8\x83\x05\xa3\xb5\xca\x21\xe1\xdd\xd8\xe3\xe6\x1e\xd5\x1c\xd6\xc6\x5a\x7b\x30\xc0\x30\x70\xbb\xb0\x9b\x8d\x6e\xb4\xec\xc4\x5a\x1b\x39\x1c\x23\x16\xdc\x86\xce\xdc\xb9\x78\xf5\xfa\x1d\x02\x6e\x2d\xc8\x1e\x6d\x00\x58\x55\xda\xe0\xc4\x06\x91\x9e\x07\x3f\xd7\x67\x42\x92\xa6\xb6\x34\x76\x80\xfd\x17\x7b\x13\x0a\x9e\x90\x56\x61\xf3\x26\x65\x40\x83\x3e\x89\xb0\x58\x2e\x0a\x96\x40\x86\xbd\xf4\xcd\x8e\xc5\x4e\x9c\x36\xda\x99\x87\x1e\x5b\xda\x8c\xc3\xa0\x8c\xc7\xe4\x1f\xc4\x99\x13\x8f\x7e\x12\x67\x2e\x56\x9b\xef\xc4\xb8\x3f\xc3\x76\x2c\x36\x5a\x75\x6d\x68\x6d\xaa\x13\x24\x5f\xda\xe9\xb6\xf3\xd1\x82\x4c\x41\x99\x23\xad\xdf\xa2\x7f\xc5\xc2\x88\xd3\x23\x4c\xfb\x8c\x40\x79\x27\xc3\xbc\x71\x23\xcd\xf4\x0b\xf1\x67\xd5\x35\x76\xaf\xbe\x11\x7f\x56\xa0\x6e\x6f\x3b\x1c\x39\xe9\x59\x27\xb6\x4e\xe1\xac\x3a\xa7\x85\xb6\x19\x0d\xee\x19\x5e\xde\x2a\x54\xa3\xd3\x40\x2d\x89\x4c\x27\x89\x5d\x7d\xd8\xd9\xbd\xfa\x58\x8d\xa4\x90\xd8\xae\x8d\x2a\x2d\x2e\x21\x3b\x90\xfc\x11\xf5\xdb\x04\x13\x57\x87\x3b\x68\xdf\xec\xea\x68\xec\x03\x42\x7a\xf5\x09\x05\x23\xcc\x4a\xb6\x3f\x58\x5a\x90\x55\xed\x8f\x38\x2f\xa0\xe3\x2f\x8f\x69\x5a\x68\xe5\x2a\xb7\xb3\x07\xb4\x9c\x45\x88\x9b\x9d\x3d\xa0\xcd\xac\x50\x5b\x56\xab\x55\xd5\xd8\xae\x93\x6b\x0b\xa3\x72\x97\xe0\xaf\xf2\xd4\x12\xf9\xfe\x58\xdb\x61\xcb\xd5\x96\x96\xa2\xfd\x91\x8d\x53\x9c\x4b\xc6\x29\x57\x21\x7b\x65\xab\x26\x72\xe1\x33\x57\xb1\x4d\x66\xa5\x4d\x8d\x26\x9f\x50\xf3\x0b\x43\x0a\x45\xde\xce\xaa\xfa\xc0\x16\xcf\x8f\x55\x80\x2b\xda\x44\x3c\x9a\x88\xee\x0a\x33\x9c\x9b\xd8\xe1\x5c\xe5\x94\x1c\x70\x41\xdc\xe0\x8f\xaa\xfa\x20\x47\xbf\xfb\x98\x59\x24\xeb\x30\xf3\x82\x65\x12\xad\x66\xcc\x26\x93\x58\xb7\x53\x3d\x48\x80\x7b\x87\x53\xb6\x1b\x94\x6c\x8f\xac\xb3\xc5\xc9\xfb\x33\x6d\x40\xda\x00\xdb\xfe\xa6\x72\x16\x38\x48\xfd\x95\x28\x7e\xd1\xa6\xa5\xf2\xe5\xe6\x4d\xa6\xd2\x7d\x8f\xd3\xc4\x0e\xc3\xf1\xbc\xd4\xe6\x77\xd2\x89\xb5\x52\x26\x68\x5d\xed\x2a\xd8\x4a\x60\x7a\xc9\x86\x98\x00\x9a\x77\x71\x05\x52\x49\x3b\x93\x2a\xa0\x85\xc4\xb7\xb9\x16\x62\xe3\x2e\x08\x98\x20\x59\x7d\x75\x15\x83\xda\x2b\x50\x93\xea\x3d\x19\x5b\xe9\x4b\xbc\x54\xd5\xc6\x0e\x5b\x5c\x7b\xb4\x38\x2e\xc4\x53\x4c\x48\xab\x05\x00\x94\xcf\xb7\x1b\x86\x08\x29\x3f\x07\xe3\x76\x6d\xec\x01\x8d\x9e\x20\x72\x4d\x07\x65\xec\x81\xa8\xab\xb0\x7d\x91\x24\x84\x42\xb8\x53\xc6\x27\xd2\x5e\x0a\xa3\x0e\x22\x87\x62\x02\x44\xfa\x02\x3c\xb0\xb9\x1f\xd7\x3f\x9d\xb9\x1f\x1f\xaf\x7f\x8a\x3b\x48\xb3\x53\xcd\x2d\x4d\x68\x6d\xd6\xf6\x13\x5a\x58\xd0\x1c\xa7\x84\x81\x05\x7e\xd6\x8a\x9d\x1d\x07\xd4\x44\x1b\x0b\x1a\x88\x57\x98\x5b\x8c\x64\x3f\x58\xe0\x71\x2b\x32\x7f\x2a\x5a\x31\x69\x96\xa2\x1d\x14\xe6\x29\x6e\x73\x61\xa2\xf6\x83\xdd\xe9\xb5\xf6\xc0\xce\xd0\x28\x70\x8d\xff\xdf\x70\xb2\x6a\x27\x10\x99\x44\x32\x44\xe6\xab\x9d\xe8\x63\x01\x68\x24\x82\xa6\xfe\xf1\x28\xa7\x11\x86\x91\x45\xfa\x75\x7a\xaf\xfd\x6c\x82\x02\x2b\x96\x3c\xd1\xd9\x5c\x1b\xc6\x06\xfb\x90\xa8\x3b\xa8\x46\x19\xdf\x1d\xe3\x8c\x3a\x48\xed\xc5\x1f\xc5\x5e\x9b\xd1\x83\x2a\xba\x53\x46\xf8\xe1\x28\x24\x48\x3d\xab\x6a\x27\x5d\x3d\x1a\x1e\x26\xd5\x86\x29\xfb\x5c\xe3\xe6\x0c\xf5\x86\x85\x95\x41\x95\xaa\xa1\xf8\x36\x8e\xe0\x77\x2b\x36\xdc\x62\x29\xd8\x30\xa1\x3d\x1a\xf4\x18\xb9\x34\x17\xec\x20\x8c\x22\x0a\x61\xff\x01\x0c\xa6\x8d\x35\x2a\x11\xab\xd3\xcd\x2d\x08\xf0\x30\xbe\xeb\xd1\x7b\x0b\x5a\x6a\x07\x73\x90\xca\x84\x36\x5f\x21\x20\xea\xf1\x09\xdf\x91\x86\xa5\xa4\x52\x85\xc5\x00\xc2\x2f\x17\xfe\x76\x50\xdf\xa5\xe2\x71\xc9\x60\x09\x46\x41\xa5\xb3\xd5\xf4\x16\x33\xc9\x2a\x1f\xd6\x5c\xd8\x1a\x1b\xb6\x93\xc6\xd1\x1c\x4a\x6a\x60\x3e\x2c\x0c\xf5\xa9\xd7\x03\xe8\x2b\x43\x12\x14\x56\x93\xba\x92\x42\x3f\xef\xb1\x2f\x5b\x9c\x76\x4f\x6f\x6d\xed\x76\x64\x8b\x09\xcd\x13\x9d\x32\xdb\xc2\x28\x8a\x27\x6c\x38\x45\xfe\xe7\xaa\x32\xd6\xd4\xa8\x7d\x66\x6b\xe6\x95\x35\x8f\x30\x2d\xaa\x2f\xa1\x34\x5b\xcf\x43\x85\x80\x66\xb0\xe3\x76\xc7\x36\xb6\xea\x03\x50\xed\x63\xc5\x43\xa1\x32\x9c\x3c\x51\x43\x4e\x18\x32\x5a\x8e\x11\x3e\x08\xc1\x7f\x52\x03\xa8\xfa\x08\x54\x4c\xc3\x53\x23\x52\x12\x24\xf2\xe6\x24\x00\xbd\xcd\x79\x06\x27\x6f\xc6\xee\x5c\x1c\x48\x32\x4a\x65\xa2\x99\x81\x65\x26\x98\x95\x74\xb4\x58\x7d\xd8\xdb\x56\x76\x1f\xab\x23\x1e\x98\xfc\x45\xb9\xca\xe0\x21\x95\xad\xf6\xb6\xa5\x42\x2f\xf1\x47\x55\x7d\xd8\xd8\x61\xff\xb1\x82\x5d\xf7\xd5\x44\x5b\x80\xed\x99\xd3\x32\x89\x15\xb3\x7e\xcd\x0f\xe1\x62\x9f\xdf\x2c\x28\x16\x6f\x55\x3a\x8b\xc3\x5f\xb1\xf3\x37\x37\xcf\xdf\x05\xc3\xc7\xcd\x73\x71\xab\x18\xf7\x73\xef\x7b\xf7\x1e\x4d\x6a\x64\x1f\x7b\xff\xf6\xba\x7a\x23\x8f\x20\xc5\x53\x32\x7f\x60\xc6\x3b\x25\xf7\xdc\x48\xf8\x49\x28\x2e\x47\xbf\xe3\x44\xf8\x69\x87\xdc\x98\x5c\xa1\x68\xfa\x6b\xa1\xc6\xd0\x2a\xaa\x5e\xa9\xc3\x2f\x83\x34\x4d\x28\x0c\x32\xc3\x1a\x13\xa8\xe4\x95\xdd\xef\xb5\xbf\x19\xf7\x7b\x89\xe7\x86\xf4\x2d\x1c\x25\x70\xf6\x4b\xe5\x1c\x9d\x94\x72\xf6\x9e\x12\x38\xfb\x6a\x67\x75\x93\xe5\x36\xf8\x5d\xbd\x1b\x94\xe2\x5a\x9f\x86\x73\x89\x0a\xe5\x44\x12\x62\xe8\x57\x15\xd5\x5e\xc5\x07\x88\xbf\xcd\x6c\xf4\xbf\x55\xb2\xeb\x77\x12\x25\xd1\x0c\x0c\xcd\xd1\x6b\x56\xd0\x05\x82\xe0\xc2\x1e\xf7\x6a\xd0\x0d\x1a\x51\xa4\xdb\x7d\xfb\xa8\xfe\x0e\xcf\x57\x64\xe3\xd5\xe0\x4a\x64\xad\xf5\xff\x1c\x42\xf8\x4d\xab\xf2\x24\x5e\xd7\xfd\xd3\xcd\x9d\x61\x87\x14\xc4\xa7\xa0\x22\xa7\x7f\x0f\xe4\x2a\x30\x43\xba\x38\x03\x08\xd4\x5c\x12\x54\x04\xc2\x9d\x11\xb4\x18\x2f\x80\x2b\x78\x50\xaf\x8a\x3e\xec\xe5\xa7\xcf\x15\xdc\xdb\x85\x72\x64\x5a\x4d\x85\x58\x13\x93\xdc\xdb\x82\x93\xac\x7e\xab\xc6\xe1\x1e\xe0\xf7\x6f\xaf\x57\xbf\x55\xda\x34\xdd\xd8\x9e\x6c\x88\x1b\xd7\xce\x0f\xa0\x81\x3d\x3c\x73\x0f\x01\xa5\xb9\x35\xf6\x60\x22\xfc\x7b\xfa\x16\xf8\xfd\x43\x38\x30\xaf\xb5\x61\x5d\x36\x1d\x9d\x8b\x56\xb7\xb0\x97\xa2\x4e\xba\x4a\x3c\x3d\xd7\x53\x23\x23\x40\x83\x1e\xdb\x11\x22\x2f\x04\x59\x13\x55\x76\xb9\x57\xab\x74\xc8\x5f\x83\x1c\x56\x83\x2a\x67\x72\xdd\x0b\x36\xa2\x20\x6d\xa0\xa4\x86\x10\x2b\x3a\xdd\x99\x97\x9b\x70\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x7a\x7e\xf2\x74\xa2\xbc\x57\x72\xbf\x80\x20\xf2\xa0\x93\x05\x69\xec\xb1\xd0\xe8\x50\xc3\x2e\x98\xe8\xbc\x1c\x40\xad\x12\x95\x22\xc1\xf3\xb1\xc9\x35\xd5\x48\xe7\xd2\x1a\xb1\xaa\x94\xf1\x6a\x18\xd0\xd9\x22\xb3\x49\xb0\x8d\x88\xf7\xbd\x3d\x68\xd2\x6e\x84\x3d\x1c\xb4\x6e\x92\x62\x4b\x8a\x82\x40\x85\xa8\x14\x56\x71\x1a\xbd\x3d\x18\xd8\xa6\x3e\x87\x1f\xc1\xbe\x12\x75\x6e\xc2\x9a\x23\x66\xe4\x11\xe8\x14\xda\x68\x5f\x51\x9f\x34\x9e\x60\x3c\xd3\x77\x8a\x2d\x2c\xd1\xb0\x84\x79\xab\xaa\x93\xce\x83\xd2\x4c\xbd\x22\x75\xc7\xde\xc1\x8a\x82\xfa\x20\x97\xca\xd1\x89\x06\x77\x0a\x26\x09\xdb\x6a\x64\xd7\xd9\x83\x6a\xcf\x85\x44\x99\x66\x50\xb4\x40\x65\x77\x90\x47\x87\x76\xc7\xc0\x64\xac\x09\x34\x01\x0e\x62\x8e\x62\x8b\xad\xca\x35\xe2\x55\x95\x0c\x3c\x6e\x57\xc3\xd6\x19\xe5\xb9\x03\x1a\x4e\x90\x43\xb0\x25\xf3\x2e\x13\x52\x78\xa7\xfd\x01\xd4\xf7\x91\x2c\xb9\x94\x9d\x21\x42\x57\x02\xde\x55\x16\xca\x9e\x83\xdc\x2b\x0e\x4a\x48\xe7\xc6\x3d\xd3\x5a\xa3\x9a\x81\x4d\xca\x4c\x6f\xe3\xba\x53\x8f\x48\x7f\xd2\x7e\x55\x81\x92\x9e\x0c\x4b\xb0\x33\x2b\xe3\xc3\x91\x19\xa5\x93\x39\xc6\x79\xdd\x75\x40\xe9\xe0\x5e\x53\xe8\x33\x98\x8b\xeb\x04\xc9\xe4\x76\xba\x17\x16\x0f\x4e\x72\x12\xa6\x69\x9b\x69\x0e\xde\x8a\x56\xa1\x7e\x66\x07\xe1\x07\x69\xdc\x46\xe1\x49\xd2\x5e\x6c\xf4\x00\xe3\x4c\x55\x83\x22\x42\xee\x34\x27\x6a\x26\x55\x17\xab\xce\x37\x08\x1c\xbb\x6c\xa0\xca\xaa\xe9\x2c\x15\x8f\x2b\xb0\x0d\x48\xd5\x84\xc9\x85\x36\xc0\x34\x9b\x91\x00\x4f\x0f\x8b\x93\xf1\x45\x3a\x6c\x0a\xab\x0b\xd5\x8f\x33\xed\x33\xfd\xae\xc8\x5d\xa5\x26\x71\xa7\x58\x15\xef\x30\x27\x08\x42\xd3\x85\x51\x7d\x80\x79\xff\xb1\x22\x91\xbb\x8e\xc7\x41\x57\x24\x82\x93\xfc\x8c\x89\xd5\x5f\xad\x36\x35\x9e\x6d\xfc\x87\xd5\x06\x0f\x42\xaa\xe2\x08\x7e\x62\x12\x62\x47\xa1\x23\xfa\x06\xac\x3b\xdd\x04\x6f\xa1\x63\xb5\xb1\xb8\x9e\xd0\x62\xf4\x34\xfc\xae\x9c\x97\xc0\x26\xf8\x00\x19\x7e\x15\x26\x28\x2a\x44\xf6\xc9\xa7\xe1\x37\xa7\xc6\xa4\x6a\x34\x31\xe5\x3d\xff\xac\x2a\x90\x92\x57\xc8\x7f\x41\xb0\xc7\xb3\xb0\x8c\xeb\xc2\xa6\x0a\xf3\x3f\xe4\xad\x32\xf8\x5e\x7a\xaf\x06\x43\xe6\x6c\x62\x02\x79\x51\xce\x8e\x28\x70\xe1\x12\x18\xd0\x36\x78\x51\x7d\xac\x92\xaf\x55\x70\xb3\x5a\xb2\xe3\x47\xf2\xd3\xe9\x56\xc5\xab\xda\xb1\x90\xfd\x9f\xea\xe8\xd8\x82\x85\x1c\x03\x7f\xb0\xb1\x01\xdd\x35\xc2\x09\xb6\x2b\x0f\xb4\xd1\x20\x37\xb7\xc3\xf1\x9c\xba\x10\x4f\xe8\x47\x30\x5b\x8c\x1a\xfb\xa8\xdb\xaa\xea\x71\xe0\x32\x4f\x31\x1e\xc9\xd8\x09\x76\x14\xcc\x0d\x17\xa5\x42\xaf\x9d\x20\x24\x28\x4d\x84\x03\x49\xdc\x3b\x37\x76\x40\x0e\x19\x4f\x57\x54\x87\x47\x6f\x26\x3b\x6c\x75\xe7\x58\x0e\xc0\x0e\x6a\x1d\x4e\xe0\x92\xfb\xc0\x5e\xb6\x4a\xdc\x69\x19\xad\x5c\x99\x4c\x13\x37\xdd\x60\x1a\x2b\x94\x4e\x54\x67\xc8\x6c\x19\x44\x9a\x30\xc0\xde\x06\x15\xd4\xef\x94\xa6\x03\x30\x83\xe2\xce\x66\xec\xba\xb0\x27\x3e\x1d\xbb\x8e\x9c\x61\xe6\x2e\x9a\x50\x05\x1f\x04\x5e\xf3\xcf\x6a\xec\x5b\x50\x3e\x13\x2d\xdf\x63\x42\xa4\x65\x99\x9f\x29\x95\x48\xd5\x50\x2c\x9a\xbc\x08\xbc\xcd\xb4\xcc\xee\xb8\x0a\xeb\x78\xc1\xf5\x92\x97\x74\x3b\x05\x49\x06\x22\xe4\x51\xdc\x71\x1c\x28\xf2\x76\x40\xd2\x1e\xe4\x51\xec\xec\x41\x74\xda\xdc\x3a\x1e\x29\xa0\x53\xae\x60\xa3\x21\xcf\x6b\x33\x2a\x56\x79\xe0\xe7\xdc\xd1\x8f\x4f\x66\xf9\x9c\x76\x7d\x0c\x66\x13\x3a\xc9\xe5\xa9\x2f\xd6\x47\x81\x5a\xdd\xe9\x23\xe1\xe9\x59\x70\x38\x0a\x0e\x47\x9c\x78\x12\x9d\x38\xda\x7b\xa7\xc4\x15\x9d\x4e\xf3\xea\x6a\x76\xd6\x3a\xb6\x37\x27\xbe\x07\x69\x68\x38\x62\xb6\xc7\xc3\x92\xf0\xd0\xa8\x5d\x86\x53\x72\x5c\xe1\xbc\x96\x6a\x3e\xcf\x49\xd0\xbc\xb4\xae\xf8\x9c\xe7\x32\xe0\xa4\x53\xf0\xd0\x27\xe4\x2e\xb5\xde\x93\xe2\xf9\x3e\x9c\x91\xe3\x80\x47\x85\x01\xb3\x57\x65\x7b\xa6\xb3\x84\xeb\x0d\x07\x36\x9f\x99\x2c\x61\x2a\xe4\xc7\x86\x34\xfc\x91\x23\xd9\xae\x10\xd7\x42\x3f\x62\x3e\x10\x2f\xcb\x7f\x85\x07\xbc\xd1\x3e\x02\x6b\xac\x9e\x80\xb0\x49\xa1\x80\x5c\x94\x8a\x43\x5d\x27\x25\xe2\x49\xeb\x67\x2b\x26\x94\x3b\x48\x57\x74\x9c\xe7\x78\xbb\x0a\xde\x78\xc2\xd8\x03\x9d\x16\xa3\xdb\x14\xb9\x8e\x19\x3c\x6a\x26\x14\x19\x53\xe1\x4a\xff\x55\x96\x92\x30\x93\x4a\xe1\xa2\x26\x71\x49\x8c\x53\xb9\xe0\x18\x1c\xf3\xd9\x37\xb8\xe0\xaf\x2a\x78\xfa\xe4\x1c\xb8\x1f\x34\x9a\x38\x4a\x4e\x3c\xe3\xbd\x05\x9f\x45\x36\x6b\xd1\x6f\x25\xb1\xd7\x55\x15\x50\xc1\xbe\x85\xbf\x42\x4a\x34\xa2\xdd\x28\x74\xa0\xe4\xe4\xb0\x10\x42\x2e\xcd\xff\xd8\xc6\x4e\x31\x57\xa4\xbe\x3e\xe1\x84\x49\x7e\xe8\x0c\x65\x87\x01\x59\xe8\xcd\x00\x52\xbc\x8a\x1b\x87\x36\xe4\x36\x14\x0f\x85\x0b\xee\x24\x9e\x20\xbb\x12\x07\x49\x67\x05\x81\x59\xfd\x3c\xad\x3d\xcd\xa3\x5f\xcb\x53\x06\xea\x5b\xb9\x8a\xbe\xa9\x64\xdb\xe2\x1c\x4f\x47\xeb\x2d\x4e\x9e\xd2\xa2\x08\x50\x39\x04\xd9\xac\x62\x6a\x5d\x9c\x81\x38\x32\x1b\x7d\xf9\xb9\x07\xc8\x1f\xff\x0d\x47\x1e\x45\x55\xe9\xc8\x23\x36\x72\xb2\xc2\x66\xbd\x9c\x2f\x35\xd9\xb6\x28\x0a\xf1\x5c\xce\x04\x1a\x9e\xcd\x51\xae\x81\x5a\x48\x83\x01\xf2\xfc\xa7\x3a\xa2\xf4\xc3\x33\x01\xb7\x26\xed\x84\x44\xe7\x3d\xf4\xf8\x25\x75\xc6\x81\x1e\x03\x82\x10\x8c\x0b\xba\x1b\x97\x63\x7e\x89\xfa\x9a\x53\x0c\x8b\x92\xa1\x34\x47\x90\xf4\xc3\x5a\x57\x7b\xa0\x03\x39\x6e\x44\x57\xcf\xd9\x09\xe8\x39\x2b\x49\x3b\xbd\xdd\x75\x47\xa1\xf7\xbd\x1d\x3c\xce\xa4\x70\xbe\x9d\x74\x58\xf8\x1a\x54\x63\xb7\x46\xff\x8e\x84\xdd\x93\x6f\x67\x34\xb6\xff\xe8\xfc\x60\xcd\xf6\xa7\x27\x16\x94\xcb\x5b\x60\x3f\x3b\x7b\xf8\xf9\xc7\xc7\x9c\x2e\xae\x70\x08\xed\xe8\xc5\x33\xed\x9f\x8f\xeb\x87\x4e\x6c\x47\xdd\xe2\x96\xfb\xa3\xcc\x9c\xd1\xd9\x53\x85\x1c\x6f\x0f\x26\x92\x05\x5d\xd3\xed\x20\x9c\xed\xee\xd4\xa4\x88\xdd\xef\x69\x78\xd7\x9d\xda\x13\x24\xb6\x1f\x9d\x5b\x94\x41\xca\xa9\x81\xe9\x73\x73\xf3\x7c\x15\xa7\x78\x1a\x1f\x1e\xb6\x20\xa1\x16\x16\x11\x96\x11\x01\xb8\x61\x13\x68\xda\x88\xd0\x1c\x12\x4a\xa1\xfc\x31\x2f\x85\xe3\xe8\x40\x66\x99\xd9\x62\x50\x6d\x01\x14\xa1\xb8\xb8\x80\x76\x90\x1c\x06\x69\xcd\xcc\xe8\xca\x13\x2b\x9b\xbc\xb0\xf7\x04\xa3\x35\x4a\xee\xb1\x79\x38\x5d\x27\xeb\x9b\x39\x1a\xf5\x9d\xf9\x59\xe8\x40\xc6\xd1\x98\x22\x89\xa7\x4d\x61\x0a\xae\xa6\x88\xa7\x85\x56\xe4\xdc\x8c\xfc\xf8\x88\xa3\xd1\x84\x54\x0e\xf9\xf5\x17\x72\xb3\x59\xbd\xa9\xe3\xa1\xba\x2f\xe0\x68\xd8\xa7\x4b\x24\x87\x35\x64\x3f\xe1\x81\xba\x66\x6b\x09\x66\x18\x5b\x67\x7a\xde\x2b\xcb\x87\x86\x22\x24\xe2\x98\x38\x0f\x12\x4b\xbe\x94\xa1\x11\xe8\xa5\x4c\x1e\x5e\x68\x80\xf9\x3f\x44\x2b\x8f\xae\xf2\xf6\x56\x99\x85\x22\x98\x7e\xaa\x50\xe4\x2f\x41\x39\x62\xee\x72\x99\x98\xc3\x54\x5d\x62\x4f\x80\x93\x0c\x26\xe3\x2b\x8c\x35\x7a\xd9\x91\xf5\x08\xaf\x77\x88\xb5\x36\x2d\xf1\x11\x66\x03\xec\x4a\x16\xd7\xff\xaa\x1a\x0d\x00\xa1\x42\x0a\x3f\xf8\x3b\x1f\x96\x02\x7f\xb6\x58\xcc\xda\x8e\x26\x63\x9f\x34\x1d\x6a\x22\x45\xec\xe4\x1b\x35\x38\x74\xfe\xbd\x24\x84\xef\x20\xdb\xb1\xaf\x3f\x3b\x54\x84\x22\xcf\x38\x11\xd7\x00\x02\x12\xc1\x5d\x24\x04\x7e\x25\xc3\x47\xc0\xc2\x8e\x3c\xec\xd7\x8b\x63\xe0\x6d\x64\x98\x3b\x72\xec\x11\x97\x6f\x5e\xb8\x55\x15\x2b\x0c\x48\x7f\x95\xcd\x8e\x07\xf0\x40\x56\x0f\x74\xff\xe9\xba\x29\xc7\x8d\x9a\x04\x15\xe7\x05\x8e\x6d\xa2\x25\x1e\x3b\x35\xeb\x10\x75\xa6\xcc\x27\x1a\x2b\x97\x59\x82\xa8\x36\x6c\xc9\x74\xaf\x8a\x5d\xfd\x46\xbc\x4c\xf6\x48\x58\x5a\xfd\x11\xb8\x7f\xe6\xfd\x27\x89\x42\x07\xe4\xdf\x13\xb7\x43\xed\xe9\x40\x5c\xc0\x12\x1e\x22\xff\x08\x0d\x66\x0e\x92\x0f\x65\xce\x46\x16\x07\x33\x31\x95\xc5\x62\x4b\x9c\xa5\x0f\x78\xca\x3e\x7f\x8e\xcf\xc0\xc4\x4f\x86\x83\x7b\xb8\x4c\xde\xab\x6c\x2a\xbf\x59\xac\x36\xce\x68\xaa\x7a\xc2\x6f\x04\x6d\x83\xe4\x54\x82\x9e\xb8\xa4\x62\xd1\x8c\xc8\xfc\xf2\xa5\x13\x07\xd5\x75\xab\x0a\xed\x19\x2b\x03\xbb\x38\xf9\x6f\x46\x71\x9b\x0d\x72\xd8\x0f\x73\x2c\x2c\x6e\x6e\x45\xc5\xd0\x8e\x17\x3d\x30\xaf\x15\xfb\x24\xe4\xa0\x39\x60\xe6\x25\x4a\xb7\x07\xac\xcb\xef\x84\x10\x15\x33\x2b\x18\x7a\xb4\x29\xb9\x77\x42\x6e\x60\x1b\x05\xf2\x75\x6a\xc3\xd6\xf2\xdc\x0c\x7c\x9a\xb8\x81\xba\xe9\x60\x9b\x87\xb6\x70\x2f\x61\xa0\x4c\x7f\x57\x49\x76\xa7\xc6\xe6\xa6\xca\x80\xac\x57\xc3\x5e\x1a\xf4\xec\x20\xe3\x4a\x90\x46\xae\x2e\x5f\xbd\x7a\xfd\x2e\x09\x21\xb0\xce\x4d\x6b\x8d\xfa\x26\x3a\x98\xce\xda\x15\xdc\x4c\xe3\x04\x2d\x21\x92\xa3\x2b\x97\x38\x05\x97\xb3\xe1\xcc\xf3\x65\x6b\x91\xb7\x5a\x68\x4b\xd8\xab\x8a\xf6\xb7\x27\x49\xf8\x01\x46\xe5\x63\x15\x0c\xfe\xaf\xe1\x7f\x95\x9f\x99\x64\x67\x4d\xc8\x5a\xd2\x91\x54\xba\x70\x24\xb6\xd6\xb6\xb3\x33\x14\xdc\x84\x46\x89\xaa\xa4\xdd\xf7\x16\xf7\xc2\x8d\x40\x9f\x88\x73\x98\x81\x76\x40\x86\x00\xc4\x1d\x8d\xfe\xdb\x88\xe2\x27\xba\x32\xac\xaa\x3b\xed\xf4\x5a\x77\xb4\x61\xfe\x29\x7e\x50\x3a\xfc\x9a\x5c\x39\xc9\x2a\xd7\x4e\xfc\xe8\x7a\x69\x44\xd3\x49\xe7\x2e\x1e\x8c\x5a\x0c\xc0\x87\xd5\x27\xff\xe0\xa7\x37\x03\x3a\x37\xfc\xf8\x18\x20\x7e\x9a\xa1\xab\x37\x76\x68\xc8\xb8\x1a\x3d\x85\x70\x5d\x72\x3a\xcc\x63\x90\xe7\x8b\xb9\x4c\x84\xff\x27\xea\xdc\xd8\xe1\x36\xf5\xe3\x5b\xb6\x2a\xd8\x0d\xf1\xa6\x3b\xd9\x8d\xa5\x89\x09\x6a\x87\x32\xee\xbb\x0a\xef\xd3\xa4\xb2\xe8\x39\x86\x77\xab\x21\x43\x9b\xed\xcf\x48\x34\x7f\xff\x1d\xcd\xe7\xaa\xeb\x41\xb0\xfd\xa6\xc2\x96\xb0\x11\x7e\x7a\x29\x17\xf3\xc2\x45\x17\xc8\xc3\xdb\x2e\x98\xba\x30\x1a\xd9\xd5\x3d\xd9\x79\x32\xc0\x8b\x6c\x34\x81\xe5\x60\x27\x72\xc3\xf5\x91\x8f\x3a\x23\x87\x76\xcd\xa0\xf1\xb2\x0e\xa5\x77\x12\xed\xd9\xf1\x56\x36\x26\x6e\xb5\xd7\x5b\x63\x87\x8c\x0c\x37\xaa\x03\x3a\xad\x62\x96\x08\xf7\xbc\x5d\xd5\xe9\x46\x19\x87\xcc\x8c\x7e\x85\x94\x59\x71\x90\x6e\x08\x16\x2d\x8e\x20\x52\xf3\x52\x80\x1f\xfc\xbd\x50\x8a\x01\x43\x95\x95\x1c\xbd\xad\xb5\xd1\x1e\xdd\x45\xb5\xd7\xb2\x23\x4d\xa7\x9c\xaf\x24\xc7\x23\x12\xb6\x66\x05\xf6\xc8\x78\xd8\xe3\x93\x87\x87\x5d\x3d\xb3\x01\xe2\x8b\x21\x7c\xac\x81\xf4\xc3\x04\x41\x7e\x1e\x7c\xa5\xbb\xee\x87\xd1\x90\x69\x7d\x34\xaa\x48\x0c\x74\xcf\x04\x36\xba\x3c\xf8\xc8\x0f\xb2\xb9\x05\xe6\x32\xa8\x8d\x1a\x94\x69\xd0\xa1\x4d\xc2\xfe\x2e\x3a\x6b\xb6\x6a\x20\x5d\x23\x78\x8b\x51\xb1\x80\x5c\x83\x86\x74\x47\x92\x26\x5d\x06\x7f\x11\x52\xbe\x05\xd5\xfa\xbb\x00\x18\x14\xe3\x08\xc7\xe6\x9d\x49\x7e\x68\x27\x1f\x87\xb2\x3f\x80\x30\x0a\xb6\x19\x39\xd0\x5d\x19\xd1\x0c\xaa\x55\x06\xa8\xed\x04\xeb\xf3\xc1\xcd\x20\xe0\x43\x41\xdd\x1d\x4d\x93\x44\xf5\x1b\xfc\xaa\x0e\xd2\x37\x3b\x3a\x72\xf9\x33\xff\xc4\x13\x97\xad\xfc\x9d\x52\x6f\xe2\x07\x2e\x01\xc7\x8b\xc2\xf1\xf1\xc9\xa0\x64\xb3\x63\x9f\x42\xbb\xa9\xe9\x82\x2a\x8a\x2c\xef\xe2\x31\x30\xf0\x13\x84\x53\xad\xd8\xcb\x4f\x7a\x3f\xee\x45\x04\xc4\xa2\xb0\x4a\xce\xca\x83\x9d\xd5\xf2\xf1\xcc\xd4\x15\xe0\xeb\x4f\x69\xa6\x18\xee\x3f\xac\x31\x4a\xb5\xb5\x1c\xd1\xdd\x1c\x99\x4e\xe1\x7b\x54\x71\x3c\x80\x70\xa1\x3a\x06\x04\xa0\x1b\xd5\x79\xee\x69\xfe\x1d\x2c\x70\xb2\x64\xa9\xe8\x67\xbe\xee\x46\xf5\xe0\x27\x1a\xc5\xc0\x4f\x03\x56\x5e\x1f\x2f\x39\x24\x41\xb6\x40\x18\x62\x45\x4c\x33\x4d\xb6\x2b\xbc\x94\x98\xe6\xda\x02\x54\xb1\xe5\xb2\x58\x2f\xb3\x8b\x8d\x8f\x9f\xbd\x78\x87\xee\x29\xf7\x14\xaf\xc9\x0c\x42\xae\x7d\xc4\x22\x1f\x0e\x20\x59\x3a\x9b\x5b\x3e\x43\x2c\x05\x99\x13\x63\x7d\xa4\xfb\x68\xe1\x6e\x68\x2f\xfd\x2e\xd5\x05\x9b\xbc\x76\x8e\x84\x5b\xa3\x71\x3c\x0b\x41\x2f\x61\xa7\x36\x30\xb2\x72\x62\x05\x6c\xe9\x5a\x41\x23\xbb\x70\xa7\xe0\x05\x25\x72\x41\x48\x44\x1b\x4f\x79\x42\x1a\xbc\x27\x65\x7e\x95\x38\xa0\x8d\x87\xe1\x69\x36\xe4\xe7\xe0\xbc\x24\x79\x83\xe1\xa0\x11\x76\x53\xd1\x1e\x11\xd2\x79\xc7\x80\xaf\x0a\x34\x8d\xba\xd3\xe6\x16\x25\xab\xfe\x98\x12\x32\x11\xfb\xca\xf6\x5a\xb5\xdf\x64\x79\xc1\x0d\xe8\x0d\x8e\xfe\xff\xf7\xff\xfc\xbf\x8f\xae\xa0\xdd\x57\x7e\xe8\x1e\x5d\x05\x0d\x06\xe0\x89\x8e\x84\x40\xbc\xfe\xcf\x6a\x34\x07\xf6\xf9\x79\x4f\xbf\xaa\xf0\x8d\x2c\xa2\x1a\x8d\xe3\x43\x0f\xfc\x51\xf1\x17\x70\x8a\x8a\x83\x5d\x00\x8b\xa8\x2a\x13\x77\xb8\x57\xb6\xd8\xe4\xfe\x36\xea\xe6\xb6\x26\xdb\xd5\x85\xf8\x2f\xf8\x12\x18\x40\x81\xf7\x79\xd8\x32\x22\xff\xc7\x49\x3b\xd9\x44\xf2\x5b\x01\xb8\x39\xf2\x65\xa3\xb4\x5f\xc8\x52\x6e\x39\x06\x8e\x1d\x00\x3b\x6d\x54\xd5\x8f\x6e\x47\x47\xe2\xa1\xb6\x37\xa3\xdb\xe1\xd5\xd4\x4f\x74\xfd\x38\xc7\x80\x43\x33\xc3\x81\xd5\x6b\x47\x97\xef\x97\xc5\x33\xcc\xca\x7c\xb3\xf7\x4a\xac\x65\x73\x1b\x54\xc1\x8a\xf6\x40\x72\x12\x74\x55\xdc\xd6\x78\x3b\xf3\x83\x42\x75\x77\x50\x0a\x20\xbd\x1a\xc2\x81\xbe\x34\x6d\xed\xe5\x96\x4a\x82\xec\xc1\x45\xed\x20\xbc\xdc\x32\x22\xc4\xfc\x0b\xff\xac\xbc\xc4\x23\xdf\x77\x72\x3b\x8f\xbe\xd1\x8f\x5d\x37\x8f\xd1\xd1\xc9\xb5\xc2\xe4\x6b\xfc\x51\xed\xa1\x91\xde\x1a\x45\xdb\x57\xf8\xa8\x1a\x74\x7d\x74\xd1\x09\xd2\x55\x5b\x1d\xf6\xe8\xb2\x0d\x7c\xdf\x8b\x5c\x03\xe8\x27\x92\xa0\x1e\xe4\x01\xd2\xe4\x81\x3e\x77\xda\x71\x2c\x97\xe7\xf4\x8b\x92\xf1\xd6\x0a\x81\xe2\xa5\x95\x08\x8f\x2a\x00\xaf\x93\x37\xe1\x37\x65\x79\x0b\x42\xd5\x80\x07\x69\x38\x40\xe1\x10\xcd\x5b\x2b\x28\x83\xa4\x5a\xb7\xb3\x07\x53\xdd\xe9\x56\x59\xdc\x37\xf8\x0a\x1a\x45\xb3\x59\x0f\xf6\xe0\x82\xd4\x07\xd4\xa6\x4f\xe0\x0d\xa0\xaa\x86\xeb\x6a\xcf\xdf\xbd\xbc\xfe\x77\x81\x38\x60\x1c\x56\x55\x1c\x89\x95\xbd\x53\x03\x5f\x88\x7c\xcd\x3f\x53\x26\x5f\x22\xc8\x48\x86\xae\x11\x2a\x51\x2e\x82\x3a\x2f\xbb\x02\xf2\x06\x12\x16\x00\x29\x62\xca\x65\xd7\x2d\xe4\xf1\xf1\x5f\xbd\x3e\xc6\x03\xcc\x56\x9c\x7d\xf8\xfe\xa3\x03\x36\x7c\xf6\xe1\x0f\x1f\x33\xe0\x70\xc2\x35\x95\xbd\x58\x88\x9f\x88\x60\x95\x6a\x61\xf6\xaf\x30\xfe\x0d\x9d\x6b\xbf\x52\x07\x92\x2f\x39\x8b\x4e\x3b\xeb\x78\xea\x8d\xde\xbf\x39\x00\xfc\x0b\xd9\xbf\xb6\xda\x17\x99\xfd\xa0\x70\x1e\x50\xb3\x1c\xb1\x39\xa4\x2c\x35\xc8\x05\x40\x92\xcd\x6b\x44\x66\xac\xa9\x61\x5b\xad\xc3\x82\xbb\x22\xc1\x1d\x32\x85\xb1\xe6\x11\xee\xb9\x98\x59\x34\x02\xd9\x51\xde\x12\x1f\xa6\x50\x00\xdb\x8f\xce\xd7\x6b\x55\x5b\x53\xcb\x44\x9b\xbf\x04\x3f\x9d\x35\x3a\x72\xcb\xb0\x3e\x61\xf3\x93\xb7\xe4\xd8\x37\x58\xd0\x14\x45\xe8\x47\x08\x51\x91\x23\x47\xd5\x83\xc2\xc8\x60\x3f\x72\xcc\xc8\x6f\xa7\x12\x36\x87\x9c\x01\xd8\xe0\xcc\x96\xe3\x0b\x46\x9a\xac\x57\xb9\x8d\x68\xd6\xaf\x9d\xbc\x53\x35\x46\x1c\x60\x53\x63\xde\x00\x34\xda\x51\x38\x82\x64\xfe\xf8\xaa\xde\x91\xa7\x08\x36\x29\x6d\x67\xe8\x2f\x5d\x5a\xe1\x97\xad\xd2\x61\xa2\x81\xc0\x87\xd7\x6f\xc2\x74\x63\xdf\xc3\x01\x2b\x5b\xad\x56\x79\x7d\x51\x9f\x47\x33\x22\x88\xcb\x69\x23\x3f\xa7\xf0\x04\x28\xd1\x69\x8f\x9a\x49\x8f\x3b\xe8\xe3\x15\xc0\x06\x33\x59\x5e\x60\x6b\xa9\x67\x4a\xac\xd5\x56\x53\x30\x21\xd4\x6a\x15\xdf\xca\x4c\x48\x80\xef\xbb\x5e\x62\x4c\x19\x6a\x0f\xee\xd1\x76\xc8\xe6\x6b\xa3\xba\x1a\x9d\x9f\xc4\x85\xa0\xcf\x98\x89\x9c\x35\x9b\xf4\xec\x6f\x3e\x99\xf3\xb2\x6d\x6b\xbf\xef\xc3\xa1\xe2\xc3\x33\xf7\xf8\xc7\xd0\xed\x9f\x1e\x66\x50\x09\xe0\x61\x5a\x96\x2d\x05\xb8\x62\x8f\x86\x3c\x6f\xea\x1a\x94\xe7\x71\xd3\xd8\x2f\x3e\x86\x55\x6b\xf1\x12\x51\x88\x4c\x21\xd4\x27\xaf\x4c\xab\x5a\xd1\x26\x69\x20\x1b\x1b\x46\x42\xa4\xed\x8e\xb5\xb7\x34\x4b\x13\xb7\xa1\xfe\x06\x80\x40\x76\xb6\x55\x05\xd1\x99\xc0\x1f\x41\x77\x1f\xe0\xbd\xa1\x68\xbb\xc2\x8c\x54\x5d\x12\x22\x52\x0d\x41\x7c\x08\xf6\x2f\x13\xef\x0b\x24\x3c\x1b\x0c\x55\x81\x6e\xa7\xd8\x1e\x8c\xf1\x41\x41\x83\x04\xec\xa2\xe1\x0a\xd5\x2a\xe7\x83\xc1\x0b\x0f\x7d\x8f\x58\x2c\x2a\xef\x22\xe4\x94\x98\xf8\xc7\x4c\x27\x2f\xb3\xb5\xb5\x8a\x72\xc7\x53\xce\x9a\xc7\xf7\xe1\xb2\x41\x68\xa0\x33\x33\x12\x7b\xd2\xbe\x4c\x8b\xad\x38\x50\x73\x31\x40\x55\x6e\xb8\x08\x73\x21\x4c\x7f\x90\x7d\x64\xe4\x8e\xc6\x0f\x7c\x7a\xc6\xaa\x68\x2f\xd9\x5d\x83\x6e\xe8\x4a\xda\x79\x27\xc2\xf3\x7d\x15\x21\x7f\xc0\x3a\xdc\x71\xcf\xbb\x7b\x8c\xf4\x14\x94\x36\x29\x42\x66\x38\x8f\x60\x12\xe0\xdd\x18\xcd\x92\x34\xf9\x2c\xa9\xb5\x60\xd4\x33\xaa\x62\x35\xa9\x55\xa9\xa2\x42\xd7\xcc\xc5\xc3\x2f\xef\x02\x73\xe3\xda\xd8\x9a\x2c\x09\x69\x04\xca\xee\x1c\x59\xa1\x09\xec\x7b\x62\x7a\x88\x4a\xfe\xa9\x8a\xd8\x8f\xa5\x3e\xec\xb2\x6a\x03\x4b\x9d\x1d\xbd\x32\xb4\x70\xda\x34\x2a\x45\xbf\x52\x6d\xa8\x7f\x75\xbf\x4d\x2d\xdd\x10\xc3\x23\x63\x3e\xed\x38\xc0\x28\xe0\xd6\x50\x54\x62\x87\xb8\xac\x88\x1d\x86\xf5\xb3\x95\xda\xa4\xe5\xe5\x2d\xfa\xfe\xd2\xae\xe2\x77\xd9\x0e\x52\xf6\x74\x36\x95\x2f\x89\x8c\x68\x61\x4a\x43\xf6\xe5\x93\xda\xd8\xc0\x5b\x81\xf5\x80\x2c\x48\xa3\x03\xda\x2b\xaa\x98\xf9\x4e\x06\xd9\xa9\x3d\x18\x57\xc7\xd6\xec\x87\xc5\xcb\xe1\x29\xa9\x82\xf1\xf0\xe2\x31\x1f\xcc\xa7\xc1\xc6\xa6\xd2\x05\x0d\xd0\x0e\x33\x06\xee\xc6\x75\xab\x07\xe6\xa1\xf4\xc1\x9a\x66\xe2\x12\xec\xed\x8d\xf5\x46\x69\xca\x4d\x2a\x8e\x82\x95\x0b\x3e\x21\x27\x6a\xcd\x71\x00\x4e\xaa\xfe\xfd\x02\x82\x2a\x48\xfb\x81\x63\x27\x51\x9d\x39\x74\x90\xd8\x4b\xb8\x5c\x3b\x08\x39\x93\x7b\xdf\x3c\x25\x52\xfe\x86\x4e\x49\x9f\x6a\xd3\xc6\x34\x89\x46\x98\x78\x13\x2c\xa6\xef\xe3\x35\x2d\xbe\xb0\x15\x73\x78\x53\x7b\x82\xf6\x45\x4e\x0b\xd7\xfd\x5f\xc3\xff\x98\x6a\xd4\x81\x4d\xcc\x07\x35\xc4\xeb\xf0\x14\x10\x13\xf8\x35\x2a\x4b\x59\xf2\x6a\xaa\x20\x65\x59\xb0\xd6\x21\x91\x34\x60\xcc\xcf\xb3\x9b\x4e\xc9\xa1\x8e\xe5\xaf\xe0\x53\x74\x33\x2c\x51\xe3\xca\x15\xae\x49\x35\x39\xcc\x2b\xbb\x0c\x46\xd5\xe5\x90\x54\xe3\x7e\x09\xd8\xf6\xca\x14\xb0\xaf\x7b\x65\x72\x7d\xaf\x40\x6c\x9d\x6a\x27\x98\xf1\xfc\x63\x19\x5e\x3a\x0c\xe3\x82\x27\x40\xfc\x73\xde\xce\x0c\x88\x9a\x29\x17\x40\x8d\xcd\xe1\x5e\xd9\x19\x10\x2f\xb8\xb8\xaf\x4f\x47\x2f\x8d\x8f\x3a\xcc\x06\x88\x32\xeb\xbe\x93\x8d\x8a\xc1\x21\x10\x28\x6e\xd7\x45\x35\x11\x19\x57\x56\xe0\x23\x5c\xd1\x3e\xbf\x8a\x47\x8d\xb0\xba\x24\x88\x87\xad\xda\xa0\x07\xbd\x53\x68\x10\x2d\x27\xc2\xb4\xb8\x36\x1b\x9b\x33\x27\xbc\x8f\x62\x8e\x5c\x4a\x1c\x95\x4f\x8e\x8c\xc5\x05\xe7\x07\xb1\xa7\x0f\xc2\x65\x67\xb9\xb6\x45\x84\x1b\xba\xf1\x40\x11\x12\xa7\x0d\xe3\x8b\xd1\x27\x5a\xb5\x70\xb4\x80\x24\x71\xca\x9f\x2a\x32\x3a\xf6\x47\x26\xae\xfc\x59\xf8\xc0\x69\x73\xed\x31\xb1\x3b\xe4\x55\x84\x23\x86\xbc\x8d\xdc\x96\xe2\x93\x10\x5a\x9c\xdf\x5e\xae\xc5\x85\x38\x6b\x71\x72\xc7\xb1\x84\xa9\x9b\xb2\x68\x26\x87\x4c\x36\xc0\x84\x81\x2e\x46\x38\xcf\x83\x6d\x9e\xce\x38\x68\x5e\xc6\xf3\x8e\x6e\xa1\xc4\xbd\x0b\x7c\x0a\x73\x12\xf3\x6c\x19\x73\xc9\x7b\x56\x5b\x82\xd8\x6a\xa3\x4e\xa3\x3e\x51\x8e\xad\xde\x68\xeb\x9e\xe7\xac\x64\xd7\xd5\xd1\xc6\x74\xd9\x75\x82\x3e\x16\x41\x1d\xc7\x0c\xf6\x16\xb4\xb8\xd4\xd4\x96\x9d\x40\x96\x0a\xd1\x6c\x6d\xeb\xf5\x91\xcb\xd0\xb2\xc3\x28\x62\x27\x8a\xec\x95\x01\x95\x03\xe4\x30\x2a\xf2\x32\x26\x2c\x14\x71\x1c\x75\xd1\x0e\x7e\x21\x67\x85\xf3\xd1\xf3\x56\xe1\x16\x41\x80\x69\x20\xc8\x6b\xfc\xb1\x04\x42\xae\x51\x51\xed\x7a\xcb\xe1\x15\x82\x73\xf6\x62\xc5\x4a\xba\x54\xe2\x1a\x6f\x29\x0d\x5f\x50\x6e\x6f\x9d\x87\x6d\x8e\x3c\xe1\x5e\x5a\xbc\x4c\x8a\x9f\xf7\xd4\x93\x0a\x50\x45\xb3\x12\xb0\x92\x82\x15\x89\x7e\x27\x23\x52\x72\x31\xfc\xf0\x87\x8f\xee\xc1\x4f\x67\x1f\xfe\xf8\x11\x7d\x0b\x67\x85\xeb\x8d\xbc\x55\x0b\x18\xc8\x0c\xc5\xd0\x68\xf5\xb1\x63\x34\xf7\xd8\x31\xdb\x57\x3e\xd1\x50\x7c\xf2\xe5\x12\x8f\xb1\x10\x27\x2b\xbc\x8d\x59\xe5\x0a\x37\xe3\xbe\xe6\x3e\x3a\xe2\x00\xe1\x2b\x16\x0f\x14\xa8\x25\x54\xf9\x5b\xfc\x4e\xdd\xfd\x37\x10\x8d\xcf\xb0\xa7\xbf\x85\x62\xe1\x32\x00\x41\x67\xd1\x07\x2f\xd9\x39\x34\x7a\x89\x06\xbf\x85\x36\xb3\xca\x70\xb1\x9f\x63\x33\x6d\xe6\xd4\x48\xbb\x00\x1e\x5e\x45\x09\x1f\x76\x80\x92\xa5\xe1\x47\xe8\x6f\x99\x15\x1a\x15\x41\x78\xd0\xf1\xae\x6f\x0e\x3e\x28\xa4\x6a\x80\x7b\x8b\x9f\x93\xcc\xfb\x90\x0d\x45\x01\xde\x36\xd3\x14\x63\xd0\xc9\x40\x31\x99\x49\xa4\xf8\x51\x0a\xdd\xc2\x84\xfa\xfe\xa3\x7b\x10\xc9\x8d\x5f\x3f\xe1\x64\x29\x88\x4e\xf5\x45\x1c\xe1\xf3\x2b\xb1\xb0\x94\x3b\xa8\x4d\xc4\xc3\xc7\xc3\x2d\x8d\x0e\x75\x95\xef\x89\xb2\x52\xf3\x75\x55\xf4\x96\x43\xbc\xbf\xc1\x1f\xa9\xe6\x10\xf0\x09\xe5\xdd\xab\xec\x33\x4e\xf3\xc2\x97\x85\x13\x43\x04\xbd\x10\x5a\x80\x0d\x0e\x85\xcb\x2f\x87\x40\x0a\x7a\xdb\x5f\x6d\xd0\x8c\x1a\x6b\xee\xd4\xe0\xf8\x5a\x2a\x63\x64\xcb\xe3\xaf\xad\x4e\xc3\x33\x31\x52\x84\xba\x41\xef\xbb\x10\x37\xf2\x4e\x4d\x36\xf1\x20\xf2\x44\x11\xaa\xcc\x6f\x6c\x67\x93\x88\x85\x5f\x53\x00\xf2\x2f\x3a\x6b\x17\xa5\xa3\x34\x35\x79\xe5\x62\xb8\xc6\x72\xd7\x21\xc8\x85\xce\x50\xc6\xc4\xc4\x55\x66\xc6\x40\x1b\xd4\x40\x0c\xb7\x11\xc2\x7f\xce\xb1\xf0\x45\x2f\x04\x8d\x0e\x4e\x8b\x60\xcb\x37\x1b\x48\xc6\xc8\x7d\xf3\x34\x6a\xaf\xe9\x36\x83\x36\x85\xbb\x1e\xe3\x3e\xed\x40\xb6\x5c\x79\x32\xba\x52\x5b\x3f\x63\x70\xcd\xd8\x64\x2f\x07\xaf\x1b\xdd\xcb\xc8\x2a\xdf\x64\x29\x01\x52\x7a\x2f\x9b\x1d\x2c\xeb\x5c\xe8\xfa\x8d\x0c\x07\x6c\x2f\x80\xf9\x88\xdd\xc1\x53\x3b\x2f\xd7\xbf\x2d\x94\x8e\x61\xff\xf2\xd2\x31\x11\x50\xfc\x56\xd1\x21\x56\xa6\xae\xe5\x87\x59\x9c\xd9\xd8\x7d\x2f\x07\x55\x9a\x51\x21\x25\xda\x51\x17\xe1\xc2\x28\x05\x60\x7f\xb0\x22\x9e\xc0\xe0\xdb\x07\xb0\x83\x95\x06\x40\xb4\x14\x46\xdb\x45\x89\x16\xa3\x0c\x5e\xe0\xe5\xc5\x69\x85\x5c\xc3\x85\xe0\x5f\x9c\x5f\x9c\xfe\x4d\x4f\xfd\x42\xcf\x6d\x3d\x28\x37\x76\x38\x22\xe8\x79\x4d\x1f\x1b\xf2\x19\x0e\x40\x18\x80\x1e\xa4\xad\x54\x57\xb6\x89\x50\x78\x7a\xbe\x07\x02\xb9\x6b\xd5\x48\x10\xd4\xb1\xcd\xd0\xd7\x9d\x92\x6d\xd6\xfb\x41\x61\x04\xda\x80\x7f\x27\x5d\x9d\x47\xfe\x87\x11\x8b\xe8\x83\x39\x66\x42\xa9\xb5\xf2\x07\x0c\xa9\x80\x17\x33\x80\xb8\x64\x74\x72\x3f\xe4\x52\xc4\xf7\x1f\xdd\x63\xac\xe3\x31\x88\x12\x2d\x73\xd2\x7f\xc3\x0f\xe2\xa7\x4c\xca\x89\xde\xb7\x30\x0d\x90\x1b\x85\x41\x3d\xe0\x1c\xf6\x56\xec\xd5\xb0\x55\x28\x7e\xb4\xc1\x14\x41\x7c\xfd\xc7\xc6\xb6\x2a\x30\x6e\xfc\x2d\xb4\xf1\x36\xa6\xff\x31\xa6\x33\x7e\xc4\xc4\x52\x46\xa8\x86\xd2\xfe\x35\xf4\xe2\xec\xc3\xff\xf8\x18\xe6\xa8\x97\xeb\x3a\x67\xd7\xe4\x7c\x19\x3f\x0b\xa8\xa9\x05\x26\xe5\x15\x07\xd0\xc1\x5a\xc7\xf9\xbc\xa9\x7b\x5b\x13\x69\xa2\x3b\x12\x65\xb0\x5f\x71\x3e\x92\xde\x8a\x5e\x0d\xc0\xa6\x98\x9a\xd1\xfd\x74\x55\x90\x06\xc5\xef\x21\xd5\x04\xb3\x26\xe6\xbc\x9b\xa1\x8d\x7c\x89\x61\x4a\xb6\x44\x28\x5a\xe9\x65\xbd\x1e\x82\x53\xb5\xf4\x32\xba\x17\x2e\xe3\x62\xd8\x76\x4c\x71\x04\x80\x8a\x76\x43\x27\x6b\x19\xb7\x0d\x6d\xd7\xae\xc6\xab\x54\x64\x54\x7d\xc7\xf7\xa3\x3a\xdd\x78\x11\xd3\xb5\xe3\x8b\xfc\x14\x91\x79\x4b\xf1\xad\xe3\x5b\x12\x9b\x41\xb9\x1d\x46\x9f\x05\x80\x8d\x3a\x88\xbd\x45\x09\x33\xb2\x08\x69\x6a\xf4\xa6\xc3\xae\x16\x3e\x39\x45\x37\xd8\x41\x87\x09\x32\x89\x29\x1b\x51\xa1\xff\xd3\x97\x61\x23\xbf\xf5\x25\x7c\x91\x05\xf8\x68\x0e\x0d\xfd\x76\xa7\xeb\x9a\x3e\x06\x41\xf3\x61\x2f\x0d\xf9\xc9\x6a\x23\xec\xd0\xaa\x81\x83\x8b\xe1\xad\x24\xbf\x5b\xc0\x4c\xd8\x26\x2c\x05\x27\xcf\xd2\xca\xc6\x09\x3b\x1a\x5e\x80\x58\x2a\x9a\x88\x7f\x63\xa3\xc8\x43\x1f\x27\x29\x4f\xe4\xe4\x24\x5d\x76\x35\x67\x59\x86\x44\x8a\x82\x6c\xdf\xfe\xdb\x59\xfb\x1d\x87\xa8\x97\x7b\x35\x77\x75\x84\x44\xea\x78\xbe\x79\x03\x17\xd5\x0e\xa3\xe7\xc1\x94\x81\x8d\x02\x80\xb4\xd9\xae\x02\x13\x63\x8d\x21\xf3\x73\x44\xe1\xe4\x97\x9c\xdf\x17\x30\x18\xe3\xc2\xa8\x43\xb6\xd8\xf9\x74\x27\x9d\x88\x84\x5d\x3d\x74\x52\xd3\x6a\xa0\x3b\x85\x54\x8a\x5c\xd4\xb1\xc9\xa6\x51\xab\x2a\xf3\xf9\xc8\x76\xd6\x64\xa9\xc8\xb2\x17\xcc\x2a\x59\xee\xb2\x69\x65\x0a\xd0\x26\xfb\xe1\x99\x2b\xea\xb6\x75\x3b\xaa\x9a\xf5\xde\x57\x16\x97\x2d\x7c\x4d\x5b\x10\xf4\xbd\x29\xe6\xa8\xfc\x94\x1d\xaa\xdd\xb8\x86\x0d\x8d\x42\xde\xd1\x86\x91\xb9\xb9\x78\x1b\x3c\xf4\xf9\x44\x99\x45\x93\x02\xfd\x64\xbf\x59\x24\x4e\x90\x7f\x31\x44\x5a\x9e\xb1\xe0\x07\x9c\xe7\xa6\x3e\x3f\x19\x15\xda\xb0\xc5\xb7\xe1\x48\xf5\xbb\xb2\x93\x8a\xee\xab\xc3\xff\x3c\x23\x86\x3a\x66\x54\x35\xcd\x43\xc6\x88\xc8\x39\x25\x45\xd1\x3d\x8f\xbe\x0b\x0f\x8f\xc7\xe3\xf1\xd1\x7e\xff\xa8\x6d\x1f\x2e\xf4\x3a\x93\x20\x63\xb7\x27\x67\xf7\x6c\xaa\x99\xf0\xec\x0c\x53\x26\x90\x2f\xd3\x0e\x1d\x31\xf2\x71\x7a\x8f\xd6\xc9\xb5\xf2\x30\x57\xb3\xe3\x64\x5a\x49\x69\xf4\x1c\xec\x46\xb6\xef\x54\xba\x97\x03\xec\x85\xae\x1c\xe6\x7d\x99\x28\x33\x59\xd6\x24\xc0\xde\xbd\x0d\x8c\xfe\x78\x2c\x5c\xda\x4d\x6a\xcc\x84\x28\xf4\x28\xc9\x49\x92\x64\x4a\x44\x22\x6b\x54\x24\x16\x00\x97\xd5\x88\x54\xfb\x7f\xa7\x2a\xb1\x54\xfd\xd2\x34\xf8\x8c\x32\x51\x1d\xf4\xad\x16\x17\xe2\xcf\xfa\x56\xe3\xef\x15\x87\x44\xcc\x42\x20\x7a\x8b\xd9\xdf\x14\xf9\xa1\xaf\x90\x83\x7e\x5c\x3b\x25\xd0\x4e\x2f\xe8\x9d\x0d\xba\x87\x35\x76\xad\xe8\xf4\x2d\xed\xed\xb6\x19\xd1\xca\x70\xe4\xc0\x19\x7f\xc5\x28\x16\x76\xab\xf0\x7a\x7b\x14\xe0\xb5\xe7\x49\xb5\xa2\x0a\x79\x8e\x63\x48\x9d\x9a\x9f\x54\xe3\x45\x4e\x0e\x1e\x83\xf3\xb8\x97\x13\x78\xfe\xe8\x1a\x26\xb0\xd0\xce\xe9\x2c\xb2\x27\x78\x8a\x83\x90\x63\x7d\xc5\xe1\xf0\x29\x3f\x38\x5c\x95\xfe\x15\xd0\x73\xf2\xb9\x01\x69\x5d\x09\xb9\xb6\x23\xbb\x25\xb1\x5d\x30\x31\x08\xee\x07\x06\x02\xe7\x9a\x40\x35\xcf\xea\x40\xf7\x70\xae\x80\xcf\x15\xce\x1c\x9e\xff\x06\xfb\x06\x96\x3b\x73\x04\x8e\x33\x1d\x52\x6a\x3e\x3f\x60\x45\xba\xe8\x4f\xca\x9b\xf6\x87\xae\x27\x15\x20\xbc\xb1\x2d\x43\x19\xeb\x75\xa3\xea\xef\x83\xcc\x92\x5f\x61\x22\x0f\x83\xad\x62\x31\x19\x74\x40\x96\x92\x63\x78\x5a\x58\xef\x6a\xf0\x18\x8b\x36\x8e\xd0\xfc\xe8\x18\x27\x12\xa2\x9a\xdc\x33\x2e\x4f\x8f\x33\x1c\x8e\x87\xd9\x65\x44\x0c\x11\x35\xc2\x7d\xd8\xe0\x54\xe7\xaa\xc5\x07\xd7\x42\xda\x8a\x06\xcb\xc5\x37\x5b\xb2\xac\x2c\x10\x38\x8b\xf7\xd9\xf7\x09\xb0\x15\x5d\xe4\xe1\x48\x98\xa7\x80\xe8\x7c\x9d\x67\xd2\x29\x20\x7c\xf9\x8c\xee\x82\x9c\x02\x19\x4d\x38\x20\xba\x10\xef\xc3\xef\x04\xbc\xe4\x02\x1a\x33\x3f\x77\x97\xe3\x04\x60\x12\x62\x55\x78\x27\x24\x38\xd2\x90\xfd\xca\xe9\x16\x43\xc3\xe1\x89\x17\x68\xad\x0f\x42\x3e\x6a\xe4\xb6\x55\x41\xda\x39\x2f\xa4\x39\x8e\x78\x61\xf0\xe9\x95\xe0\x01\x91\x5a\x31\xf1\x8e\x9a\x66\x4c\xdc\x23\x33\x8e\xf8\xa4\x6c\x64\x50\x4a\x32\x59\xf1\xde\xa8\x2c\xdf\xa4\x9a\xfa\xc1\x7a\x3c\x95\xc9\xdd\x3f\xdf\x84\xc4\x05\x12\xcf\x0b\xc4\x7b\x25\x94\x93\xf4\x78\x14\x62\xf1\xea\x97\xe8\x47\xb7\xc3\xc7\xa2\x64\xd3\xe8\x56\x19\x2f\xbb\xa4\x1e\x61\xd0\xa6\x9d\xf6\x0a\xaf\x45\x67\xd4\xc4\x58\x98\xd9\x3c\xa1\x58\x3a\x32\x77\x17\xc5\x48\x3a\xc1\x15\x72\xb5\x5a\x4d\x27\x4a\xcd\xed\xa5\xd9\xce\xe2\xeb\x9b\x98\x76\x0f\xf8\xe4\xba\x0c\x55\x2e\x38\x5f\x84\x25\x06\xe3\xcf\xcd\x89\x51\xa5\x57\x33\x6a\x4d\xfc\xce\x02\xa5\x70\xd0\xd6\x93\xa9\xb9\x50\x24\x6e\xc5\xfc\x70\x4b\xa2\x29\xdb\x8a\xfa\x41\xdd\xc1\x66\x84\x14\x0f\x74\x5d\x68\x46\xb0\xdf\x4e\x54\x9f\xf0\x8c\x4a\xa1\x88\x68\xe3\x3c\xac\x56\xf2\x14\x09\x23\xf8\x65\x38\xe3\x9d\x6c\x7a\xa6\x05\xfb\x49\x14\xcb\x9f\x07\x2b\x31\x47\x77\x4e\x1e\xcb\x60\x58\x88\xb1\xf1\xd6\xdc\x65\xba\x14\x6e\x28\x8e\x8c\xb1\xe6\x51\x9c\x92\x61\x24\x70\xf7\x25\xad\xb3\x44\x1a\x83\x3c\x97\x6e\x75\xb3\x3e\xc5\xd9\x58\xa7\x89\x08\xac\x2d\x4e\xd2\xc3\xce\xa2\xba\x0c\x0d\x9a\xd4\xf1\x65\xd8\x72\x97\x46\x16\x28\xed\xc0\x77\x7a\xbd\xcd\x96\x83\xdd\xe4\x74\x9a\x11\x09\xdf\x42\x00\x79\x2b\x95\xa0\x1b\x40\xc7\x5e\xba\xf8\xdc\xe3\x44\x33\xdf\xa9\xe6\xf6\xde\x5e\x17\x2f\x2d\xfc\xb3\x9d\x25\x57\x9c\x88\x8b\x1d\x72\xf0\xf3\xbe\x62\x44\x03\x8a\x93\x4a\xeb\x8b\x9e\x58\xe3\x28\x88\xec\x0a\xbb\xff\x17\x5a\x14\x6a\xe0\x16\xe1\xe7\x8c\xf7\x86\xd2\x33\xde\xfb\x66\x81\x03\xe4\x53\xec\x4b\x39\xef\xce\xda\x5b\x7a\xcf\x64\x8d\x3f\x53\xce\x56\xfb\x90\xf9\x4c\x7b\xf1\xbc\xcc\x5d\x4b\xa7\x9b\xfc\xed\xd4\x5f\x20\x61\x41\x0a\xe0\xab\x41\x19\x24\x5f\x0f\x9c\x83\xba\xa3\x69\xd2\x8b\xb3\x37\x47\xd3\x88\x57\xf6\x30\x47\x05\x60\xda\xd4\xc1\x08\x95\x50\x42\x4e\x7c\xbd\xe5\xf3\x46\x2a\x12\x30\x25\x47\xf9\xcf\xa6\x22\x87\xb8\x7b\x1d\x5e\xe1\xb9\xd1\x0b\xdb\x62\xd6\x23\x76\x2b\x9e\xf7\x88\x2f\x18\xc0\x8e\xf8\x65\x01\xe8\x96\x02\xcf\x4d\xfd\x22\x23\x76\xd9\xde\x81\x5a\xd7\x16\x6f\xe2\x72\xda\x42\x63\x40\xa2\x9b\xb0\x44\xd4\x54\xe8\x0d\xc2\xac\x7f\x4e\xd1\xad\x4f\x23\xbb\x9a\x75\x19\x50\x4c\xc3\x2b\x87\x90\x54\x42\xab\x4f\x73\xe8\x90\x36\x01\x2f\x40\xf9\x41\xc2\x5f\x03\x28\xca\xab\xef\xdf\x5e\xdf\x03\x1e\x3a\xf0\xa7\xe2\x4d\xac\x35\x50\x88\x18\x14\x71\xdb\xf7\x6f\xaf\xe9\xe9\x53\xbf\x53\xc7\xd2\x57\xc8\xcb\x75\x46\x43\x52\x0a\x27\x64\xa1\x93\x4f\xbc\x37\xab\x86\x13\x84\x41\x98\x9a\x61\x26\x14\xea\xf4\x76\xe7\x0f\x0a\x83\x68\xdc\x83\x2b\x76\x6e\x09\x57\xa4\xdf\x09\x04\xb1\x30\xe7\x4c\x69\x89\x4e\x61\xe2\x1d\xe3\x5c\x26\x6a\x56\xf4\xbf\x9b\xae\x39\xea\x68\x97\x39\xdd\x38\xf1\x14\x61\xe6\xe5\x89\x34\xce\x1f\xc9\x15\x7b\x19\xc1\x2b\xb9\xc7\x00\x4e\x00\xf5\xc3\xbd\x38\x56\x21\x2e\xfb\x85\x78\x45\xbf\xee\x07\xc7\x78\xee\xa9\xcc\x65\xf6\x79\x5f\x5f\xf3\x50\x1a\xb0\x43\x8c\x8e\x35\x79\xf6\xb8\x23\xcd\xee\xef\xb0\x0b\xfd\x43\xfc\x1d\x16\xf7\x3f\xc4\xdf\xb5\x69\xd5\xa7\x7f\x84\x03\x91\xf8\x1c\x1d\x30\x8e\xf3\x59\x60\x06\xb2\xb4\x02\x11\xb0\x58\xbe\x8f\x8e\x5d\x37\x9d\xd0\xa5\x36\xc0\xd1\x6c\x7a\x1f\xe2\x95\x36\xd6\xf8\x41\xaf\xc7\x89\x96\xd6\x4a\x74\xe9\xfe\x9d\x9c\xb8\x9e\xe0\x97\xf8\xbf\xad\xc9\xf5\x2a\xb2\x8e\xe3\x6d\x1e\x6f\x6b\xd0\x30\x63\xe0\xe9\x2c\x8a\x00\x9e\x3b\x14\x77\x62\xbd\x45\x73\x8d\x1d\xf4\x56\xc3\x80\x62\xa1\xac\x17\xf8\x8a\x38\xc6\xe5\xde\x49\x47\x78\x63\x7c\x61\x0a\x5a\x49\xd5\xc8\xf8\x90\x91\x2b\x2b\x28\x35\xde\xd5\x44\x80\x8e\x82\x1b\xc6\x3a\xcd\x74\x40\x73\xa7\x06\x1f\x0f\x9c\xbc\x78\x67\xc5\x5b\xb5\x1d\x3b\x39\xe4\x97\x91\xa7\x05\xa6\xe3\x1d\xf0\xb0\xb1\x0a\x37\x27\xa0\xba\x18\x18\x57\xc6\xcf\xe3\xb5\x64\xb6\x65\x83\x10\x3d\x50\xec\xb0\x69\x2d\x64\x35\x70\x68\x36\x78\xc4\x81\x96\xcb\x28\x28\x45\xc5\x19\x35\xb8\x0d\x78\xfa\xb6\xd4\x0a\x72\x8a\x89\x6d\xa0\x60\x28\x0b\x2d\x48\x0e\x3e\x21\x1c\x0a\x9f\xcc\x4d\xf4\x76\x82\xa6\x98\x44\x93\x0b\xea\xc9\x7e\x4a\x50\xe1\x21\x1b\x6a\x12\xba\xdf\x95\xb1\x3b\xf3\x75\x46\xf1\xa0\x2f\x60\xe5\xd3\xcf\xd7\x21\xa2\xf4\x1c\x2c\xea\xd3\x29\x8c\x74\x49\x94\x4c\x80\xc7\x95\xc6\x83\x54\x06\xc8\x61\xa9\x96\xde\x1e\xe6\x67\x7d\xd0\x10\x81\x31\x92\xdc\x42\xf3\x26\xc3\xb4\x18\x4e\x47\x6f\xb2\x39\x8c\x77\x3d\xb4\x69\xf5\x9d\x6e\x47\xd9\x61\x63\xee\xc3\xfb\x87\x12\x6f\x63\x0d\x5e\x2c\x3f\x89\x7b\xd2\x21\x64\x1d\xf1\xa1\x78\xf4\x8b\xdd\xa4\x00\xf7\x8b\x3d\x02\xae\x16\x3d\x5d\x78\x25\x61\xa0\x7a\x91\x42\x55\xe7\x96\x57\x32\xab\xe2\xfc\xa0\x78\x7d\x61\x96\xfe\x30\x13\x47\xd8\x35\xe5\xd7\x01\x70\xa2\x00\xf0\x44\x7a\xb9\x08\x16\x06\xf4\x75\xb8\xd5\xa1\xb0\x10\x0a\x1d\xad\xf4\x32\x9d\x6d\x19\xcb\xf1\x74\xd6\xb2\xb9\x5d\xb4\x9a\x2d\xe2\x5f\x58\x5f\xb9\x61\x0e\x08\x17\xb4\x46\xbc\x75\x03\x15\x03\x9f\x3e\x9b\x4b\x59\x33\xf3\xf1\xdb\x9c\x35\x85\x06\xa7\xdb\x24\xd8\x95\x69\xd4\xda\xcc\x50\x54\x5e\x52\xc3\xa6\x2d\xf1\xa3\x13\x84\x0a\x1d\x28\x82\xcd\xff\x33\xd4\x3a\x4d\xa8\xc4\x88\x3e\x1b\x64\xe9\x34\xbe\x3f\x9c\x64\x6c\x59\x28\xa4\xdc\x4e\x0a\xbc\xf2\x48\x9e\x1d\x73\xf3\xd3\x39\x47\x17\x81\x5c\x50\x61\x80\xe4\xe7\x7c\x0c\x70\x1e\x3d\x20\x29\xea\x76\x16\x15\x2c\x77\x4f\x73\xa7\xdb\x8a\x7b\x1e\x11\xe0\x32\xc4\xf4\x09\x52\x13\xda\xf8\x61\x63\xee\x95\x69\xd1\x4d\x70\x43\x27\x3a\x33\x9b\xc8\xfd\x33\xe5\x33\x27\x0d\xa7\x54\x92\x65\x64\x41\x55\xfc\x4c\xa8\xe4\xf9\xea\x0f\x1b\xfa\x2b\x75\x60\x87\xbc\xa4\x92\xc9\x5b\x14\x5c\x03\x5f\xc6\x68\x72\x81\xe1\x2e\xa0\x5a\xdc\x11\xd2\xab\x00\xb1\x69\xa1\xc0\x70\xba\x79\x65\xa0\xae\xa5\x00\x5d\x99\xa2\xd4\xd6\x13\xa7\xc3\xcb\xb6\xc5\xfe\x14\xce\x87\x27\x0b\x4c\x22\x6a\x16\xb8\xca\x88\x9a\xf3\xf9\x32\xa9\x38\x84\xd5\x9c\x9b\x9d\xed\x90\xfb\xd8\xe5\x0d\x5b\xe8\xd2\x62\xb1\xc2\x0d\x82\x9e\xed\x85\xf9\x98\x2e\xdb\xed\xe8\x6d\xd4\xdc\xf8\x9e\x2e\x38\x4f\xb7\xc7\xc9\x9c\xbd\x27\x0c\x67\x68\x14\x9d\xc3\x9d\xa2\xdc\xd5\x22\xd5\x38\x4e\x5e\xae\x7d\x27\x8b\xcd\xe4\x9a\x4a\x66\xbc\x29\x8c\xac\xf8\x46\x4e\x0a\x88\x03\x92\xe8\x7a\x46\xf8\xe2\xc9\x9c\x32\x26\x0e\xdb\xf5\x28\x24\x2a\x0a\x92\x79\xd9\x55\x39\x2f\x0e\x64\x29\xe1\x39\xc4\x76\x93\x89\x41\x25\x9e\xe4\xb1\x55\x05\x5d\x4b\xf6\x63\xb3\xa3\x93\x3b\x34\x9e\xf0\xe3\xfe\xaf\x6f\xde\x09\x32\x9b\xfa\x41\x6f\xb7\xb0\x01\x8b\x3f\xef\x94\xc1\xd7\x96\x9d\xdd\x2b\xe6\x6e\x4d\x33\x92\x89\x8d\x9e\x95\x3d\xa8\x10\x5f\xd2\xb4\xbc\x1d\xe5\x41\xae\x83\xdd\x80\xdc\xcd\x04\x3e\x7c\x8f\xee\xd8\xbd\x6a\xf4\xe6\xb8\x12\xd7\x4a\x0e\x86\x5e\x69\x0d\x1e\xb2\xf7\x5e\x89\x8c\x3d\xc1\x90\x26\x3f\x3e\x96\xb9\x7d\x99\x49\x92\x4f\x5f\xde\xa8\x66\xe4\x99\x82\x2e\x05\x74\x0c\x14\xbe\xef\x6c\x17\x99\x36\x6d\xcd\x1a\xf6\x00\xc1\xb7\xf5\xbe\x64\x9a\xce\xda\x90\x3f\xeb\x4b\x55\x7f\x29\xe3\x65\x54\x2b\x4f\xe6\x66\x6e\xcb\x85\x78\xa7\x1c\x46\x00\xc4\xef\xcf\x80\x07\x12\xdc\xd0\x4b\x8e\x78\x67\x00\x4d\x8a\x34\x2d\x22\xd6\xf0\x12\x35\x4a\x54\x81\x46\x6e\x6e\xe6\x59\xac\x23\x75\x11\x9b\x76\x98\xf6\x93\xe6\x3e\xb9\x8b\x51\x75\x7f\x1b\xd5\xa8\x56\xe2\x85\x17\x7b\x79\xa4\x97\x8b\x37\xea\x20\x9c\x6a\xac\x69\x5d\x88\xc7\xa0\x3d\xde\x19\x75\x62\xec\xc3\x1d\xde\xd9\x90\xcc\xdb\x56\x1a\xfd\x95\xf3\x4b\x20\xae\xb7\x14\xeb\xed\x2d\xff\x9c\x03\x91\xe3\x04\xf4\xea\x39\xfd\x9a\x83\xf4\xfc\x06\x5f\x7c\x8d\x6f\x0e\xb2\xb6\x2d\x8c\xd9\x2f\xb6\x3d\xce\xcd\x9f\x61\x74\xa2\x0d\x14\xd7\x72\x6f\x0f\x78\x14\xb7\x3e\x62\x86\xf6\x4e\x75\x1b\x7a\xc4\x06\xf4\x3f\x15\x42\x7b\xa0\x40\x11\xe3\xad\x08\x5a\x42\x4c\x27\x34\x93\xe3\xd5\xb3\xdc\xbb\x90\x1e\x73\x28\x22\xd3\x4f\xdb\x44\x81\x3f\xb8\x5d\x2f\x48\x76\xc7\xd1\x44\xbb\x27\x45\x5c\x39\x07\xdd\xb7\xcf\x2e\x47\x07\x7b\x4e\x4f\x4f\xa6\xaa\x16\x79\x00\x3e\x0c\x15\x40\x48\xf9\xa1\xbb\xf7\x59\xe0\xc2\x24\xf2\x6a\x87\xf5\x2c\xb4\x88\x03\x4d\x02\x81\x28\xc4\xe4\x0c\x22\x5d\xec\x40\xa0\x10\xb2\x7a\x2a\xc2\x30\x78\x32\xaa\x3e\x2f\xd8\x47\xc6\x80\xe3\xc0\xd8\x2d\xcb\x5d\xfc\x14\x2a\x19\x57\x80\xb1\x06\x5b\x4a\xe6\xc4\x09\xb4\x7a\xff\xf6\x3a\x67\x86\xe7\x42\xc2\xf6\x48\x16\x83\x41\x6d\xe5\xd0\x86\x08\x23\xcc\x98\x77\xd2\x13\x03\xce\x5f\x52\xc0\xd0\x5f\x8c\x82\xee\x86\xdf\x6a\x83\xd1\x31\x51\xb4\x67\xa3\x17\x68\x59\xc9\x5f\x03\x78\xf1\xd8\x03\x7b\x26\x5e\x1f\xea\xc1\x2e\x7f\xfb\x1f\x37\xaf\x5f\x9d\x8b\x4f\x8f\x0e\x87\xc3\x23\x28\xfe\x68\x1c\x3a\x65\xa0\x0b\xed\xb9\xf8\x5f\x2f\xaf\xcf\x85\xf2\xcd\x77\x2b\xf1\x92\xb8\x76\x62\x86\xec\x32\x89\xee\xd0\xe8\x7f\x38\x0e\xff\x02\x37\xe7\x15\xc3\x06\xc5\xfc\x0d\xcb\x5c\xf6\x82\xd1\x0b\x97\xe5\xc2\xf3\x8f\x78\x69\x2e\xdb\xc7\x9b\x41\xe1\x5d\x33\xfc\x31\xcd\x48\x6c\x0f\xc1\xc2\xfc\xc4\x38\xff\xd2\x89\x9b\xe7\x97\x7f\xf8\xf7\xff\x29\x9e\xbf\xbc\xbc\x12\x3b\xf5\x49\xb4\x7a\xab\xe8\x20\x2a\xac\xe8\x3b\x1d\xc6\xfa\x7f\x3d\x82\x49\xf0\xe8\x46\x6f\x8d\xf4\xe3\xa0\xc2\xb8\x13\x7b\xc8\x45\x8b\x4e\x36\xb7\x4b\x4f\xc6\x4c\x41\x74\x63\x0d\x13\xe0\x45\x63\x4d\xd9\x7b\x02\x09\x17\x3b\xae\xf0\x4a\x47\x32\xae\xc2\x94\x89\xfb\xff\x4e\x19\xe0\x8f\x63\xd7\x96\x5b\xdb\x5a\x85\x29\xa0\xda\x9f\xa7\x85\x31\x82\x97\x35\x1d\x30\xa5\xff\xc0\xb8\x2d\xbb\xe0\x0c\x02\x59\xa1\x77\x08\xbc\x9a\x16\xc6\x47\x7a\x33\xb5\xe8\x42\xbc\xa0\xd7\x82\x83\x5a\x96\xf2\xa2\x6a\x36\x43\xc2\x56\xb2\x0b\x71\xad\xbc\xd8\x47\xab\x19\xce\x72\x42\x37\x2f\x52\x3a\x0b\x2e\x67\x07\xba\xfc\x92\xc7\xf4\x0a\x8e\x74\x73\x1a\x96\xd7\x56\x16\xb3\x97\x31\xf2\xae\x3d\x2d\x92\x07\x72\x5b\xc8\x4a\x21\x34\x53\x78\x34\x0c\x59\xb7\x34\x40\x1c\x57\x6d\x71\xec\xb2\x2d\x23\x9c\x0d\xe6\xaa\xf7\xb4\xcc\x34\x66\xd9\x62\x76\xe4\xf7\x68\xf4\xa5\x1b\x5f\xe7\x74\x8f\xad\x3d\x17\xe1\x0e\xd8\x39\x7b\x38\x9d\x87\x4b\xe3\xed\xb9\x18\x4d\xfa\x4d\xf7\x6f\x58\xf1\x0b\x9f\xe8\x61\x09\x9f\xd1\x01\xae\x3d\xa7\xd7\xdf\x52\xc2\x6c\xbc\xc9\x4a\x9e\x6e\xb9\x51\xbb\xc2\x5d\xb7\xfb\x80\xcb\x9e\x04\x0c\x3c\x09\x52\x07\xe2\xf3\x73\xf3\xba\x27\x8e\x03\x85\xb7\xf4\x3d\xa0\xd1\x97\x22\x3f\x86\xfe\xdf\x4f\xc9\x9c\x8c\xd8\x2d\x77\x34\xcd\x6e\xb0\x46\xff\x5e\xf4\x8d\x36\xee\x18\x21\x6d\x9a\x91\xfc\xce\x9f\x28\x8f\xef\xe4\x2c\xed\x55\x64\xaa\x8c\xbc\x25\xed\x2e\x81\xbf\xb2\x74\x46\x8a\x0e\xc5\x18\x2f\x76\x57\xdc\x5a\x4b\x75\x77\x59\x58\x9c\x79\x10\x65\x9a\x11\xef\xdd\x33\xe9\x9f\x01\x27\x75\xcc\x84\x6e\xa6\xea\x5c\x97\x4e\x35\x9c\xd2\x2f\xe8\xca\x70\x90\x7b\xc3\x5b\x7d\xf8\x50\xc3\x93\x98\x56\x6a\x6b\x61\x17\x43\xb9\xa4\xdc\xc2\x30\x66\x09\x72\xfb\x5c\xe2\x00\xbd\xaf\xbc\x74\x08\x20\x78\xe5\x50\x1b\xaf\x42\x80\xcc\xd9\xdb\x2a\xc7\x09\xa9\x5b\xed\x1a\x7c\x99\xfc\x3e\xdc\x4f\x08\xe8\xeb\xb0\x53\x9b\x43\x1c\x7e\x7a\x2f\x60\x92\xd9\xda\xbd\x44\x77\xba\x27\xf8\x63\xb6\xbb\xed\xa4\x31\xe4\x3a\x4c\xbf\xf2\xb1\xe8\x3b\x7b\x0c\x8f\xdb\x3c\xc1\x2f\x7e\xb0\x6f\x01\x24\x7b\x0a\x66\xfd\xd3\x15\x3d\xc8\xf2\xcc\xfa\x66\x27\xbf\xf9\xf1\xf1\xfa\x27\x7e\xf9\xfe\xe1\xa0\x44\x67\xed\x6d\xb8\x35\x20\x5b\x9c\xd7\x31\xb4\x7f\x1f\x9f\x4c\x49\xc7\xf9\xb2\x6d\xc9\x07\x43\x1b\x22\x45\x46\x37\xa0\x5c\x7c\x0c\x93\x5b\x35\x11\x73\x70\x04\x62\x3b\x99\xf4\xa9\x37\x4b\x9d\x49\xca\x2a\x42\x21\x05\xd0\xa4\x32\x28\xd9\x3e\xc2\x1d\x9b\xcc\x29\x2b\xf1\x6e\xa7\x8e\x31\x84\x2b\xbe\xd8\x87\xa7\x76\xe5\x6b\x05\xd8\xbc\xf0\x8e\x4d\x7e\xf8\x65\xeb\x92\xc8\x7f\xe1\xa3\x07\x0c\x88\x41\x56\x0a\x73\x14\x6d\x6a\x46\x6e\xb6\x2b\x1c\xf2\x97\x7a\x31\x7f\x38\x26\x42\x4d\x1f\xb8\x49\x3d\x3d\xf9\xc0\x4d\x5e\x34\x7f\xe5\x26\x2b\x8a\x92\x75\x24\xc2\xa2\x07\x6a\x31\x2c\xf3\x37\x6c\x52\x57\xbf\xe0\x19\x9b\xe5\x91\x9b\x9a\x26\x3e\x3b\xd4\xf7\x39\xa0\xb7\x79\xe7\xbe\xe0\x41\x9b\x69\x70\xa6\x2f\xb0\x52\x2c\xb5\x25\xf7\xbd\x8c\x0d\xf8\x9c\x3b\x7a\xab\x37\x9b\x15\xc5\xf5\xac\x9d\x1d\x07\x7c\xd4\xfd\x17\xfc\x16\x37\xf8\x4d\x20\x1c\xd5\xec\x82\xc3\x9b\x51\x22\xdf\xfb\xbe\x60\x5f\x48\x4a\xc4\x1b\x69\x68\x70\xbb\x93\xba\x43\xe5\xf0\x42\x3c\xd1\x9b\x0d\xdd\x4e\x7b\x65\xf1\xf9\x3f\xca\x59\x51\x11\xb7\xb3\x87\x1a\x7e\xe1\x7b\x37\xe8\xf7\xb4\xb3\x07\x2a\x74\x03\x29\x19\x98\xeb\x3b\xed\x6b\x0e\x29\x7a\x03\x1f\x18\x14\x35\x83\x18\x0d\x06\x40\x0b\x30\xef\xe9\x33\x87\x02\x94\xf1\x82\x78\x38\x81\x38\x6b\x63\xd4\x2e\x54\xce\xd3\xd9\x04\xce\xd0\x00\x77\xd6\x22\xff\x41\xed\x3b\x81\xe4\xef\x47\x9c\xb5\xd1\x2e\x9a\x20\x98\xd0\xc8\x54\x7f\x79\xf1\x8a\x3e\x31\xa0\x27\x47\x74\xc1\xc8\xae\x4f\x75\xc7\xf4\xe6\xb7\x2f\x7b\x8c\x1a\xa6\xda\x10\xcd\x0c\xf2\x44\x96\x9c\xdd\x69\xca\x63\xbb\x12\x0e\x6f\x6d\xbd\x97\xe6\x18\x6f\x3b\xde\xd8\xbd\x62\xcb\xc3\x41\x85\xf7\xcb\x77\xf6\x90\x5d\x00\xb3\x56\x40\x11\x86\x0a\x04\x09\x56\x40\x40\x5b\x85\x70\xb6\xab\xa5\xb0\xb6\x21\x8f\xe2\x14\x13\x2f\xa6\x55\xca\x20\x11\xa2\x1d\xe4\x06\xef\xe3\xc0\xff\x98\xda\x0f\x2a\x15\x7b\x33\xa8\x47\xd3\x62\x7c\x6f\x06\xfe\xc5\x34\xb9\x23\x9f\xed\x34\x02\x69\x64\xc2\x15\x2f\x6f\xc5\x99\xe3\xa0\x6f\xbc\xe0\x4a\xc4\x34\xfb\x6b\xf4\xed\xbd\xe0\xb9\x2f\xae\x6c\xab\x8a\x3e\xe5\x17\x72\xf0\xa9\x2e\xb7\x13\x91\x0e\xe8\xb7\x40\xcf\xf0\xf4\x83\x6d\xc7\xc6\xaf\x8a\x76\x17\xa5\x49\x50\x53\x61\xd6\x89\xce\x6e\x51\x57\xc7\x28\x9d\xe4\x91\x38\x9a\x56\x0d\xce\x93\xf3\xb1\xcc\xb8\xab\xde\xf7\x03\x19\xc6\x03\x7a\x2f\xb7\xf1\x99\x20\xb9\xa5\x50\x03\x29\x0f\xed\xbc\xe1\x0d\xe4\xa2\x4c\xdc\x80\x83\x9f\x72\x16\xea\xcf\xcb\x2d\x8a\xa4\x4d\x1e\x60\x1a\x34\x28\x6b\x68\xcf\x75\xbb\xac\x01\xc5\xce\x12\x52\xe7\xbb\x49\xc8\x29\x7d\xf1\xb3\xe1\xe7\x65\xcb\xd1\x6d\x63\x0e\x68\xf5\xa4\xb2\x5e\xd3\xaf\xd5\x6a\xb5\x30\x6b\xe6\x0f\x59\xf5\x83\x7a\x34\x1d\xeb\x0c\x3e\x12\xe0\xcf\xea\x61\xd7\x89\xde\x6a\xe3\x05\xdd\x2d\x91\xbe\x98\x29\xe1\x5c\x80\x87\x56\x5b\xf3\x08\xb7\xa9\xd4\x8c\xe9\x8d\xaa\x58\x1d\x4f\x94\x34\x65\xa6\xb3\x1a\xef\xaa\x84\x15\x81\x97\x55\xca\x65\x81\xb3\x27\x2d\x0c\xbc\x35\x36\x5b\x50\x24\x06\x27\xa8\xf2\x3c\x78\x01\x98\xb6\x3c\xce\x4a\xe7\x48\x53\x98\xe5\x5d\x2e\xd4\x33\xbd\x9d\x82\xef\x92\xba\xde\x9a\x78\xb4\xea\xe5\xf6\x9e\x3d\x6d\x56\x5b\x7e\x3e\x49\x55\x7c\x66\x13\x9b\xae\x81\xf2\xae\x4b\x86\x87\x45\x0d\xe0\x94\xbc\x46\x66\xa2\xc6\x0c\x17\xdf\x0d\xcc\xd6\x55\x98\x07\x98\x9e\x4a\x84\xb8\x0c\xb8\x01\x87\xdf\x55\xf5\xc1\x0e\xdb\x8f\xf8\x18\x3a\xc5\xe0\x8d\x31\xf8\xf2\x13\x27\xb4\x8a\x02\x4c\x7c\x58\xf9\x04\x60\x7a\x6c\x39\x61\x0c\x13\xf8\x19\x2c\xd3\xd2\x9b\x03\x00\xc8\x26\x8d\x8f\xf2\xb0\xd7\x39\xbf\xcb\xb3\x0a\x31\xe5\xe9\x8d\x78\xbe\x8c\x95\x57\x47\xa1\xde\xd3\x15\x1f\x0e\x99\x5d\xb1\x37\xf8\x85\x78\x83\x3f\x2a\x6d\xee\xb4\x07\xf9\x61\xaf\xc8\x1d\xec\x05\x26\xe0\x7e\x63\x8d\xaa\x0a\x7f\xe9\x0a\x23\xfd\xd6\xc1\x57\xfa\x22\x78\x4d\x73\xfa\xe4\x29\xf5\xe2\xe9\xf3\x2c\x7c\x2d\xa0\x2c\x6f\x90\x01\x72\xa4\xca\xc2\xdd\x52\x80\x8e\xec\x11\x4a\x22\x09\x31\xf5\x3e\xe8\xe2\xd1\x1b\xe0\x0e\x63\x08\xda\x86\xb8\x30\x78\x82\x21\x85\x0b\x27\x15\x60\xd6\xa6\x88\x26\xe3\x56\xa9\x9a\x8c\xd7\xec\xe8\xe2\x69\x2a\x06\xc2\x21\xba\x1c\xff\x4c\xf0\xc5\xc3\x0f\x6c\x2e\x94\xf4\x68\x15\x25\x8b\x4e\xdd\xa9\xae\xb0\x1f\x22\x22\xd0\x04\x7e\x3e\xf1\xd4\xfb\xeb\xe9\xdc\xf8\x27\x5e\x13\x99\xe3\xb8\xf7\x3d\x11\x44\x97\x08\x9a\x35\x06\xc7\xe1\x44\x23\xaa\xcc\x69\xf9\xab\xee\x8e\x2d\x3f\x4c\x9e\x1f\xea\x4c\x5e\x28\x8f\x59\x4b\x4f\x95\x9f\x72\xa1\xb8\xcf\xab\xbb\x04\xcd\x98\x59\x41\xb8\x88\xe9\x4b\xfd\x2d\xd8\x59\xdc\x0e\xdb\x7f\xcd\x57\xbc\x78\x79\x6d\xd6\xea\xd9\x6b\xda\x45\xa3\xbf\xee\x55\xed\x93\xfe\x49\x05\x87\x99\x1a\x71\x66\x4f\xbd\x61\x07\xef\x2d\x52\x3e\xfc\x96\x37\x38\x1e\x6b\x65\xfe\x41\xec\x52\x40\x4f\xbe\xd1\xd1\xf6\xe7\xdf\x7d\x3b\xe1\x57\x72\xdf\x03\x70\xd3\x56\x02\x67\x8a\xa1\xd9\xf2\x46\xde\x5b\x22\x97\x66\xec\xc4\x47\xe1\x9f\x7f\x14\x6e\xd9\x1f\xe1\xb2\x6d\x83\x35\x8f\xdf\x80\x0a\xf4\x4b\x16\xc3\x4d\x16\xd0\x78\xfa\xe4\x5f\xa2\x1c\xca\xad\x7c\xa5\xaa\x98\x6f\x15\xf3\xfa\x15\xff\xdf\xe9\xbe\x2e\x1e\x82\x7b\x19\xd3\xb3\x37\xe1\x7e\x88\xc5\xd8\xd2\x13\x5e\xc9\x9d\xa4\x27\xfe\x8a\xf7\x9a\x7b\x7a\x95\x2d\x01\xd1\x37\xbd\xe1\xbd\x94\x33\x2d\x5f\xd6\x41\xff\xeb\xc1\x76\x2a\x36\x54\xbc\xb5\x9d\x4a\xcd\x2b\x03\x93\x95\x05\x63\x99\x98\xce\x66\x81\xf0\x2a\x57\x4c\xc7\xf7\x16\xc3\x93\x8c\x31\x95\xf7\xd8\x3c\xcc\x3c\xca\xe3\x8c\x1d\xd5\x9b\x1f\xa6\xd0\x06\xe3\x39\xf3\x6e\xfc\xca\x1e\x2a\xda\x8a\x57\x18\xf9\xec\x42\xfc\x87\xd5\x86\x53\xca\x4a\x29\x0d\x24\xa3\xf4\x00\xc2\x5b\xd0\xb1\xe8\x35\xce\x79\xfe\xe4\xb1\x27\xdc\x89\xe2\x33\x4f\xfc\x28\x28\x0a\xf6\x1c\x5f\xcf\x90\xd3\x46\xf9\x4c\x11\x61\x9d\xbc\xbb\x40\xb7\xbe\x8b\x7a\x73\x88\x2f\xa9\x18\x6f\xf4\x4e\xab\x3b\x0f\x26\x6e\xb4\xbb\xc5\x4b\x5a\x6a\x1f\xda\x81\x8e\xbc\xa9\x1d\x78\xb1\xb8\x6c\x47\x0e\xf1\x25\xed\x80\x5a\x30\x96\x53\x70\x70\x3f\xd9\x1e\xd9\x86\x47\xe8\x0b\x7f\xc3\x69\x13\xd3\x73\x43\xef\xb2\xfd\x1f\x7d\x36\xdb\x89\x3c\xe3\x56\x4b\x5b\x2a\xe5\x90\x8b\xdd\x82\xc8\x41\xfe\xd3\x8b\xcf\xd4\x7e\x9e\x09\x60\xd0\x2c\x28\x19\x41\x33\xcf\xe8\x22\xf4\xf9\x7c\x5f\xa2\x76\x25\x11\x11\x65\x05\xe6\x0d\x9c\xf9\xf9\x2d\x99\xe0\xc2\xdb\x1f\x24\x2f\xe6\x9b\x0a\x0a\x8c\x61\x24\x5b\x84\xa8\xe3\x5a\x85\x05\x96\xd5\x3a\x47\x16\x99\x39\x42\x45\x26\x3e\x87\x0b\x2b\x36\x97\xf6\xb2\xf3\x16\x85\x27\x44\xc5\xcd\xc1\x00\xb5\x97\xc7\xe9\x33\xab\x20\x62\x97\xab\xe6\xb4\x62\x35\x6f\x4a\xda\xd7\x9f\xe9\x3b\x65\xd2\x84\x39\xa9\x5c\xad\xf2\xa5\x3e\x9f\x20\x69\xda\x6d\x07\x8c\x27\x16\xc6\x1a\x98\x45\x36\x15\x10\xe1\x0f\xb1\x97\x8d\x34\x53\x6e\x80\xfe\x68\x4a\xee\x1f\xde\xc7\x14\xbe\xa2\x01\xc8\x36\xee\x6f\x01\xb2\x05\x8a\x60\x69\xda\x9c\x05\xdc\xd7\x10\x5a\xf3\x5f\xd1\x10\xe4\x1b\x5f\xd8\x90\xf3\xd0\x0a\x92\x4e\x80\x0b\x2c\xad\xff\xfb\xda\x37\x51\x9f\x70\x72\xbe\xcd\x75\xa8\xc0\x0c\xd0\x8d\x12\xf5\xbb\x45\x37\xca\xcc\x1c\xbd\x5a\x4d\x57\x49\xe6\x07\x9a\xad\x94\xcc\xe5\x3c\xb4\x05\x3d\x3e\xf9\x6a\x0e\xef\x72\x09\x95\xb1\x86\x9e\xb1\x37\x3e\xbf\xbe\x93\x21\xe7\xb3\x1f\x3f\x1c\x59\xd2\xc1\x77\x6b\x8a\x87\xe9\xd2\x23\x63\xa4\x09\xa2\x6b\xd5\xe0\xfc\xaa\xaa\x3e\xe0\x58\x7d\xac\x5a\xe9\x76\x6b\x2b\x07\x3c\x77\x08\xbf\xab\xe2\xfe\x70\x55\x3c\x90\x3c\x91\xd0\x5c\x35\x21\x6a\x41\x4f\x39\xfa\x1d\x28\x81\x51\x7b\xb8\x2c\x12\x1c\xbd\x19\xbc\x0d\x22\xe2\x76\xe4\x38\x16\xec\x29\x8e\x77\x59\x9d\x57\x7b\xf1\x8a\x12\xaa\xbd\x35\x9a\x9c\x52\x5f\xd2\x2f\x6d\xb6\x55\x11\x8c\xe5\x29\x7c\xd0\x5b\xf4\x9c\x72\x2d\x9d\xaf\xbc\xf5\xf8\xfa\xe0\x3b\xf8\xff\x83\x38\x6b\xab\xd4\x75\xb4\x79\x6b\xe7\x51\x78\xba\x09\xbf\x5d\x06\x90\x7c\xca\x28\x96\x14\x7f\xe4\x28\xb0\x9d\x68\xa2\x1f\xb3\x76\x73\x2b\x11\xeb\xe8\x96\xaa\x0c\x21\x56\xd0\x19\xab\x95\x5e\xae\x83\x51\xe7\xc7\x35\xda\x6a\xd7\x3f\x91\xc1\xf3\x3c\x4b\x28\x46\x24\xcf\x28\x4e\xfb\x52\x72\xb9\x97\xa6\x74\x7a\xef\xb3\x48\x72\x5e\x96\x75\xc9\x66\x56\x4b\x38\xa0\xc9\xd3\xc2\xe5\x80\x94\x12\xae\x09\x14\xd8\xcb\x57\xf2\xf3\x2c\xba\x0f\x53\x24\xd1\xdd\xab\x49\x4f\xc8\x9c\x9c\xa7\x75\x76\xab\x8d\x20\x13\x75\xd9\x3d\x16\xd8\x4b\x9c\x21\x54\x51\x81\x02\xe3\xc7\xe6\x29\x78\x5a\xee\xa5\x2b\x4b\xe3\x02\xcd\x13\x38\x04\xc8\x0c\x30\x05\x2a\x75\xab\xa5\x89\x14\xf4\xf0\x38\x99\x48\x19\x5f\x82\x74\x07\x4d\xef\x2d\xde\xe0\x8f\x45\x98\x61\x44\x63\xe5\x68\xb2\xdc\xa6\x53\xd2\xd4\xa3\x59\x6b\xd3\xd6\x96\x5f\x2d\xbd\x82\x44\x31\x9a\x35\x7a\xbc\xbd\xc6\xf5\xe8\xee\x2d\x94\x6d\x8c\x97\x5d\x27\x28\x2b\x94\xcc\xee\xe1\x2c\xef\x90\x09\x33\xef\xb5\xec\x66\x29\x93\x82\xe8\x92\xe8\x21\x31\x48\x22\xbb\x73\x84\xec\x2f\xc2\x31\x69\x65\x82\x88\x68\xbe\xbe\xa9\xb8\x01\x00\xc3\xd7\x77\x6a\xd2\xc8\xf2\x35\x77\x06\xf9\x0c\x86\x49\x13\x17\x51\x7c\x7d\x23\x71\xab\x35\x5b\xda\x76\x4e\x34\x12\x14\xfb\xc6\x0e\x2d\x6b\xae\x9d\x75\x1e\x6d\xcf\xf4\xb6\xdd\xfd\x28\x4f\xb5\xfa\x5e\x9c\x5f\xd1\x8d\xad\xf6\xf5\xb6\x49\xcd\xb7\x62\x2b\x87\x35\x70\x6e\xd8\xdd\x39\xf2\x8b\x35\xa5\xad\x73\xb9\xf8\x7d\x04\xc6\x06\xb5\x20\x4c\x2d\xa0\x3f\xd5\xb6\x41\x61\xc4\x04\xd9\x75\xb5\x73\x3b\xf6\x28\x78\xab\xe8\x74\xe6\xe1\xca\xb9\xdd\x63\xc9\x0f\x00\x2b\x3c\x7b\x77\x0f\xe9\x79\x89\x6f\x1b\x89\x57\x82\x7f\xc0\xf8\x26\xc8\xda\xb1\x74\x10\x6d\x81\x5a\xdf\xdd\x5b\xd1\xa4\x2f\x19\x5f\xcf\x68\x3b\x60\x53\xbc\xfa\xa2\x1e\x84\x90\x14\x6f\x31\x89\x4f\x7e\x1a\x85\x1e\xcf\xcc\xc5\x50\xd4\xb3\xce\x87\x0c\xf6\xba\xb6\x9b\xd9\x9c\xbf\xa7\x8a\x7b\x46\xe1\xe1\xd7\xd4\x9a\x77\x93\x1f\xab\x3e\xdd\x4b\x6d\xb4\x9f\x2d\x85\xb7\x98\xcc\xef\x8e\xff\x53\x0b\x62\x09\xf1\xbf\xba\x20\x86\xac\x55\xd3\x2e\xe5\x02\x02\xbe\x78\x5c\x8f\xbd\xd7\xb8\x51\xdc\xd0\x0b\xc8\xef\xf1\x3b\x67\xd8\xe3\x30\x80\x90\xb8\xb5\x83\x1d\xbd\xa6\xe7\x76\x28\x4d\x3c\x0b\x69\x6e\xa1\x00\x1e\x75\x1c\xeb\x91\x03\xc8\x85\x32\x2f\x31\x59\xbc\xc7\xf7\x92\x52\x29\x94\x9f\x42\x19\xd9\xa1\x41\x98\x2c\xd5\x28\x58\x71\xa9\xcb\x90\x91\x95\xe4\x32\x76\xed\x25\x47\x05\x63\xe0\xd7\x9c\x92\xc1\xe2\x01\xa3\x1a\xea\xce\xda\xdb\xb1\xaf\xa1\xab\x18\xb2\x85\x92\xc5\x35\x26\x8b\x77\x90\x3c\xaf\x21\xb4\x2a\x16\x9b\x34\xea\x54\xb9\xcd\xa0\x66\x65\x9e\x0e\x6a\x0e\x1f\x28\xb7\x53\xb2\x9f\xd1\xed\xb9\x92\xfd\x8c\x6a\x08\x39\x27\x00\xc2\x9e\xa6\x42\x5e\x4a\xb7\xa8\x47\xe7\x25\x5e\xb4\xdd\xa9\x3a\x34\xba\x1f\x4d\xe1\x0d\xc8\xf1\x27\x4a\xb0\x3c\x35\x6d\x15\x1f\x0a\xce\x5a\x65\xd7\x7f\x55\x8d\x77\x01\xfa\x35\x7d\x66\x50\x6b\x6b\xbd\xf3\x83\xec\x41\x14\x46\x8f\x71\x22\xd3\x2f\x21\x1d\x44\xe1\xe6\x76\x46\x29\x82\x9e\x93\x8a\xa0\x4f\xd3\x6a\xef\x7a\x69\x6a\xe7\x87\xb1\xf1\xe3\xa0\x5c\xac\xf0\xe5\x4d\x2f\x8d\xb8\x89\x19\xb3\x1a\x67\x25\xf3\x19\x3a\x2d\xbc\x54\x73\x23\x9b\x9d\x5a\xac\xfa\x0a\x72\xee\xad\x7b\x56\x36\xaf\x7c\x56\x7c\x69\xa5\x0c\x76\xa3\x3b\x60\x4a\xeb\xb1\xb9\x55\xbe\xde\x49\xb7\xab\x3d\x3e\x00\x97\xe1\x7a\x13\xc0\xc4\x2f\x08\x26\x9e\x4b\xb7\x13\xef\xd0\xe8\xb6\x80\x75\xdb\xd4\x7b\xe5\x25\x7a\x29\x65\x58\x9e\x5d\x89\x97\x9c\xbc\x54\x0a\x8d\x71\x35\x6b\x40\xbc\x0a\x41\x28\xcd\x30\xbc\x46\x7b\x1d\x2b\x45\x97\x11\x64\x09\x9b\x51\x9f\x78\x4b\x6f\x8e\x0d\xbf\x15\xfc\xc9\x43\x1b\xde\x52\x4a\x06\x8b\x6a\xde\xb6\xa9\x03\x8f\x44\x07\x16\x8c\xb5\xf8\xec\x0a\x97\xef\x8c\x83\x25\x60\x62\x5c\xcf\xae\xc4\x1b\x39\xba\x45\xc0\x5e\xd2\x62\x3a\x09\x19\xaa\x0f\x80\xa1\xe6\x29\x1c\x57\xea\x88\x94\xc4\x56\x48\xc7\x5e\xe1\x5d\xcd\xbd\x34\x72\xab\xea\x5e\x92\xdf\x28\x68\xdd\xe2\x25\xa6\x89\x37\x90\xc6\xb0\x46\x1d\xf2\x43\x95\x74\xba\x7b\x49\x89\x01\x8c\x34\x0b\xd4\x27\x28\x25\xc8\xc2\x6d\x70\x91\x46\x16\xcd\x79\x45\x6c\x48\x4a\x4b\x1b\x68\x6f\x1d\xa7\x85\x98\xbd\xf1\x5d\x25\x4e\xc7\x5b\x13\x83\xda\x6a\xe7\x39\xd0\x02\xc6\xc6\xc5\x2b\x79\x6f\x31\x39\xe8\x37\xf9\x25\xcb\x77\x16\x7b\x99\x75\xac\xf4\x5a\x0c\xdd\xfc\x7c\xdc\xe0\x15\xe3\xc8\xdf\xf0\xe0\x9e\xa1\xf2\x12\xdc\xf6\x4a\xcb\x43\x70\xdf\x23\x48\x7a\xdd\x9f\xce\x36\xbb\xbc\x34\x6a\x96\x41\x55\x9b\x60\xb8\x46\xad\x33\xa3\x72\x2f\x9d\x3b\xa0\x57\x72\xb0\x76\xe3\x79\x81\xd0\x9e\x6f\x86\xa1\xb5\x1d\x7d\x87\x47\xc3\xce\x63\xa1\xf5\x29\x68\x19\xfb\xb6\x45\x11\x83\x09\xc1\x39\x9f\x3b\x57\x4c\xb4\xc8\x66\x0a\x3a\xc4\x94\x73\x64\x2f\x3f\xf1\x4b\xf9\x40\x52\x0e\x2b\x2c\x3f\xe9\xfd\x98\x9b\xaa\x68\xa8\xb1\xb3\x7a\xaf\x4f\x96\x0d\x66\xbe\x6f\x6f\x94\x17\x8f\xbe\xc7\x77\x26\x9d\x12\xdb\xce\xae\x31\x4c\x24\xc5\xba\xec\x00\xc5\x77\x8c\x43\xbb\x3a\x9f\x94\x68\x20\x0c\x0d\xc6\x9f\xe5\x24\xed\x07\xbb\xd3\x6b\xed\x69\x40\x16\x0a\x04\x80\xf0\xec\xdb\x36\xce\x65\xa8\x89\xa7\x78\x51\x08\xc3\xde\x40\x06\xcd\x50\x3b\x64\xee\x03\x61\xce\xe3\x41\x7d\x0d\x2a\x06\xfb\xce\xcf\x30\x64\x65\xb2\x17\xf3\x40\xec\xa3\x98\x70\x39\x1e\xbd\xef\xed\x00\x5d\xa0\xc9\xf6\x39\x5c\x04\x2e\x08\xbc\x90\xbd\x97\xa6\x4c\x32\xf1\x87\x19\x43\xac\x3f\x4c\xce\x7b\x4f\x90\xcb\xb9\x81\x6f\x15\xd4\xf6\x60\x92\xe1\x31\x6b\x29\xbd\x64\x00\xed\x4d\xc1\x07\x2c\x48\xa6\x20\xf3\xe2\x93\x60\xa0\x64\xe5\xa1\x24\x62\xf4\x97\xf4\x86\x95\x1d\x62\x9c\x02\x72\x44\x67\xb3\x64\xde\x80\x9d\x74\xec\x7c\x73\xa2\xfe\x74\x4c\x8a\x21\xe9\xf2\xea\x73\xfb\x58\xd9\x00\x3a\xca\x8b\x37\x64\x66\xc7\x2b\xae\x6c\xca\x82\xdf\xd5\x65\x36\x64\xf7\x39\x0f\xdb\x81\xef\xd7\x4f\xb8\x7b\x71\xbe\x5d\x70\x79\x2c\x91\x73\x6f\x4c\x28\xfd\x83\x30\x29\x9d\xfd\x84\x63\x1f\xb2\xc2\x22\xe3\x9e\xd6\x97\x2d\xe7\xa2\x36\x2a\x51\x9e\xca\x52\x5a\xde\x04\x4a\x99\x9f\x0e\x53\x3a\xdb\x0f\xc5\x85\xf8\x33\xfd\xe2\x74\x34\x22\x92\xf4\x36\x84\xb4\xe9\x5d\x2d\x34\x0e\x33\x9f\x9d\x34\x79\xc2\x69\x8b\x66\x53\x29\x7a\x77\x20\x84\xa2\x60\x66\xce\x59\x59\xeb\x29\x25\x7f\x98\x90\x52\x14\x06\xf7\x6a\x63\x98\xaf\x96\xd3\xe7\xde\x5c\x59\x23\x19\xcd\xa4\x71\x19\x56\x84\x5a\xde\x2c\xb2\xd6\x38\xd5\x8c\x83\xf6\x47\x8c\x50\x69\x1b\xdb\xd1\x4d\x4e\x4c\xc3\xe0\x94\x90\xc6\xb0\xd3\xab\x26\x94\x8a\x31\x09\x2e\xc4\x73\xeb\x3c\xa7\xf4\xf4\x34\xe1\x1b\x3b\x84\x14\xb4\xdf\xb5\xe8\x50\xad\x4d\x2b\x9e\xbc\xca\xd3\xc3\x4e\x15\x72\xdf\xf0\xf7\x12\x4c\xe6\x97\x25\x07\xa3\xcd\xf6\x07\x7e\x2b\x24\xe0\xc0\xd7\x4d\xec\x40\x8e\xd0\x7d\x07\xed\xf5\xea\x93\xc7\xb3\x37\x63\x3d\xbf\x1b\xba\xd3\xdb\x1d\x3a\x1d\xe8\x4e\x6d\xc9\xc7\x1f\x56\xd1\x2a\x10\x1e\xc4\x20\x7e\x02\x09\xc5\x1f\x3e\x69\xf9\x45\x3a\x95\x83\x60\x8f\x10\x20\xf6\x48\x7a\x8a\xc0\xa6\x96\x6e\xa7\x8a\x98\x7b\x12\x7a\xfa\xa0\x2b\x32\x88\xb8\x61\x43\xeb\x9d\xde\x9a\x47\x1a\x9f\x12\xd8\xf3\x13\xfe\x74\xc9\xbb\x88\x34\xb7\x9a\xd5\x10\x5c\xad\x30\x26\xfc\x67\x5a\xe3\xc6\xd0\xf4\x9b\xf1\x73\x2d\xdf\x4b\x8d\x01\x0b\xf1\xff\x49\x30\x07\xda\xe0\x9a\x9f\x4b\x56\xbe\xd9\x25\x50\xbc\x48\xcf\xf3\x82\x6e\xa7\x7c\x0a\xf3\x86\xe2\xd3\x07\x22\x53\x7c\xfa\x80\x19\x4f\xf7\x22\x00\x9d\xf9\x17\x10\x7b\xd8\x6b\x6b\x27\x81\x31\x39\x71\xd9\x8a\x9b\xcb\x30\xe9\xf7\xbe\xaf\xd9\x04\x7d\xf3\xf2\xdd\x9b\x7b\x56\x11\x80\xf2\x0c\x47\xc8\x6c\x9a\x43\x16\x4f\x75\xcc\xca\xe6\x7b\x08\x60\x42\x2b\x86\x8d\x33\xe8\x95\x47\x4b\xc7\x2d\xc3\xdd\x27\xab\xc1\xe4\x1d\x94\xf3\x83\x6e\xe8\x31\x5d\x2e\xb3\x12\x2f\xc7\xce\xeb\xbe\x53\x21\x25\x38\x1a\xe2\x25\xec\x5e\x0e\xe1\xd9\xd1\xc6\xee\xf7\x52\x3c\x3c\x7f\xb8\x2a\xf8\x4e\xed\xf1\x81\x67\x8e\x30\xf8\xee\xfa\x46\xfc\x6a\x9a\xe1\x48\xfe\x08\xdc\xd3\x5b\xdd\x03\x58\x7d\xa7\x06\x16\xa8\x6f\x75\x8f\xb0\x7f\xc2\x94\xb0\xf0\xe5\xbe\x76\x6a\xb8\xd3\x4d\x9c\x6e\x6f\x2e\x5f\xa2\xb1\x48\x37\x2a\x67\x3b\x5c\x35\xbe\xc6\x13\xc4\xf5\xd4\x88\xcb\xd1\xdb\x42\x5c\x0f\xac\x53\xf7\xb8\xf7\xe8\x3e\x10\x30\x7f\x9a\x63\x2a\x53\x93\x73\x41\xa0\xf4\x4c\xbe\x2b\xa1\x0b\x31\x2f\x72\xf5\xa9\x1e\x50\x96\xf9\xdc\x0d\xa6\x55\xc1\xc7\xf3\x4d\xbb\xc4\xf3\x85\x5e\x7a\x39\xb2\x4c\xc0\xba\xaf\xd7\x8b\xf1\xc6\xca\x12\x05\x64\x4d\x5b\x0b\xbb\x4b\x4c\x50\x47\xc7\x89\x79\x89\xfc\x64\x7d\x4e\xd8\x05\xef\xb7\x7b\x3c\xde\x78\xca\xa1\xd4\xa5\xe3\x05\xb6\x13\xa8\x49\xfe\x42\x98\xf5\x91\x5c\x2e\xf8\x78\x92\xcf\x9a\x93\x88\x97\x42\x2a\x2a\xc7\x50\x79\xe4\x40\x92\xe5\x71\x57\x65\x99\x2b\xeb\xe6\x44\xe6\x2a\x9b\xf1\x19\xd1\x8b\xd0\x90\xee\xc6\x17\x57\x82\xb3\xfb\x75\x76\x54\x48\xb3\x69\xea\xe3\xce\x47\xd2\xc1\xfe\x1a\x0f\xa8\xd9\xfe\x5a\x9e\x53\x33\xac\xec\xfb\xb8\xef\xf7\x7d\x57\x6c\xfa\x19\xc8\x1d\xf1\xcd\x0c\xe2\x4f\x1c\xff\x31\x03\xa2\xd0\x09\x39\xd0\xfb\xb7\xd7\x01\x60\x2a\x0f\x70\xb2\xdd\x6c\x3a\x6d\x54\xbd\xa7\xeb\x39\xaf\xe9\x53\xbc\xb4\x6d\xac\x9f\x43\x91\xd4\x83\x1d\xc9\xc0\xba\xcd\xe2\xd1\xbf\xc5\x44\x20\x4e\x00\x1f\x46\x9c\x07\x03\x1d\x2a\x92\xae\x9e\x65\x71\x45\x90\x95\x57\x02\x9a\x12\x87\xb4\xe4\x4b\xfc\x93\x0e\xe2\xa9\x77\x83\x57\xae\xea\xc1\x5a\x5f\xf7\x92\xb6\x04\x4c\xa7\x5b\x5c\x6f\xad\xf5\xe2\x8d\xf4\xbb\x50\xa8\xb3\xdb\x79\x89\x6b\xbb\x3d\x01\xce\x51\x40\x69\x99\x84\x3e\x50\xda\x74\x1e\x61\xb7\x62\xdb\xdc\x2e\x1b\xed\x9b\xe7\xcb\x43\x0d\x50\x73\xe9\x31\xcb\x04\xd1\xd7\xd7\x1c\xcf\xb8\xa6\x59\xc4\x92\xb0\x17\xbf\x70\x98\x63\x9a\x4c\x79\xb1\x13\x23\x0b\x59\xb9\x70\x97\x25\x77\xe8\x1d\x12\x72\xaf\xf1\x6b\x06\x94\x93\x6c\x46\x29\x00\xb8\x55\xc7\x1a\xe3\x1d\x31\xd0\x7f\xaa\x23\xc5\x39\x5a\x00\xdc\x42\x75\x11\x6c\xab\x8c\xf8\xf6\xa1\x73\xbb\x47\x94\xf5\xf0\xbb\x59\x19\xd0\xae\xf7\xe3\x9e\x6e\xa5\xea\xdf\x15\x3d\x95\x87\x51\xc7\x31\x03\x6b\xbb\xd1\xbf\x2b\x71\x05\x19\xf7\x15\x75\x0b\xa5\x5c\x95\xc6\xbc\xb7\x69\xf0\x72\x03\xc6\xd2\x18\x22\x74\x41\x99\x54\x60\x4e\x24\xf4\x14\x0c\xc2\xff\x0d\x7e\x91\xb8\x92\x63\xc3\x17\x1d\xea\xa4\x26\x3d\xc5\x17\x1e\x82\xb2\xc4\x90\x7b\xf9\x29\xd9\x4c\xd0\x1c\x42\x56\x97\xa9\x99\x85\xc1\x7b\x7c\x56\x78\x50\x6d\xdd\xe9\x46\x19\xc7\x4f\x7b\x70\xa2\xb8\xe6\xc4\xe9\x0a\xdf\x79\xdf\xd7\x5b\xc4\x1d\xd6\x37\xc6\x4b\x7b\x96\x30\xb3\x2c\x80\xa6\x05\xa4\x41\xbd\xd7\xdb\xf8\xa4\x0c\x8b\x04\x68\x0c\x43\x52\x88\x97\x21\x37\x20\xe0\x7b\x83\xf5\x06\xe4\x4a\x20\x3c\x1d\x8d\x34\xc7\xf4\x9e\x24\xcb\x9c\x57\x29\x2f\x8e\x56\xbb\x4e\x63\xf5\x24\x78\xbc\x2c\x8e\x54\xbb\x2e\x5e\x95\x4f\xa9\xb9\x0a\x94\x52\x73\xd5\x2f\xa5\x32\x0f\xc8\x79\x58\xbb\xae\x9d\xeb\x02\x1b\xbb\xb9\xb9\x2e\x79\x65\xca\x4d\xf2\xe1\xb7\x20\xec\x3f\xe8\xad\xf3\xdb\x41\xb9\x07\xc2\x9a\xee\xf8\x5d\x56\x82\xa7\x52\x3e\x75\x38\x75\x8a\xc3\xfd\xad\xd3\x5e\xfd\xf1\x01\x1e\x7c\x3e\xf0\xba\x5d\x3f\xf8\xae\xd8\x76\x34\xde\xb4\xcc\xf6\x1d\xdd\x9c\xa0\x4f\xb4\xbb\x2a\xd0\x05\xb2\x18\xc3\xe1\x45\x10\xd2\x11\xd8\xff\xbe\x24\x6d\xd8\x10\x92\x2c\x18\xb7\x83\x5c\x0e\x0c\xed\xda\xd9\x03\xc3\xb2\xcb\x49\x7c\xae\x09\xaf\x23\xbf\x0d\x68\x7e\xc1\xe4\xd4\x40\x7a\x5c\x24\x3c\x40\xcd\xf7\x17\x43\xf3\xf0\xcd\xe9\x17\x86\xae\x1f\xc7\x55\xa2\xbb\x64\x47\x7e\x09\xed\xcf\x4d\xc7\xd3\xf6\xcf\x78\x4b\xe8\xc5\xfd\x3c\x86\x97\x40\x23\x7b\xdf\xec\x64\x9a\xf5\x57\x94\x10\x77\x64\x0a\x20\xd2\xc0\x54\xe8\xd8\x0d\x84\x82\x8c\xe0\xed\x57\x71\x8d\x7e\x1f\xb1\xb3\x4e\xf9\xa4\x38\x17\x85\xde\x42\x5e\x54\xb4\xf3\xc2\xa1\x74\x08\xce\x15\x47\x3e\x04\xf7\x58\x1c\x79\x8c\x31\x57\x77\xca\x6c\x71\xda\xfd\x17\x7c\x8a\x6b\xfc\x8c\x14\xa2\xa8\x1d\x78\xf4\x60\x47\xb6\xf9\x41\x0a\x9e\x40\xd8\x31\x6d\x14\x9f\x55\x36\xf2\xb1\xc9\x85\xa2\x97\xf8\xbd\xdc\x42\x86\x3d\xb9\x59\x72\x7e\x64\x5b\xaa\xb3\x39\xcb\xfa\xf5\xfa\xf5\x04\x72\x61\x75\x73\xce\x02\x37\xe0\x9c\x85\xb5\x8f\x07\x16\xb8\xe5\xb1\x1e\x8d\x47\x15\xb8\xe7\xe1\x6a\x09\x70\x11\xa4\xde\xd0\x55\xe4\x0b\xf1\x14\x0a\xe0\x1b\xd5\xa6\xa5\x88\x82\xb8\xee\x20\x09\x64\xc9\x1f\xc4\xd9\xdd\xbc\xb4\xe3\x47\xf9\x13\x78\x7a\xf2\x8f\x63\xc7\x41\xe1\x24\x79\x92\xd7\x55\xa4\x31\x7a\x5a\x2d\x93\x98\x20\xe7\x14\x8e\x6c\x1a\x4f\x19\x93\x8f\x25\x9e\x2b\x2e\x62\x22\x48\xd9\xca\x9e\x58\x01\x81\x5e\xd2\x77\x09\x84\x47\xf1\x77\xb2\x8b\x50\x2f\x38\x61\x56\xab\xc9\xeb\x34\xfc\x60\x53\x1a\x06\x72\x11\xce\x18\x1d\x5d\xdd\x5b\x16\xbb\x18\xba\x1f\xec\x9d\x0e\xbe\xb8\x04\xff\x86\x93\xd2\xb6\x49\xdf\x09\x73\x80\x60\xd4\x69\x13\xb3\xb7\x3a\xaa\xcd\x57\xf8\x55\xcc\x2e\xe6\x11\xb0\xa8\x09\x36\xb1\x89\x1b\xe5\xb9\x44\x94\x7d\x9b\x48\x99\x70\xc2\xf8\xec\x2a\xd2\x86\x0e\x23\x27\x9d\xe9\xf4\x46\xc5\xa3\x4b\xee\xcd\xb5\xde\xa8\x02\x18\xb6\x73\x17\x62\x9a\xc1\x46\x7e\x23\x5e\x9b\xee\x38\xe9\x44\x8e\x8a\x7b\x92\x30\x45\xca\x68\x3c\x4f\xce\x08\x43\x09\xcb\x24\x0f\xd0\xbc\x23\x65\xe0\xbc\x25\x4d\x39\xf1\x76\xe0\x3b\x70\x69\x15\x3f\xe3\xa4\x09\x45\x37\xaa\xc5\x40\x00\x6d\x1d\x4b\x30\x5d\x9f\x86\x1c\x71\x89\x39\x89\x3d\x82\x6e\x11\x1b\x0e\xaa\xc5\x62\xa3\x01\x2a\xb4\x07\x63\x66\xec\xf4\x76\x87\x8f\x8a\x64\xad\xa2\xd0\x19\x47\xe3\xe5\x27\xf1\x3c\xe4\xe7\x18\x40\x50\xc3\xd2\xa0\x46\x39\x16\xd2\xb0\xd4\x35\x26\xe0\x3e\x2e\x85\xd3\x66\xdb\x51\xcc\x88\xef\x4e\x16\xaf\x9b\x9d\x1c\x64\xc3\x2f\x50\x45\x44\x57\x29\xb5\xc4\x06\x65\x96\xb1\x85\x40\x15\x11\x07\xbd\xcf\xfd\x2d\xa9\xf9\x18\xaa\xa2\x28\xb8\x6d\x6a\x39\x6c\xf9\xd0\xf9\x72\xd8\xe2\x7b\x97\xae\x40\x8d\x72\x9d\xca\x76\x88\x28\xe9\x4d\xf7\x08\x02\xc7\x57\x84\x72\x68\x7c\x1b\x81\xed\x22\x0b\x25\xf0\xfa\x42\x56\xe0\x0a\xaf\x33\x24\x9f\xd7\x85\x22\x18\x76\x2c\x95\xc0\x88\x63\xf7\x16\xe0\xc3\x75\x02\x7f\x76\xb5\x00\x9c\x2b\x92\x71\x0a\x81\x02\xb9\x38\x85\x00\x8a\x05\xc3\x5c\x28\x84\xe4\xf9\xdd\xda\xe0\x90\xbe\x6a\x06\x8a\x3d\x0d\xff\xde\x49\x77\x1b\x5d\xd5\x8b\xf3\x88\x90\xe6\x9a\x9d\x6a\xc7\x8e\x34\x0a\xfa\x99\xe0\xd5\x27\x1f\x9c\x1e\x70\xf9\x86\x0c\x0c\xff\x60\x47\x17\xe2\x3f\xc0\xcf\x02\x40\x7d\x52\xcd\x98\xf9\x3f\xfd\x4a\xdf\xec\x70\x90\xd0\xd8\x70\x69\x6d\x34\x46\x9b\x2d\xf0\x47\xf2\xe7\x8e\x30\x4b\x2f\x10\x87\xa6\xa3\x22\x1b\x14\xda\x93\xf5\xc7\xea\xc3\x40\x54\xc1\xa9\x3f\xb8\xca\xf3\x43\x9e\x1d\x19\x66\x26\x7e\xfe\x01\x16\x83\xc0\xb4\x18\x0c\xa4\x8e\xc1\x41\x30\x1a\x0c\x41\x72\xa0\x90\x08\xcf\xce\xea\x2c\xa5\xc1\x08\xc5\x5a\x55\xa7\x1a\xbc\xab\x8d\xdc\x16\x3e\xc4\x65\x97\x4a\xb6\xaa\x80\x78\xc2\x9f\x05\x8c\x36\x64\x5a\xa0\x2c\xd2\x96\x5e\x50\x1a\xa3\xcc\x2e\x2f\x04\x73\x1d\x01\x73\x60\x27\x34\x8d\xdd\x70\xca\x14\x32\xd4\x8c\x40\x97\x5d\x37\xa3\x46\xae\x0b\xe5\x69\x18\x4c\x3f\xbb\x61\x92\xf5\x69\x3a\x8c\x21\xcb\xf6\x38\x8b\x57\xb3\xd6\x46\x9b\x1b\x8f\x48\xb8\x8a\xf1\x39\x8f\xde\xea\x03\xd1\xfe\x63\x08\x44\xc0\x87\xc7\xc1\x67\x23\xf3\x93\x2c\xa2\xb4\x9d\x61\x74\xb1\x0a\xa3\x48\x72\x11\x0a\x1d\x39\x7b\xf5\x66\xa9\xd8\xa0\x4c\xf6\xc0\x0d\x7d\x15\x75\xe1\x15\x26\x8a\x00\x7a\xf6\xe1\xfb\x8f\x2e\x84\x00\x2d\xf0\x7d\xf8\xc3\x47\x40\xf9\xe1\x8f\x1f\x09\x2b\x3f\x7e\xcb\x58\xd3\xa3\x85\x59\x89\xef\x3f\xba\xc7\x6e\x68\x1e\x4f\xcb\x0a\xe9\x27\x60\x90\xf9\x3f\x12\xe2\x5e\x0e\x2a\x7b\x90\x1d\xe7\x32\x25\x6b\xc7\xcf\x55\x93\xbd\xf4\xac\x0d\xe1\x79\xaa\xf8\x08\x00\xb7\x28\x7c\x4f\xc8\x4a\xbd\x5c\xee\x62\x22\x19\x0f\x0f\x3d\x81\x74\x21\x7e\xa3\xa0\x8d\xfc\x24\x52\x56\xe0\x31\x1d\xd8\x3e\xa6\xa2\xff\x86\x1d\x05\x04\xbf\x55\xf4\x6e\x7b\x44\xc0\xaf\xb4\x7f\x05\x02\x8a\x14\x99\x30\x84\xc8\x91\x5f\xd5\x08\x0e\x89\x99\x9a\x41\x09\xaa\x15\x68\xa8\xfe\x72\x44\x44\x8f\x49\x64\xcc\xdf\xc2\xbc\x2d\x5e\x5e\xcc\x11\xe2\x6b\x51\x27\xa9\x33\x43\x47\x44\xfa\x6a\x6c\x4c\xaa\x29\xba\x48\xb1\xaf\x46\x88\xef\x6a\xce\xf0\xf1\x6b\x9b\x5f\xdf\x59\x22\x5e\x7c\x19\x35\x50\xcd\xa8\x43\x7c\x56\xf5\x5f\x5d\x34\xcc\x99\x62\x1d\x81\xff\x04\xfc\xbc\xb8\xff\x90\x16\xf7\x22\xba\xb0\xb8\x31\xce\xac\x97\xdb\x6c\x65\xcb\x6d\xd1\x59\x6c\x22\x96\xe1\x7e\xce\xd7\x7e\x8e\x30\x5c\x22\x45\x94\xa1\x71\x88\xf3\x2b\x5b\x56\x7d\xf0\xd6\x76\x1f\x2b\xb9\x85\x45\x2e\xb7\xb6\x02\xee\xc5\xf7\xd4\x91\x91\x19\x7b\xa8\xe8\x13\x7e\x7d\x0f\x0c\xe4\x7b\x8e\x2b\x2f\xce\x5c\xf5\xfd\x1e\x13\xe8\x55\x46\x4c\xd8\x61\xc2\xce\x8e\xf8\xd4\xce\xf7\x2d\x7e\xb6\xf2\x88\x5f\x07\xfc\x3a\x28\x75\x4b\x85\x71\x3f\xfb\x5e\xec\xad\xf1\x3b\x4c\x39\xe2\xf7\x51\x49\x7e\xa8\x87\xe2\xd7\x5f\x00\x6b\x0a\x1f\x67\xae\xa2\xea\x38\x3d\x7c\x9c\xb9\x0a\x6a\xe5\x54\xfa\x79\xe6\xaa\x56\x1e\x39\x09\x7f\x9d\xb9\x0a\xaa\xe7\x24\xfa\x79\x86\x62\x88\xdf\x05\x84\xf4\xfb\xcc\x55\xd0\x0e\x4e\xa4\x9f\x67\xae\x1a\xe4\xa1\x4e\xed\xe2\x5f\x98\x9a\x5a\xc5\xbf\xaa\xea\x43\x3b\xd8\xfe\x77\x6b\xd4\xc7\x2a\xbc\xcc\x9c\x1e\x50\x7f\x32\xd8\x3e\xf8\xea\xab\x81\xce\xaf\xf0\x91\x3e\x6f\xc5\xd8\x77\x56\xb6\xab\x8a\xc3\x1d\xd5\xda\xf4\x63\x34\x09\x73\x54\xf3\x87\x9e\xc1\x52\xf4\x7a\xba\xac\x7c\xec\xd5\xaa\xc2\xf3\x0b\x6f\x6d\xbd\x46\xe1\x13\x4f\x2e\x9c\xfe\x5d\x89\x6f\xff\xfe\x77\x84\xd7\xbf\xab\x7f\xfc\x43\xbc\xfc\xe5\x3b\xa1\x3e\x35\x4a\xb5\x4e\xec\xd9\x1d\x2f\x80\xed\xe5\xa7\xa7\x05\xe4\xaa\xe2\x3b\xa4\xec\xff\x45\x77\x48\xb1\xfa\xea\xff\x0f\x00\x00\xff\xff\xe9\x76\x90\x8e\xcc\xec\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\xeb\x72\x1c\x37\xb2\x30\xf8\xbf\x9e\x02\xd6\x09\x86\xec\x08\xaa\x15\x9e\xf9\xce\xb7\x1b\x0e\xd3\x5e\x9a\xb2\x2e\xe7\x50\x97\x23\x4a\x33\xdf\xac\x42\x51\x46\x57\xa1\xbb\x31\xac\x06\x6a\x0a\x28\xb6\xda\x13\xf3\x06\xfb\x00\xfb\x7c\xfb\x24\x1b\x79\xc1\xad\xaa\x9a\x92\x66\xce\xf7\x87\xec\x02\x12\x09\x20\x01\x24\x32\x13\x89\x84\xec\xfb\xba\x55\xae\x11\x17\xe2\x52\xf4\x52\x9b\x4e\x39\x27\x9c\xea\x36\x8f\x76\xd6\x79\xd5\x8a\x67\xda\x0b\xa7\x86\x3b\xdd\xa8\xaa\xda\xd9\xbd\x12\x17\xe2\xb9\xdd\xab\xaa\x95\x6e\xb7\xb6\x72\x68\xc5\x85\x78\x12\x7e\x57\xea\x53\xdf\xd9\x01\x80\x7e\xa5\x5f\xd5\x4e\x75\x3d\x94\x51\x5d\x5f\x39\xbd\x35\xb5\x36\xe2\x42\xdc\xe8\xad\x11\x2f\x0c\xa5\xd8\xd1\x87\xa4\xd7\xa3\xa7\xb4\xb1\x0f\x49\xef\xfb\x6a\x50\x5b\xed\xbc\x1a\xc4\x85\x78\xcb\x3f\xab\x83\x5a\x3b\xed\xa1\xa6\x3f\xd3\xaf\xea\x4e\x0d\x4e\x5b\xc0\xfe\x27\xfa\x55\xf5\x72\x0b\x00\x6f\xe4\x56\x55\x5e\xed\xfb\x4e\x62\x81\x77\xfc\xb3\xea\xa4\xd9\x8e\x04\x73\xcd\x3f\xab\x66\x50\xd2\xab\xda\xa8\x83\xb8\x10\x57\xf8\xb1\x5a\xad\xaa\xd1\xa9\xa1\xee\x07\xbb\xd1\x9d\xaa\xa5\x69\xeb\x3d\x75\xf3\xbd\x53\x83\xe0\x74\x21\x4d\x2b\x20\x1d\xbb\xa0\xda\x5a\x9b\x5a\x3a\xee\x87\x6a\x85\x36\x42\xba\x0a\x51\x19\xb9\x0f\xa5\xe1\x67\xa5\xf6\x52\x77\x40\x35\xf8\x5f\xf5\xd2\xb9\x83\x45\xd2\xbe\xe1\x9f\xd5\xa0\x6a\x7f\xec\x15\x92\xe0\xd1\xbb\x63\xaf\xaa\x46\xf6\xbe\xd9\x49\x68\x26\xfd\xaa\xaa\x41\xf5\xd6\x69\x6f\x87\x23\xc2\x85\x8f\xca\x0e\x5b\x69\xf4\xef\xd2\x13\x7d\x5e\x67\x9f\xd5\x5e\x0f\x83\x05\xd2\xbe\xc4\x1f\x95\x51\x87\x1a\xf0\x88\x0b\xf1\x4a\x1d\x72\x2c\x90\xb3\xd7\xdb\x81\xa8\x08\x99\x2f\xf1\x0b\xb0\x50\x1e\x63\xa2\xac\x88\x6d\x63\x87\x5b\x4e\x7d\x0a\x3f\x27\x28\xed\xb0\xe5\xdc\xb2\x5d\xd2\xc8\xad\xe2\xdc\x97\xf8\x51\x00\xb8\x4a\xb6\x7b\x6d\xea\x5e\x1a\x05\xa4\xbb\x84\x2f\xf1\x06\xbe\x2a\xd9\x34\x76\x34\xbe\x76\xca\x7b\x6d\xb6\x30\x06\x97\x94\x24\x6e\x38\xa9\xca\xf2\x62\xda\xd1\x8e\x71\x94\xc5\x85\xf8\x8b\x1d\x07\xf1\x86\x3e\x29\x2f\x2b\x84\x99\xb1\x64\x25\x1b\xaf\xef\xb4\xd7\x8a\x2a\x0b\x1f\x55\x3f\x76\x5d\x3d\xa8\xbf\x8d\xca\x79\xc8\x7a\x33\x76\x9d\x78\xcb\xdf\x95\x76\x6e\xc4\x12\x2f\xf0\x47\x55\x35\xd2\x34\xd8\x9d\x2b\xfc\x51\x55\x1f\xb4\x71\x5e\x76\xdd\xc7\x8a\x7f\x00\x30\xfd\x22\x3a\x79\xed\xb1\xb1\x9c\x28\x6e\xbc\xea\x1d\x10\x5a\x3c\xd5\x83\xf3\x8f\xbc\xde\x2b\xf1\x76\x34\x55\x6b\x9b\x5b\x35\xd4\xb0\x20\x71\x29\xbd\xd8\x88\xa3\x1d\x1f\x0e\x4a\x0c\xa3\x31\xda\x6c\xc5\x33\xbb\x75\x42\x1b\xa7\x5b\x25\x9e\x20\xf4\xb9\xe8\x3b\x25\x9d\x12\x83\x92\xad\xf8\x51\x0a\x2f\x87\xad\xf2\x17\x0f\xea\x75\x27\xcd\xed\x03\xb1\x1b\xd4\xe6\xe2\xc1\x99\x7b\xf0\xd3\xb3\x51\xb7\xaa\xd3\x46\xb9\x1f\x1f\xcb\x9f\x44\x23\x07\xb5\x19\xbb\xee\x28\xd6\x6a\x03\x6b\xe5\x68\x47\xd1\xec\xa4\xd9\xc2\x3a\x39\xfa\x1d\x54\xa8\x8d\xf0\x3b\xed\x04\x2c\xd4\x6f\x2a\xa0\x92\xf6\xaa\x6e\xd7\x81\x29\x61\x83\x30\x79\x50\x4e\xbc\x3c\xde\xfc\xd7\xf5\xb9\x78\x63\x9d\xdf\x0e\x0a\x7f\xdf\xfc\xd7\xb5\xf6\xea\x8f\xe7\xe2\xe5\xcd\xcd\x7f\x5d\x0b\x3b\x88\x77\xfa\xc9\x2f\xab\xaa\x5d\xd7\x81\x2e\x4f\xa4\x97\x6b\xe8\x42\x1c\x2b\xc8\xa4\xa5\x14\xf3\x70\x41\x01\xcb\x43\xf6\xe6\x3c\x2e\x52\x5e\xa0\x8b\xcb\xb1\x5d\xd7\xbc\x86\x23\x8e\x57\xb0\x90\xdb\x75\x22\xf0\x1b\x22\xdd\xe8\x94\x78\xf1\xea\xd5\xeb\x27\xbf\x08\x65\xb6\xda\x28\x71\xd0\x7e\x27\x46\xbf\xf9\x3f\xeb\xad\x32\x6a\x90\x5d\xdd\x68\xa0\xcd\xe0\x94\x17\x1b\x3b\x50\x4f\x57\x95\x73\x5d\xbd\xb7\x2d\xd4\x72\x73\x73\x2d\x5e\xda\x56\x55\xbd\xf4\x3b\x6c\x88\xdf\x55\xee\x6f\x1d\xd0\x2b\x56\xf8\x6e\xa7\x04\x4e\x5d\x04\xb2\x9b\x40\x1e\xd1\x72\x1b\x57\xe2\xc7\xf5\xf0\x53\xd6\x2e\xb9\x76\xb6\x1b\x3d\x97\x38\xec\x94\xc1\x71\x72\x5e\x0e\x5e\x48\x17\x58\xff\xaa\x52\xc3\x50\xab\x7d\xef\x8f\x30\x3a\xdc\x86\x29\x76\x42\xd2\x48\x63\xac\x17\x6b\x25\x10\x7e\x55\x19\x5b\xd3\x4a\x05\xb6\xd9\x6a\x27\xd7\x9d\xaa\x89\xa5\x0f\x81\x23\xfd\x05\x26\x07\x15\x64\x08\x51\x40\x00\xc5\x60\x9b\x40\xee\x0c\x33\x47\x1a\x81\x48\x05\x2f\xf5\xbc\x85\x81\x2f\xc4\x51\x23\xd6\x10\x13\x66\x2d\xac\xc2\x30\x84\x39\x73\xd9\xf7\x9d\x6e\xa8\xea\x67\x94\x97\xa6\x0f\x6c\x9a\x3c\xf6\x39\x1c\x0e\x7f\xc8\xcb\x26\xc1\xe8\x81\xa4\x83\x28\x78\x30\x96\xdf\xa9\x41\x89\xdd\xb8\xa5\x8d\xa3\xb3\x63\xfb\x0d\x72\xf0\x40\xdf\xc4\x27\xc5\x5b\x6b\x3d\x8d\x79\x04\x48\x55\x5c\x76\x1d\xee\xd3\x83\xda\x5b\x0f\x84\xe3\x62\xc0\x8b\x0e\xba\xeb\xa0\xa7\x4e\xde\xa9\x56\x78\x4b\xeb\xad\xd5\x83\x6a\x00\xf1\xaa\x1a\x46\x53\xf3\x64\x7f\x3b\x1a\x9a\xf0\x21\xad\x9c\x59\x08\xb5\x1f\x9d\x17\x3b\x79\xa7\x80\xf0\x20\x2c\x78\xbb\xd8\x4e\xec\xd2\x30\x1a\x5c\xc2\xab\xaa\xb5\x7b\x89\x1b\xff\x13\xfc\xc1\xdf\x39\x7e\xed\x84\xdc\x6c\x54\xe3\x9d\xb8\xb9\x79\x2e\x9a\xce\x1a\x25\xde\xbf\xbd\x76\xb0\x0c\x76\x75\x6f\x07\x14\x12\x6e\x9e\x8b\x37\x76\xf0\x31\x2d\x23\x34\x40\x98\x71\xbf\x56\x83\x38\xec\x74\xb3\x23\xb2\x43\x09\x98\xc5\x6a\x10\xda\x89\xd1\x69\xb3\x3d\x17\x9d\x82\x1e\x68\x4f\x13\x00\xfa\x10\x66\x1d\x80\x6f\x94\xf4\xe3\xa0\x70\xd3\xaf\xd7\xa3\xee\xbc\x36\x35\x54\xc8\x78\x90\x2d\x88\x5f\x28\x03\x4b\xdc\x60\xc6\x09\xf8\xba\xb7\x3d\x89\x33\xb8\xaa\xd6\x59\x39\x46\x08\x4b\x1e\x06\xd0\xf6\x8a\xe6\xbb\xe3\x26\xc1\x84\x1b\xb5\xdb\x89\xcd\x60\xf7\xc2\x1d\x9d\x57\x7b\x2c\xd8\x4a\xb5\xb7\x66\x55\xed\xbc\xef\x03\x6d\x9e\xbf\x7b\xf7\x86\x88\x13\x53\xef\xa3\x8e\xcc\xe6\x2e\xce\x92\x0e\x04\x2b\x23\x00\x2d\x4c\xe3\x71\xe8\x26\x33\xfc\xfd\xdb\xeb\x90\x73\x62\xe4\xa0\x09\x8f\xe1\xcf\x4d\x1a\x40\x9c\x09\xce\xee\xd5\x01\xe7\xbb\x36\x02\x85\x9d\x55\xd5\xd9\x6d\x3d\x58\xeb\xc3\x74\xbf\xb6\x5b\x9a\xe2\x45\x46\xaa\xe9\x49\x98\xb4\x40\x9c\xc3\x00\xc2\x5f\x67\xb7\xc8\xf0\x80\x5e\xab\xaa\xb2\x3d\xb4\x33\x5b\xc7\xaf\x39\x21\x2d\x5e\xac\x3b\xe6\xa3\xb8\x85\xa3\xa7\x9b\x6c\x83\x70\x7b\xdf\xd7\xbc\x1b\xdc\xbc\x7c\xf7\x86\xb6\x04\x4c\xc5\x81\xb8\x10\x4f\x07\xbb\x4f\x09\xa9\x8d\x2f\x01\x1f\xc2\xc8\xb6\x1d\x94\x73\xe7\xe2\xed\xd3\x2b\xf1\xef\x7f\xfc\xc3\x1f\x56\xe2\x85\x07\xd6\x03\xab\xf1\xaf\xb0\x8a\x24\x53\x22\x81\xda\x41\xf8\x9d\x12\x0f\x80\x95\x3c\x10\x3f\x62\xee\xff\xa5\x3e\xc9\x7d\xdf\xa9\x55\x63\xf7\x3f\xc1\x4c\xd9\x4b\xbf\xaa\x20\x47\x0d\x61\xe1\xde\x28\xd3\xaa\x81\x85\x47\xce\xca\xd8\x1f\x67\x67\xa2\x24\xc9\xd0\x75\x63\xcd\x46\x0f\xd0\x9f\x5f\x0d\xce\xfe\x20\x5d\x8b\x2b\xca\x09\x92\x98\xee\x6a\x63\xbd\xde\x1c\x13\x28\xf6\xf4\x15\x24\xf2\xf4\xa8\x78\xb6\xf3\x96\x11\x69\x4c\x6b\x03\x67\xc1\x6b\xbf\x53\x43\x20\xb7\x4b\xf4\xb6\x9b\x0d\x08\x0e\x61\xaf\xe3\x1a\x5e\x53\x2a\x6d\x7b\x39\x48\x5c\x50\x4f\x78\xd1\x5e\x3d\x79\x25\xd4\x9d\x32\x30\xb9\xfa\xc1\xb6\x63\x83\xf3\x15\x60\xcf\x05\xc8\x44\x83\x72\x76\x1c\x1a\xc5\x93\x25\x32\x45\x68\x1a\x70\xde\x46\x76\xdd\x71\x55\x85\xcd\x69\x3b\xc8\x3b\xe9\xe5\x90\x55\xf1\x2c\x24\x71\xeb\x67\xb0\xb3\x46\xc5\x12\xd0\xf3\x66\x74\x1e\x56\x30\xb6\xc2\x51\xa3\x28\xdb\x09\x39\x28\x31\xf6\x9d\x95\xad\x6a\xc5\xfa\x88\x7c\xd6\xc1\x5c\x68\xd5\x46\x8e\x9d\x5f\x55\x1b\xd5\x02\x63\x50\x6d\xcd\x75\x75\xd6\xde\x62\x65\x4c\xaa\xa7\x01\x40\x5c\x32\xd2\x6b\x84\x38\x55\x32\x36\x96\xcb\x47\xb0\xd8\x28\xae\xc1\x5b\x14\x13\x52\xbe\xed\x95\xe1\x6e\x04\xe1\x40\xc0\xde\xdf\x0a\x6b\x44\xa7\xd7\xdc\xe9\x44\xcb\xc9\x46\x1f\xa8\x73\x03\x3a\x66\x9e\xb7\x58\x60\x46\x54\x9c\xf0\x6e\x5a\xf6\x5c\x58\xd3\x1d\x59\x20\x80\x25\x46\x4a\x5c\x90\x0d\xdc\xaa\x52\xd8\xcf\x3a\xa9\x4c\xdc\xf1\xa0\x39\x95\xf9\xb1\xda\xb7\x24\x7a\x8a\x3b\xd9\xe9\x16\x30\x06\x04\xc0\xb1\x97\xdb\xb2\xaa\x58\x5e\xad\x59\xdb\xad\xef\x34\xea\x92\x71\x89\x11\x4a\xd6\x80\x81\xc2\x7f\x02\x00\x50\x52\xdd\x62\xd9\xd8\x9a\xd7\xd0\x49\x17\x75\x49\x9a\x27\xd0\x5d\xac\x01\x64\x68\x77\x2e\xee\x34\x6e\xc5\x3c\xc9\x91\x2e\x6b\x90\xf3\x3a\x05\x55\x39\xa5\x10\x83\xd0\xe6\xf1\xd8\x53\x99\x15\x2b\x52\xac\xdb\x04\xd9\x1b\x44\xb2\xd6\x0a\x90\x94\x70\xbf\xf7\x36\x92\x75\x22\x7b\x89\x41\x6f\x77\x5e\x18\x7b\x38\x27\xa2\x1c\x76\x56\xc1\x9a\x7f\xf1\xe4\xe2\x7b\x6a\xc7\x16\x76\xff\x58\x08\xe4\x06\x39\x7a\x0b\xfc\x85\x97\x1e\x35\x21\xca\x5f\x08\x39\x53\xd9\x08\x68\xaa\x3b\xcf\xc4\xbd\xc8\xe8\x98\xbf\xe5\x79\xcc\xd8\x12\x0c\x95\x0e\xfa\x37\x55\x4c\x8c\x94\xf5\xad\x7a\x6b\x51\xdf\x0b\xfa\x15\x08\x34\x95\x57\xce\xd7\x5b\xed\xeb\x0d\x70\x5b\x40\xfc\x14\x10\x80\x7c\xa5\x9c\x17\x0f\xb7\xda\x3f\x14\x8d\xdd\xef\xa5\x69\x7f\x10\x67\x77\x2c\xaa\xff\x11\xd8\x28\x2c\x45\xdd\xe1\x88\xb0\x16\x39\x28\x92\xc8\x83\x05\xa3\xb5\xca\x21\xe1\xdd\xd8\xe3\xe6\x1e\xd5\x1c\xd6\xc6\x5a\x7b\x30\xc0\x30\x70\xbb\xb0\x9b\x8d\x6e\xb4\xec\xc4\x5a\x1b\x39\x1c\x23\x16\xdc\x86\xce\xdc\xb9\x78\xf5\xfa\x1d\x02\x6e\x2d\xc8\x1e\x6d\x00\x58\x55\xda\xe0\xc4\x06\x91\x9e\x07\x3f\xd7\x67\x42\x92\xa6\xb6\x34\x76\x80\xfd\x17\x7b\x13\x0a\x9e\x90\x56\x61\xf3\x26\x65\x40\x83\x3e\x89\xb0\x58\x2e\x0a\x96\x40\x86\xbd\xf4\xcd\x8e\xc5\x4e\x9c\x36\xda\x99\x87\x1e\x5b\xda\x8c\xc3\xa0\x8c\xc7\xe4\x1f\xc4\x99\x13\x8f\x7e\x12\x67\x2e\x56\x9b\xef\xc4\xb8\x3f\xc3\x76\x2c\x36\x5a\x75\x6d\x68\x6d\xaa\x13\x24\x5f\xda\xe9\xb6\xf3\xd1\x82\x4c\x41\x99\x23\xad\xdf\xa2\x7f\xc5\xc2\x88\xd3\x23\x4c\xfb\x8c\x40\x79\x27\xc3\xbc\x71\x23\xcd\xf4\x0b\xf1\x67\xd5\x35\x76\xaf\xbe\x11\x7f\x56\xa0\x6e\x6f\x3b\x1c\x39\xe9\x59\x27\xb6\x4e\xe1\xac\x3a\xa7\x85\xb6\x19\x0d\xee\x19\x5e\xde\x2a\x54\xa3\xd3\x40\x2d\x89\x4c\x27\x89\x5d\x7d\xd8\xd9\xbd\xfa\x58\x8d\xa4\x90\xd8\xae\x8d\x2a\x2d\x2e\x21\x3b\x90\xfc\x11\xf5\xdb\x04\x13\x57\x87\x3b\x68\xdf\xec\xea\x68\xec\x03\x42\x7a\xf5\x09\x05\x23\xcc\x4a\xb6\x3f\x58\x5a\x90\x55\xed\x8f\x38\x2f\xa0\xe3\x2f\x8f\x69\x5a\x68\xe5\x2a\xb7\xb3\x07\xb4\x9c\x45\x88\x9b\x9d\x3d\xa0\xcd\xac\x50\x5b\x56\xab\x55\xd5\xd8\xae\x93\x6b\x0b\xa3\x72\x97\xe0\xaf\xf2\xd4\x12\xf9\xfe\x58\xdb\x61\xcb\xd5\x96\x96\xa2\xfd\x91\x8d\x53\x9c\x4b\xc6\x29\x57\x21\x7b\x65\xab\x26\x72\xe1\x33\x57\xb1\x4d\x66\xa5\x4d\x8d\x26\x9f\x50\xf3\x0b\x43\x0a\x45\xde\xce\xaa\xfa\xc0\x16\xcf\x8f\x55\x80\x2b\xda\x44\x3c\x9a\x88\xee\x0a\x33\x9c\x9b\xd8\xe1\x5c\xe5\x94\x1c\x70\x41\xdc\xe0\x8f\xaa\xfa\x20\x47\xbf\xfb\x98\x59\x24\xeb\x30\xf3\x82\x65\x12\xad\x66\xcc\x26\x93\x58\xb7\x53\x3d\x48\x80\x7b\x87\x53\xb6\x1b\x94\x6c\x8f\xac\xb3\xc5\xc9\xfb\x33\x6d\x40\xda\x00\xdb\xfe\xa6\x72\x16\x38\x48\xfd\x95\x28\x7e\xd1\xa6\xa5\xf2\xe5\xe6\x4d\xa6\xd2\x7d\x8f\xd3\xc4\x0e\xc3\xf1\xbc\xd4\xe6\x77\xd2\x89\xb5\x52\x26\x68\x5d\xed\x2a\xd8\x4a\x60\x7a\xc9\x86\x98\x00\x9a\x77\x71\x05\x52\x49\x3b\x93\x2a\xa0\x85\xc4\xb7\xb9\x16\x62\xe3\x2e\x08\x98\x20\x59\x7d\x75\x15\x83\xda\x2b\x50\x93\xea\x3d\x19\x5b\xe9\x4b\xbc\x54\xd5\xc6\x0e\x5b\x5c\x7b\xb4\x38\x2e\xc4\x53\x4c\x48\xab\x05\x00\x94\xcf\xb7\x1b\x86\x08\x29\x3f\x07\xe3\x76\x6d\xec\x01\x8d\x9e\x20\x72\x4d\x07\x65\xec\x81\xa8\xab\xb0\x7d\x91\x24\x84\x42\xb8\x53\xc6\x27\xd2\x5e\x0a\xa3\x0e\x22\x87\x62\x02\x44\xfa\x02\x3c\xb0\xb9\x1f\xd7\x3f\x9d\xb9\x1f\x1f\xaf\x7f\x8a\x3b\x48\xb3\x53\xcd\x2d\x4d\x68\x6d\xd6\xf6\x13\x5a\x58\xd0\x1c\xa7\x84\x81\x05\x7e\xd6\x8a\x9d\x1d\x07\xd4\x44\x1b\x0b\x1a\x88\x57\x98\x5b\x8c\x64\x3f\x58\xe0\x71\x2b\x32\x7f\x2a\x5a\x31\x69\x96\xa2\x1d\x14\xe6\x29\x6e\x73\x61\xa2\xf6\x83\xdd\xe9\xb5\xf6\xc0\xce\xd0\x28\x70\x8d\xff\xdf\x70\xb2\x6a\x27\x10\x99\x44\x32\x44\xe6\xab\x9d\xe8\x63\x01\x68\x24\x82\xa6\xfe\xf1\x28\xa7\x11\x86\x91\x45\xfa\x75\x7a\xaf\xfd\x6c\x82\x02\x2b\x96\x3c\xd1\xd9\x5c\x1b\xc6\x06\xfb\x90\xa8\x3b\xa8\x46\x19\xdf\x1d\xe3\x8c\x3a\x48\xed\xc5\x1f\xc5\x5e\x9b\xd1\x83\x2a\xba\x53\x46\xf8\xe1\x28\x24\x48\x3d\xab\x6a\x27\x5d\x3d\x1a\x1e\x26\xd5\x86\x29\xfb\x5c\xe3\xe6\x0c\xf5\x86\x85\x95\x41\x95\xaa\xa1\xf8\x36\x8e\xe0\x77\x2b\x36\xdc\x62\x29\xd8\x30\xa1\x3d\x1a\xf4\x18\xb9\x34\x17\xec\x20\x8c\x22\x0a\x61\xff\x01\x0c\xa6\x8d\x35\x2a\x11\xab\xd3\xcd\x2d\x08\xf0\x30\xbe\xeb\xd1\x7b\x0b\x5a\x6a\x07\x73\x90\xca\x84\x36\x5f\x21\x20\xea\xf1\x09\xdf\x91\x86\xa5\xa4\x52\x85\xc5\x00\xc2\x2f\x17\xfe\x76\x50\xdf\xa5\xe2\x71\xc9\x60\x09\x46\x41\xa5\xb3\xd5\xf4\x16\x33\xc9\x2a\x1f\xd6\x5c\xd8\x1a\x1b\xb6\x93\xc6\xd1\x1c\x4a\x6a\x60\x3e\x2c\x0c\xf5\xa9\xd7\x03\xe8\x2b\x43\x12\x14\x56\x93\xba\x92\x42\x3f\xef\xb1\x2f\x5b\x9c\x76\x4f\x6f\x6d\xed\x76\x64\x8b\x09\xcd\x13\x9d\x32\xdb\xc2\x28\x8a\x27\x6c\x38\x45\xfe\xe7\xaa\x32\xd6\xd4\xa8\x7d\x66\x6b\xe6\x95\x35\x8f\x30\x2d\xaa\x2f\xa1\x34\x5b\xcf\x43\x85\x80\x66\xb0\xe3\x76\xc7\x36\xb6\xea\x03\x50\xed\x63\xc5\x43\xa1\x32\x9c\x3c\x51\x43\x4e\x18\x32\x5a\x8e\x11\x3e\x08\xc1\x7f\x52\x03\xa8\xfa\x08\x54\x4c\xc3\x53\x23\x52\x12\x24\xf2\xe6\x24\x00\xbd\xcd\x79\x06\x27\x6f\xc6\xee\x5c\x1c\x48\x32\x4a\x65\xa2\x99\x81\x65\x26\x98\x95\x74\xb4\x58\x7d\xd8\xdb\x56\x76\x1f\xab\x23\x1e\x98\xfc\x45\xb9\xca\xe0\x21\x95\xad\xf6\xb6\xa5\x42\x2f\xf1\x47\x55\x7d\xd8\xd8\x61\xff\xb1\x82\x5d\xf7\xd5\x44\x5b\x80\xed\x99\xd3\x32\x89\x15\xb3\x7e\xcd\x0f\xe1\x62\x9f\xdf\x2c\x28\x16\x6f\x55\x3a\x8b\xc3\x5f\xb1\xf3\x37\x37\xcf\xdf\x05\xc3\xc7\xcd\x73\x71\xab\x18\xf7\x73\xef\x7b\xf7\x1e\x4d\x6a\x64\x1f\x7b\xff\xf6\xba\x7a\x23\x8f\x20\xc5\x53\x32\x7f\x60\xc6\x3b\x25\xf7\xdc\x48\xf8\x49\x28\x2e\x47\xbf\xe3\x44\xf8\x69\x87\xdc\x98\x5c\xa1\x68\xfa\x6b\xa1\xc6\xd0\x2a\xaa\x5e\xa9\xc3\x2f\x83\x34\x4d\x28\x0c\x32\xc3\x1a\x13\xa8\xe4\x95\xdd\xef\xb5\xbf\x19\xf7\x7b\x89\xe7\x86\xf4\x2d\x1c\x25\x70\xf6\x4b\xe5\x1c\x9d\x94\x72\xf6\x9e\x12\x38\xfb\x6a\x67\x75\x93\xe5\x36\xf8\x5d\xbd\x1b\x94\xe2\x5a\x9f\x86\x73\x89\x0a\xe5\x44\x12\x62\xe8\x57\x15\xd5\x5e\xc5\x07\x88\xbf\xcd\x6c\xf4\xbf\x55\xb2\xeb\x77\x12\x25\xd1\x0c\x0c\xcd\xd1\x6b\x56\xd0\x05\x82\xe0\xc2\x1e\xf7\x6a\xd0\x0d\x1a\x51\xa4\xdb\x7d\xfb\xa8\xfe\x0e\xcf\x57\x64\xe3\xd5\xe0\x4a\x64\xad\xf5\xff\x1c\x42\xf8\x4d\xab\xf2\x24\x5e\xd7\xfd\xd3\xcd\x9d\x61\x87\x14\xc4\xa7\xa0\x22\xa7\x7f\x0f\xe4\x2a\x30\x43\xba\x38\x03\x08\xd4\x5c\x12\x54\x04\xc2\x9d\x11\xb4\x18\x2f\x80\x2b\x78\x50\xaf\x8a\x3e\xec\xe5\xa7\xcf\x15\xdc\xdb\x85\x72\x64\x5a\x4d\x85\x58\x13\x93\xdc\xdb\x82\x93\xac\x7e\xab\xc6\xe1\x1e\xe0\xf7\x6f\xaf\x57\xbf\x55\xda\x34\xdd\xd8\x9e\x6c\x88\x1b\xd7\xce\x0f\xa0\x81\x3d\x3c\x73\x0f\x01\xa5\xb9\x35\xf6\x60\x22\xfc\x7b\xfa\x16\xf8\xfd\x43\x38\x30\xaf\xb5\x61\x5d\x36\x1d\x9d\x8b\x56\xb7\xb0\x97\xa2\x4e\xba\x4a\x3c\x3d\xd7\x53\x23\x23\x40\x83\x1e\xdb\x11\x22\x2f\x04\x59\x13\x55\x76\xb9\x57\xab\x74\xc8\x5f\x83\x1c\x56\x83\x2a\x67\x72\xdd\x0b\x36\xa2\x20\x6d\xa0\xa4\x86\x10\x2b\x3a\xdd\x99\x97\x9b\x70\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x7a\x7e\xf2\x74\xa2\xbc\x57\x72\xbf\x80\x20\xf2\xa0\x93\x05\x69\xec\xb1\xd0\xe8\x50\xc3\x2e\x98\xe8\xbc\x1c\x40\xad\x12\x95\x22\xc1\xf3\xb1\xc9\x35\xd5\x48\xe7\xd2\x1a\xb1\xaa\x94\xf1\x6a\x18\xd0\xd9\x22\xb3\x49\xb0\x8d\x88\xf7\xbd\x3d\x68\xd2\x6e\x84\x3d\x1c\xb4\x6e\x92\x62\x4b\x8a\x82\x40\x85\xa8\x14\x56\x71\x1a\xbd\x3d\x18\xd8\xa6\x3e\x87\x1f\xc1\xbe\x12\x75\x6e\xc2\x9a\x23\x66\xe4\x11\xe8\x14\xda\x68\x5f\x51\x9f\x34\x9e\x60\x3c\xd3\x77\x8a\x2d\x2c\xd1\xb0\x84\x79\xab\xaa\x93\xce\x83\xd2\x4c\xbd\x22\x75\xc7\xde\xc1\x8a\x82\xfa\x20\x97\xca\xd1\x89\x06\x77\x0a\x26\x09\xdb\x6a\x64\xd7\xd9\x83\x6a\xcf\x85\x44\x99\x66\x50\xb4\x40\x65\x77\x90\x47\x87\x76\xc7\xc0\x64\xac\x09\x34\x01\x0e\x62\x8e\x62\x8b\xad\xca\x35\xe2\x55\x95\x0c\x3c\x6e\x57\xc3\xd6\x19\xe5\xb9\x03\x1a\x4e\x90\x43\xb0\x25\xf3\x2e\x13\x52\x78\xa7\xfd\x01\xd4\xf7\x91\x2c\xb9\x94\x9d\x21\x42\x57\x02\xde\x55\x16\xca\x9e\x83\xdc\x2b\x0e\x4a\x48\xe7\xc6\x3d\xd3\x5a\xa3\x9a\x81\x4d\xca\x4c\x6f\xe3\xba\x53\x8f\x48\x7f\xd2\x7e\x55\x81\x92\x9e\x0c\x4b\xb0\x33\x2b\xe3\xc3\x91\x19\xa5\x93\x39\xc6\x79\xdd\x75\x40\xe9\xe0\x5e\x53\xe8\x33\x98\x8b\xeb\x04\xc9\xe4\x76\xba\x17\x16\x0f\x4e\x72\x12\xa6\x69\x9b\x69\x0e\xde\x8a\x56\xa1\x7e\x66\x07\xe1\x07\x69\xdc\x46\xe1\x49\xd2\x5e\x6c\xf4\x00\xe3\x4c\x55\x83\x22\x42\xee\x34\x27\x6a\x26\x55\x17\xab\xce\x37\x08\x1c\xbb\x6c\xa0\xca\xaa\xe9\x2c\x15\x8f\x2b\xb0\x0d\x48\xd5\x84\xc9\x85\x36\xc0\x34\x9b\x91\x00\x4f\x0f\x8b\x93\xf1\x45\x3a\x6c\x0a\xab\x0b\xd5\x8f\x33\xed\x33\xfd\xae\xc8\x5d\xa5\x26\x71\xa7\x58\x15\xef\x30\x27\x08\x42\xd3\x85\x51\x7d\x80\x79\xff\xb1\x22\x91\xbb\x8e\xc7\x41\x57\x24\x82\x93\xfc\x8c\x89\xd5\x5f\xad\x36\x35\x9e\x6d\xfc\x87\xd5\x06\x0f\x42\xaa\xe2\x08\x7e\x62\x12\x62\x47\xa1\x23\xfa\x06\xac\x3b\xdd\x04\x6f\xa1\x63\xb5\xb1\xb8\x9e\xd0\x62\xf4\x34\xfc\xae\x9c\x97\xc0\x26\xf8\x00\x19\x7e\x15\x26\x28\x2a\x44\xf6\xc9\xa7\xe1\x37\xa7\xc6\xa4\x6a\x34\x31\xe5\x3d\xff\xac\x2a\x90\x92\x57\xc8\x7f\x41\xb0\xc7\xb3\xb0\x8c\xeb\xc2\xa6\x0a\xf3\x3f\xe4\xad\x32\xf8\x5e\x7a\xaf\x06\x43\xe6\x6c\x62\x02\x79\x51\xce\x8e\x28\x70\xe1\x12\x18\xd0\x36\x78\x51\x7d\xac\x92\xaf\x55\x70\xb3\x5a\xb2\xe3\x47\xf2\xd3\xe9\x56\xc5\xab\xda\xb1\x90\xfd\x9f\xea\xe8\xd8\x82\x85\x1c\x03\x7f\xb0\xb1\x01\xdd\x35\xc2\x09\xb6\x2b\x0f\xb4\xd1\x20\x37\xb7\xc3\xf1\x9c\xba\x10\x4f\xe8\x47\x30\x5b\x8c\x1a\xfb\xa8\xdb\xaa\xea\x71\xe0\x32\x4f\x31\x1e\xc9\xd8\x09\x76\x14\xcc\x0d\x17\xa5\x42\xaf\x9d\x20\x24\x28\x4d\x84\x03\x49\xdc\x3b\x37\x76\x40\x0e\x19\x4f\x57\x54\x87\x47\x6f\x26\x3b\x6c\x75\xe7\x58\x0e\xc0\x0e\x6a\x1d\x4e\xe0\x92\xfb\xc0\x5e\xb6\x4a\xdc\x69\x19\xad\x5c\x99\x4c\x13\x37\xdd\x60\x1a\x2b\x94\x4e\x54\x67\xc8\x6c\x19\x44\x9a\x30\xc0\xde\x06\x15\xd4\xef\x94\xa6\x03\x30\x83\xe2\xce\x66\xec\xba\xb0\x27\x3e\x1d\xbb\x8e\x9c\x61\xe6\x2e\x9a\x50\x05\x1f\x04\x5e\xf3\xcf\x6a\xec\x5b\x50\x3e\x13\x2d\xdf\x63\x42\xa4\x65\x99\x9f\x29\x95\x48\xd5\x50\x2c\x9a\xbc\x08\xbc\xcd\xb4\xcc\xee\xb8\x0a\xeb\x78\xc1\xf5\x92\x97\x74\x3b\x05\x49\x06\x22\xe4\x51\xdc\x71\x1c\x28\xf2\x76\x40\xd2\x1e\xe4\x51\xec\xec\x41\x74\xda\xdc\x3a\x1e\x29\xa0\x53\xae\x60\xa3\x21\xcf\x6b\x33\x2a\x56\x79\xe0\xe7\xdc\xd1\x8f\x4f\x66\xf9\x9c\x76\x7d\x0c\x66\x13\x3a\xc9\xe5\xa9\x2f\xd6\x47\x81\x5a\xdd\xe9\x23\xe1\xe9\x59\x70\x38\x0a\x0e\x47\x9c\x78\x12\x9d\x38\xda\x7b\xa7\xc4\x15\x9d\x4e\xf3\xea\x6a\x76\xd6\x3a\xb6\x37\x27\xbe\x07\x69\x68\x38\x62\xb6\xc7\xc3\x92\xf0\xd0\xa8\x5d\x86\x53\x72\x5c\xe1\xbc\x96\x6a\x3e\xcf\x49\xd0\xbc\xb4\xae\xf8\x9c\xe7\x32\xe0\xa4\x53\xf0\xd0\x27\xe4\x2e\xb5\xde\x93\xe2\xf9\x3e\x9c\x91\xe3\x80\x47\x85\x01\xb3\x57\x65\x7b\xa6\xb3\x84\xeb\x0d\x07\x36\x9f\x99\x2c\x61\x2a\xe4\xc7\x86\x34\xfc\x91\x23\xd9\xae\x10\xd7\x42\x3f\x62\x3e\x10\x2f\xcb\x7f\x85\x07\xbc\xd1\x3e\x02\x6b\xac\x9e\x80\xb0\x49\xa1\x80\x5c\x94\x8a\x43\x5d\x27\x25\xe2\x49\xeb\x67\x2b\x26\x94\x3b\x48\x57\x74\x9c\xe7\x78\xbb\x0a\xde\x78\xc2\xd8\x03\x9d\x16\xa3\xdb\x14\xb9\x8e\x19\x3c\x6a\x26\x14\x19\x53\xe1\x4a\xff\x55\x96\x92\x30\x93\x4a\xe1\xa2\x26\x71\x49\x8c\x53\xb9\xe0\x18\x1c\xf3\xd9\x37\xb8\xe0\xaf\x2a\x78\xfa\xe4\x1c\xb8\x1f\x34\x9a\x38\x4a\x4e\x3c\xe3\xbd\x05\x9f\x45\x36\x6b\xd1\x6f\x25\xb1\xd7\x55\x15\x50\xc1\xbe\x85\xbf\x42\x4a\x34\xa2\xdd\x28\x74\xa0\xe4\xe4\xb0\x10\x42\x2e\xcd\xff\xd8\xc6\x4e\x31\x57\xa4\xbe\x3e\xe1\x84\x49\x7e\xe8\x0c\x65\x87\x01\x59\xe8\xcd\x00\x52\xbc\x8a\x1b\x87\x36\xe4\x36\x14\x0f\x85\x0b\xee\x24\x9e\x20\xbb\x12\x07\x49\x67\x05\x81\x59\xfd\x3c\xad\x3d\xcd\xa3\x5f\xcb\x53\x06\xea\x5b\xb9\x8a\xbe\xa9\x64\xdb\xe2\x1c\x4f\x47\xeb\x2d\x4e\x9e\xd2\xa2\x08\x50\x39\x04\xd9\xac\x62\x6a\x5d\x9c\x81\x38\x32\x1b\x7d\xf9\xb9\x07\xc8\x1f\xff\x0d\x47\x1e\x45\x55\xe9\xc8\x23\x36\x72\xb2\xc2\x66\xbd\x9c\x2f\x35\xd9\xb6\x28\x0a\xf1\x5c\xce\x04\x1a\x9e\xcd\x51\xae\x81\x5a\x48\x83\x01\xf2\xfc\xa7\x3a\xa2\xf4\xc3\x33\x01\xb7\x26\xed\x84\x44\xe7\x3d\xf4\xf8\x25\x75\xc6\x81\x1e\x03\x82\x10\x8c\x0b\xba\x1b\x97\x63\x7e\x89\xfa\x9a\x53\x0c\x8b\x92\xa1\x34\x47\x90\xf4\xc3\x5a\x57\x7b\xa0\x03\x39\x6e\x44\x57\xcf\xd9\x09\xe8\x39\x2b\x49\x3b\xbd\xdd\x75\x47\xa1\xf7\xbd\x1d\x3c\xce\xa4\x70\xbe\x9d\x74\x58\xf8\x1a\x54\x63\xb7\x46\xff\x8e\x84\xdd\x93\x6f\x67\x34\xb6\xff\xe8\xfc\x60\xcd\xf6\xa7\x27\x16\x94\xcb\x5b\x60\x3f\x3b\x7b\xf8\xf9\xc7\xc7\x9c\x2e\xae\x70\x08\xed\xe8\xc5\x33\xed\x9f\x8f\xeb\x87\x4e\x6c\x47\xdd\xe2\x96\xfb\xa3\xcc\x9c\xd1\xd9\x53\x85\x1c\x6f\x0f\x26\x92\x05\x5d\xd3\xed\x20\x9c\xed\xee\xd4\xa4\x88\xdd\xef\x69\x78\xd7\x9d\xda\x13\x24\xb6\x1f\x9d\x5b\x94\x41\xca\xa9\x81\xe9\x73\x73\xf3\x7c\x15\xa7\x78\x1a\x1f\x1e\xb6\x20\xa1\x16\x16\x11\x96\x11\x01\xb8\x61\x13\x68\xda\x88\xd0\x1c\x12\x4a\xa1\xfc\x31\x2f\x85\xe3\xe8\x40\x66\x99\xd9\x62\x50\x6d\x01\x14\xa1\xb8\xb8\x80\x76\x90\x1c\x06\x69\xcd\xcc\xe8\xca\x13\x2b\x9b\xbc\xb0\xf7\x04\xa3\x35\x4a\xee\xb1\x79\x38\x5d\x27\xeb\x9b\x39\x1a\xf5\x9d\xf9\x59\xe8\x40\xc6\xd1\x98\x22\x89\xa7\x4d\x61\x0a\xae\xa6\x88\xa7\x85\x56\xe4\xdc\x8c\xfc\xf8\x88\xa3\xd1\x84\x54\x0e\xf9\xf5\x17\x72\xb3\x59\xbd\xa9\xe3\xa1\xba\x2f\xe0\x68\xd8\xa7\x4b\x24\x87\x35\x64\x3f\xe1\x81\xba\x66\x6b\x09\x66\x18\x5b\x67\x7a\xde\x2b\xcb\x87\x86\x22\x24\xe2\x98\x38\x0f\x12\x4b\xbe\x94\xa1\x11\xe8\xa5\x4c\x1e\x5e\x68\x80\xf9\x3f\x44\x2b\x8f\xae\xf2\xf6\x56\x99\x85\x22\x98\x7e\xaa\x50\xe4\x2f\x41\x39\x62\xee\x72\x99\x98\xc3\x54\x5d\x62\x4f\x80\x93\x0c\x26\xe3\x2b\x8c\x35\x7a\xd9\x91\xf5\x08\xaf\x77\x88\xb5\x36\x2d\xf1\x11\x66\x03\xec\x4a\x16\xd7\xff\xaa\x1a\x0d\x00\xa1\x42\x0a\x3f\xf8\x3b\x1f\x96\x02\x7f\xb6\x58\xcc\xda\x8e\x26\x63\x9f\x34\x1d\x6a\x22\x45\xec\xe4\x1b\x35\x38\x74\xfe\xbd\x24\x84\xef\x20\xdb\xb1\xaf\x3f\x3b\x54\x84\x22\xcf\x38\x11\xd7\x00\x02\x12\xc1\x5d\x24\x04\x7e\x25\xc3\x47\xc0\xc2\x8e\x3c\xec\xd7\x8b\x63\xe0\x6d\x64\x98\x3b\x72\xec\x11\x97\x6f\x5e\xb8\x55\x15\x2b\x0c\x48\x7f\x95\xcd\x8e\x07\xf0\x40\x56\x0f\x74\xff\xe9\xba\x29\xc7\x8d\x9a\x04\x15\xe7\x05\x8e\x6d\xa2\x25\x1e\x3b\x35\xeb\x10\x75\xa6\xcc\x27\x1a\x2b\x97\x59\x82\xa8\x36\x6c\xc9\x74\xaf\x8a\x5d\xfd\x46\xbc\x4c\xf6\x48\x58\x5a\xfd\x11\xb8\x7f\xe6\xfd\x27\x89\x42\x07\xe4\xdf\x13\xb7\x43\xed\xe9\x40\x5c\xc0\x12\x1e\x22\xff\x08\x0d\x66\x0e\x92\x0f\x65\xce\x46\x16\x07\x33\x31\x95\xc5\x62\x4b\x9c\xa5\x0f\x78\xca\x3e\x7f\x8e\xcf\xc0\xc4\x4f\x86\x83\x7b\xb8\x4c\xde\xab\x6c\x2a\xbf\x59\xac\x36\xce\x68\xaa\x7a\xc2\x6f\x04\x6d\x83\xe4\x54\x82\x9e\xb8\xa4\x62\xd1\x8c\xc8\xfc\xf2\xa5\x13\x07\xd5\x75\xab\x0a\xed\x19\x2b\x03\xbb\x38\xf9\x6f\x46\x71\x9b\x0d\x72\xd8\x0f\x73\x2c\x2c\x6e\x6e\x45\xc5\xd0\x8e\x17\x3d\x30\xaf\x15\xfb\x24\xe4\xa0\x39\x60\xe6\x25\x4a\xb7\x07\xac\xcb\xef\x84\x10\x15\x33\x2b\x18\x7a\xb4\x29\xb9\x77\x42\x6e\x60\x1b\x05\xf2\x75\x6a\xc3\xd6\xf2\xdc\x0c\x7c\x9a\xb8\x81\xba\xe9\x60\x9b\x87\xb6\x70\x2f\x61\xa0\x4c\x7f\x57\x49\x76\xa7\xc6\xe6\xa6\xca\x80\xac\x57\xc3\x5e\x1a\xf4\xec\x20\xe3\x4a\x90\x46\xae\x2e\x5f\xbd\x7a\xfd\x2e\x09\x21\xb0\xce\x4d\x6b\x8d\xfa\x26\x3a\x98\xce\xda\x15\xdc\x4c\xe3\x04\x2d\x21\x92\xa3\x2b\x97\x38\x05\x97\xb3\xe1\xcc\xf3\x65\x6b\x91\xb7\x5a\x68\x4b\xd8\xab\x8a\xf6\xb7\x27\x49\xf8\x01\x46\xe5\x63\x15\x0c\xfe\xaf\xe1\x7f\x95\x9f\x99\x64\x67\x4d\xc8\x5a\xd2\x91\x54\xba\x70\x24\xb6\xd6\xb6\xb3\x33\x14\xdc\x84\x46\x89\xaa\xa4\xdd\xf7\x16\xf7\xc2\x8d\x40\x9f\x88\x73\x98\x81\x76\x40\x86\x00\xc4\x1d\x8d\xfe\xdb\x88\xe2\x27\xba\x32\xac\xaa\x3b\xed\xf4\x5a\x77\xb4\x61\xfe\x29\x7e\x50\x3a\xfc\x9a\x5c\x39\xc9\x2a\xd7\x4e\xfc\xe8\x7a\x69\x44\xd3\x49\xe7\x2e\x1e\x8c\x5a\x0c\xc0\x87\xd5\x27\xff\xe0\xa7\x37\x03\x3a\x37\xfc\xf8\x18\x20\x7e\x9a\xa1\xab\x37\x76\x68\xc8\xb8\x1a\x3d\x85\x70\x5d\x72\x3a\xcc\x63\x90\xe7\x8b\xb9\x4c\x84\xff\x27\xea\xdc\xd8\xe1\x36\xf5\xe3\x5b\xb6\x2a\xd8\x0d\xf1\xa6\x3b\xd9\x8d\xa5\x89\x09\x6a\x87\x32\xee\xbb\x0a\xef\xd3\xa4\xb2\xe8\x39\x86\x77\xab\x21\x43\x9b\xed\xcf\x48\x34\x7f\xff\x1d\xcd\xe7\xaa\xeb\x41\xb0\xfd\xa6\xc2\x96\xb0\x11\x7e\x7a\x29\x17\xf3\xc2\x45\x17\xc8\xc3\xdb\x2e\x98\xba\x30\x1a\xd9\xd5\x3d\xd9\x79\x32\xc0\x8b\x6c\x34\x81\xe5\x60\x27\x72\xc3\xf5\x91\x8f\x3a\x23\x87\x76\xcd\xa0\xf1\xb2\x0e\xa5\x77\x12\xed\xd9\xf1\x56\x36\x26\x6e\xb5\xd7\x5b\x63\x87\x8c\x0c\x37\xaa\x03\x3a\xad\x62\x96\x08\xf7\xbc\x5d\xd5\xe9\x46\x19\x87\xcc\x8c\x7e\x85\x94\x59\x71\x90\x6e\x08\x16\x2d\x8e\x20\x52\xf3\x52\x80\x1f\xfc\xbd\x50\x8a\x01\x43\x95\x95\x1c\xbd\xad\xb5\xd1\x1e\xdd\x45\xb5\xd7\xb2\x23\x4d\xa7\x9c\xaf\x24\xc7\x23\x12\xb6\x66\x05\xf6\xc8\x78\xd8\xe3\x93\x87\x87\x5d\x3d\xb3\x01\xe2\x8b\x21\x7c\xac\x81\xf4\xc3\x04\x41\x7e\x1e\x7c\xa5\xbb\xee\x87\xd1\x90\x69\x7d\x34\xaa\x48\x0c\x74\xcf\x04\x36\xba\x3c\xf8\xc8\x0f\xb2\xb9\x05\xe6\x32\xa8\x8d\x1a\x94\x69\xd0\xa1\x4d\xc2\xfe\x2e\x3a\x6b\xb6\x6a\x20\x5d\x23\x78\x8b\x51\xb1\x80\x5c\x83\x86\x74\x47\x92\x26\x5d\x06\x7f\x11\x52\xbe\x05\xd5\xfa\xbb\x00\x18\x14\xe3\x08\xc7\xe6\x9d\x49\x7e\x68\x27\x1f\x87\xb2\x3f\x80\x30\x0a\xb6\x19\x39\xd0\x5d\x19\xd1\x0c\xaa\x55\x06\xa8\xed\x04\xeb\xf3\xc1\xcd\x20\xe0\x43\x41\xdd\x1d\x4d\x93\x44\xf5\x1b\xfc\xaa\x0e\xd2\x37\x3b\x3a\x72\xf9\x33\xff\xc4\x13\x97\xad\xfc\x9d\x52\x6f\xe2\x07\x2e\x01\xc7\x8b\xc2\xf1\xf1\xc9\xa0\x64\xb3\x63\x9f\x42\xbb\xa9\xe9\x82\x2a\x8a\x2c\xef\xe2\x31\x30\xf0\x13\x84\x53\xad\xd8\xcb\x4f\x7a\x3f\xee\x45\x04\xc4\xa2\xb0\x4a\xce\xca\x83\x9d\xd5\xf2\xf1\xcc\xd4\x15\xe0\xeb\x4f\x69\xa6\x18\xee\x3f\xac\x31\x4a\xb5\xb5\x1c\xd1\xdd\x1c\x99\x4e\xe1\x7b\x54\x71\x3c\x80\x70\xa1\x3a\x06\x04\xa0\x1b\xd5\x79\xee\x69\xfe\x1d\x2c\x70\xb2\x64\xa9\xe8\x67\xbe\xee\x46\xf5\xe0\x27\x1a\xc5\xc0\x4f\x03\x56\x5e\x1f\x2f\x39\x24\x41\xb6\x40\x18\x62\x45\x4c\x33\x4d\xb6\x2b\xbc\x94\x98\xe6\xda\x02\x54\xb1\xe5\xb2\x58\x2f\xb3\x8b\x8d\x8f\x9f\xbd\x78\x87\xee\x29\xf7\x14\xaf\xc9\x0c\x42\xae\x7d\xc4\x22\x1f\x0e\x20\x59\x3a\x9b\x5b\x3e\x43\x2c\x05\x99\x13\x63\x7d\xa4\xfb\x68\xe1\x6e\x68\x2f\xfd\x2e\xd5\x05\x9b\xbc\x76\x8e\x84\x5b\xa3\x71\x3c\x0b\x41\x2f\x61\xa7\x36\x30\xb2\x72\x62\x05\x6c\xe9\x5a\x41\x23\xbb\x70\xa7\xe0\x05\x25\x72\x41\x48\x44\x1b\x4f\x79\x42\x1a\xbc\x27\x65\x7e\x95\x38\xa0\x8d\x87\xe1\x69\x36\xe4\xe7\xe0\xbc\x24\x79\x83\xe1\xa0\x11\x76\x53\xd1\x1e\x11\xd2\x79\xc7\x80\xaf\x0a\x34\x8d\xba\xd3\xe6\x16\x25\xab\xfe\x98\x12\x32\x11\xfb\xca\xf6\x5a\xb5\xdf\x64\x79\xc1\x0d\xe8\x0d\x8e\xfe\xff\xf7\xff\xfc\xbf\x8f\xae\xa0\xdd\x57\x7e\xe8\x1e\x5d\x05\x0d\x06\xe0\x89\x8e\x84\x40\xbc\xfe\xcf\x6a\x34\x07\xf6\xf9\x79\x4f\xbf\xaa\xf0\x8d\x2c\xa2\x1a\x8d\xe3\x43\x0f\xfc\x51\xf1\x17\x70\x8a\x8a\x83\x5d\x00\x8b\xa8\x2a\x13\x77\xb8\x57\xb6\xd8\xe4\xfe\x36\xea\xe6\xb6\x26\xdb\xd5\x85\xf8\x2f\xf8\x12\x18\x40\x81\xf7\x79\xd8\x32\x22\xff\xc7\x49\x3b\xd9\x44\xf2\x5b\x01\xb8\x39\xf2\x65\xa3\xb4\x5f\xc8\x52\x6e\x39\x06\x8e\x1d\x00\x3b\x6d\x54\xd5\x8f\x6e\x47\x47\xe2\xa1\xb6\x37\xa3\xdb\xe1\xd5\xd4\x4f\x74\xfd\x38\xc7\x80\x43\x33\xc3\x81\xd5\x6b\x47\x97\xef\x97\xc5\x33\xcc\xca\x7c\xb3\xf7\x4a\xac\x65\x73\x1b\x54\xc1\x8a\xf6\x40\x72\x12\x74\x55\xdc\xd6\x78\x3b\xf3\x83\x42\x75\x77\x50\x0a\x20\xbd\x1a\xc2\x81\xbe\x34\x6d\xed\xe5\x96\x4a\x82\xec\xc1\x45\xed\x20\xbc\xdc\x32\x22\xc4\xfc\x0b\xff\xac\xbc\xc4\x23\xdf\x77\x72\x3b\x8f\xbe\xd1\x8f\x5d\x37\x8f\xd1\xd1\xc9\xb5\xc2\xe4\x6b\xfc\x51\xed\xa1\x91\xde\x1a\x45\xdb\x57\xf8\xa8\x1a\x74\x7d\x74\xd1\x09\xd2\x55\x5b\x1d\xf6\xe8\xb2\x0d\x7c\xdf\x8b\x5c\x03\xe8\x27\x92\xa0\x1e\xe4\x01\xd2\xe4\x81\x3e\x77\xda\x71\x2c\x97\xe7\xf4\x8b\x92\xf1\xd6\x0a\x81\xe2\xa5\x95\x08\x8f\x2a\x00\xaf\x93\x37\xe1\x37\x65\x79\x0b\x42\xd5\x80\x07\x69\x38\x40\xe1\x10\xcd\x5b\x2b\x28\x83\xa4\x5a\xb7\xb3\x07\x53\xdd\xe9\x56\x59\xdc\x37\xf8\x0a\x1a\x45\xb3\x59\x0f\xf6\xe0\x82\xd4\x07\xd4\xa6\x4f\xe0\x0d\xa0\xaa\x86\xeb\x6a\xcf\xdf\xbd\xbc\xfe\x77\x81\x38\x60\x1c\x56\x55\x1c\x89\x95\xbd\x53\x03\x5f\x88\x7c\xcd\x3f\x53\x26\x5f\x22\xc8\x48\x86\xae\x11\x2a\x51\x2e\x82\x3a\x2f\xbb\x02\xf2\x06\x12\x16\x00\x29\x62\xca\x65\xd7\x2d\xe4\xf1\xf1\x5f\xbd\x3e\xc6\x03\xcc\x56\x9c\x7d\xf8\xfe\xa3\x03\x36\x7c\xf6\xe1\x0f\x1f\x33\xe0\x70\xc2\x35\x95\xbd\x58\x88\x9f\x88\x60\x95\x6a\x61\xf6\xaf\x30\xfe\x0d\x9d\x6b\xbf\x52\x07\x92\x2f\x39\x8b\x4e\x3b\xeb\x78\xea\x8d\xde\xbf\x39\x00\xfc\x0b\xd9\xbf\xb6\xda\x17\x99\xfd\xa0\x70\x1e\x50\xb3\x1c\xb1\x39\xa4\x2c\x35\xc8\x05\x40\x92\xcd\x6b\x44\x66\xac\xa9\x61\x5b\xad\xc3\x82\xbb\x22\xc1\x1d\x32\x85\xb1\xe6\x11\xee\xb9\x98\x59\x34\x02\xd9\x51\xde\x12\x1f\xa6\x50\x00\xdb\x8f\xce\xd7\x6b\x55\x5b\x53\xcb\x44\x9b\xbf\x04\x3f\x9d\x35\x3a\x72\xcb\xb0\x3e\x61\xf3\x93\xb7\xe4\xd8\x37\x58\xd0\x14\x45\xe8\x47\x08\x51\x91\x23\x47\xd5\x83\xc2\xc8\x60\x3f\x72\xcc\xc8\x6f\xa7\x12\x36\x87\x9c\x01\xd8\xe0\xcc\x96\xe3\x0b\x46\x9a\xac\x57\xb9\x8d\x68\xd6\xaf\x9d\xbc\x53\x35\x46\x1c\x60\x53\x63\xde\x00\x34\xda\x51\x38\x82\x64\xfe\xf8\xaa\xde\x91\xa7\x08\x36\x29\x6d\x67\xe8\x2f\x5d\x5a\xe1\x97\xad\xd2\x61\xa2\x81\xc0\x87\xd7\x6f\xc2\x74\x63\xdf\xc3\x01\x2b\x5b\xad\x56\x79\x7d\x51\x9f\x47\x33\x22\x88\xcb\x69\x23\x3f\xa7\xf0\x04\x28\xd1\x69\x8f\x9a\x49\x8f\x3b\xe8\xe3\x15\xc0\x06\x33\x59\x5e\x60\x6b\xa9\x67\x4a\xac\xd5\x56\x53\x30\x21\xd4\x6a\x15\xdf\xca\x4c\x48\x80\xef\xbb\x5e\x62\x4c\x19\x6a\x0f\xee\xd1\x76\xc8\xe6\x6b\xa3\xba\x1a\x9d\x9f\xc4\x85\xa0\xcf\x98\x89\x9c\x35\x9b\xf4\xec\x6f\x3e\x99\xf3\xb2\x6d\x6b\xbf\xef\xc3\xa1\xe2\xc3\x33\xf7\xf8\xc7\xd0\xed\x9f\x1e\x66\x50\x09\xe0\x61\x5a\x96\x2d\x05\xb8\x62\x8f\x86\x3c\x6f\xea\x1a\x94\xe7\x71\xd3\xd8\x2f\x3e\x86\x55\x6b\xf1\x12\x51\x88\x4c\x21\xd4\x27\xaf\x4c\xab\x5a\xd1\x26\x69\x20\x1b\x1b\x46\x42\xa4\xed\x8e\xb5\xb7\x34\x4b\x13\xb7\xa1\xfe\x06\x80\x40\x76\xb6\x55\x05\xd1\x99\xc0\x1f\x41\x77\x1f\xe0\xbd\xa1\x68\xbb\xc2\x8c\x54\x5d\x12\x22\x52\x0d\x41\x7c\x08\xf6\x2f\x13\xef\x0b\x24\x3c\x1b\x0c\x55\x81\x6e\xa7\xd8\x1e\x8c\xf1\x41\x41\x83\x04\xec\xa2\xe1\x0a\xd5\x2a\xe7\x83\xc1\x0b\x0f\x7d\x8f\x58\x2c\x2a\xef\x22\xe4\x94\x98\xf8\xc7\x4c\x27\x2f\xb3\xb5\xb5\x8a\x72\xc7\x53\xce\x9a\xc7\xf7\xe1\xb2\x41\x68\xa0\x33\x33\x12\x7b\xd2\xbe\x4c\x8b\xad\x38\x50\x73\x31\x40\x55\x6e\xb8\x08\x73\x21\x4c\x7f\x90\x7d\x64\xe4\x8e\xc6\x0f\x7c\x7a\xc6\xaa\x68\x2f\xd9\x5d\x83\x6e\xe8\x4a\xda\x79\x27\xc2\xf3\x7d\x15\x21\x7f\xc0\x3a\xdc\x71\xcf\xbb\x7b\x8c\xf4\x14\x94\x36\x29\x42\x66\x38\x8f\x60\x12\xe0\xdd\x18\xcd\x92\x34\xf9\x2c\xa9\xb5\x60\xd4\x33\xaa\x62\x35\xa9\x55\xa9\xa2\x42\xd7\xcc\xc5\xc3\x2f\xef\x02\x73\xe3\xda\xd8\x9a\x2c\x09\x69\x04\xca\xee\x1c\x59\xa1\x09\xec\x7b\x62\x7a\x88\x4a\xfe\xa9\x8a\xd8\x8f\xa5\x3e\xec\xb2\x6a\x03\x4b\x9d\x1d\xbd\x32\xb4\x70\xda\x34\x2a\x45\xbf\x52\x6d\xa8\x7f\x75\xbf\x4d\x2d\xdd\x10\xc3\x23\x63\x3e\xed\x38\xc0\x28\xe0\xd6\x50\x54\x62\x87\xb8\xac\x88\x1d\x86\xf5\xb3\x95\xda\xa4\xe5\xe5\x2d\xfa\xfe\xd2\xae\xe2\x77\xd9\x0e\x52\xf6\x74\x36\x95\x2f\x89\x8c\x68\x61\x4a\x43\xf6\xe5\x93\xda\xd8\xc0\x5b\x81\xf5\x80\x2c\x48\xa3\x03\xda\x2b\xaa\x98\xf9\x4e\x06\xd9\xa9\x3d\x18\x57\xc7\xd6\xec\x87\xc5\xcb\xe1\x29\xa9\x82\xf1\xf0\xe2\x31\x1f\xcc\xa7\xc1\xc6\xa6\xd2\x05\x0d\xd0\x0e\x33\x06\xee\xc6\x75\xab\x07\xe6\xa1\xf4\xc1\x9a\x66\xe2\x12\xec\xed\x8d\xf5\x46\x69\xca\x4d\x2a\x8e\x82\x95\x0b\x3e\x21\x27\x6a\xcd\x71\x00\x4e\xaa\xfe\xfd\x02\x82\x2a\x48\xfb\x81\x63\x27\x51\x9d\x39\x74\x90\xd8\x4b\xb8\x5c\x3b\x08\x39\x93\x7b\xdf\x3c\x25\x52\xfe\x86\x4e\x49\x9f\x6a\xd3\xc6\x34\x89\x46\x98\x78\x13\x2c\xa6\xef\xe3\x35\x2d\xbe\xb0\x15\x73\x78\x53\x7b\x82\xf6\x45\x4e\x0b\xd7\xfd\x5f\xc3\xff\x98\x6a\xd4\x81\x4d\xcc\x07\x35\xc4\xeb\xf0\x14\x10\x13\xf8\x35\x2a\x4b\x59\xf2\x6a\xaa\x20\x65\x59\xb0\xd6\x21\x91\x34\x60\xcc\xcf\xb3\x9b\x4e\xc9\xa1\x8e\xe5\xaf\xe0\x53\x74\x33\x2c\x51\xe3\xca\x15\xae\x49\x35\x39\xcc\x2b\xbb\x0c\x46\xd5\xe5\x90\x54\xe3\x7e\x09\xd8\xf6\xca\x14\xb0\xaf\x7b\x65\x72\x7d\xaf\x40\x6c\x9d\x6a\x27\x98\xf1\xfc\x63\x19\x5e\x3a\x0c\xe3\x82\x27\x40\xfc\x73\xde\xce\x0c\x88\x9a\x29\x17\x40\x8d\xcd\xe1\x5e\xd9\x19\x10\x2f\xb8\xb8\xaf\x4f\x47\x2f\x8d\x8f\x3a\xcc\x06\x88\x32\xeb\xbe\x93\x8d\x8a\xc1\x21\x10\x28\x6e\xd7\x45\x35\x11\x19\x57\x56\xe0\x23\x5c\xd1\x3e\xbf\x8a\x47\x8d\xb0\xba\x24\x88\x87\xad\xda\xa0\x07\xbd\x53\x68\x10\x2d\x27\xc2\xb4\xb8\x36\x1b\x9b\x33\x27\xbc\x8f\x62\x8e\x5c\x4a\x1c\x95\x4f\x8e\x8c\xc5\x05\xe7\x07\xb1\xa7\x0f\xc2\x65\x67\xb9\xb6\x45\x84\x1b\xba\xf1\x40\x11\x12\xa7\x0d\xe3\x8b\xd1\x27\x5a\xb5\x70\xb4\x80\x24\x71\xca\x9f\x2a\x32\x3a\xf6\x47\x26\xae\xfc\x59\xf8\xc0\x69\x73\xed\x31\xb1\x3b\xe4\x55\x84\x23\x86\xbc\x8d\xdc\x96\xe2\x93\x10\x5a\x9c\xdf\x5e\xae\xc5\x85\x38\x6b\x71\x72\xc7\xb1\x84\xa9\x9b\xb2\x68\x26\x87\x4c\x36\xc0\x84\x81\x2e\x46\x38\xcf\x83\x6d\x9e\xce\x38\x68\x5e\xc6\xf3\x8e\x6e\xa1\xc4\xbd\x0b\x7c\x0a\x73\x12\xf3\x6c\x19\x73\xc9\x7b\x56\x5b\x82\xd8\x6a\xa3\x4e\xa3\x3e\x51\x8e\xad\xde\x68\xeb\x9e\xe7\xac\x64\xd7\xd5\xd1\xc6\x74\xd9\x75\x82\x3e\x16\x41\x1d\xc7\x0c\xf6\x16\xb4\xb8\xd4\xd4\x96\x9d\x40\x96\x0a\xd1\x6c\x6d\xeb\xf5\x91\xcb\xd0\xb2\xc3\x28\x62\x27\x8a\xec\x95\x01\x95\x03\xe4\x30\x2a\xf2\x32\x26\x2c\x14\x71\x1c\x75\xd1\x0e\x7e\x21\x67\x85\xf3\xd1\xf3\x56\xe1\x16\x41\x80\x69\x20\xc8\x6b\xfc\xb1\x04\x42\xae\x51\x51\xed\x7a\xcb\xe1\x15\x82\x73\xf6\x62\xc5\x4a\xba\x54\xe2\x1a\x6f\x29\x0d\x5f\x50\x6e\x6f\x9d\x87\x6d\x8e\x3c\xe1\x5e\x5a\xbc\x4c\x8a\x9f\xf7\xd4\x93\x0a\x50\x45\xb3\x12\xb0\x92\x82\x15\x89\x7e\x27\x23\x52\x72\x31\xfc\xf0\x87\x8f\xee\xc1\x4f\x67\x1f\xfe\xf8\x11\x7d\x0b\x67\x85\xeb\x8d\xbc\x55\x0b\x18\xc8\x0c\xc5\xd0\x68\xf5\xb1\x63\x34\xf7\xd8\x31\xdb\x57\x3e\xd1\x50\x7c\xf2\xe5\x12\x8f\xb1\x10\x27\x2b\xbc\x8d\x59\xe5\x0a\x37\xe3\xbe\xe6\x3e\x3a\xe2\x00\xe1\x2b\x16\x0f\x14\xa8\x25\x54\xf9\x5b\xfc\x4e\xdd\xfd\x37\x10\x8d\xcf\xb0\xa7\xbf\x85\x62\xe1\x32\x00\x41\x67\xd1\x07\x2f\xd9\x39\x34\x7a\x89\x06\xbf\x85\x36\xb3\xca\x70\xb1\x9f\x63\x33\x6d\xe6\xd4\x48\xbb\x00\x1e\x5e\x45\x09\x1f\x76\x80\x92\xa5\xe1\x47\xe8\x6f\x99\x15\x1a\x15\x41\x78\xd0\xf1\xae\x6f\x0e\x3e\x28\xa4\x6a\x80\x7b\x8b\x9f\x93\xcc\xfb\x90\x0d\x45\x01\xde\x36\xd3\x14\x63\xd0\xc9\x40\x31\x99\x49\xa4\xf8\x51\x0a\xdd\xc2\x84\xfa\xfe\xa3\x7b\x10\xc9\x8d\x5f\x3f\xe1\x64\x29\x88\x4e\xf5\x45\x1c\xe1\xf3\x2b\xb1\xb0\x94\x3b\xa8\x4d\xc4\xc3\xc7\xc3\x2d\x8d\x0e\x75\x95\xef\x89\xb2\x52\xf3\x75\x55\xf4\x96\x43\xbc\xbf\xc1\x1f\xa9\xe6\x10\xf0\x09\xe5\xdd\xab\xec\x33\x4e\xf3\xc2\x97\x85\x13\x43\x04\xbd\x10\x5a\x80\x0d\x0e\x85\xcb\x2f\x87\x40\x0a\x7a\xdb\x5f\x6d\xd0\x8c\x1a\x6b\xee\xd4\xe0\xf8\x5a\x2a\x63\x64\xcb\xe3\xaf\xad\x4e\xc3\x33\x31\x52\x84\xba\x41\xef\xbb\x10\x37\xf2\x4e\x4d\x36\xf1\x20\xf2\x44\x11\xaa\xcc\x6f\x6c\x67\x93\x88\x85\x5f\x53\x00\xf2\x2f\x3a\x6b\x17\xa5\xa3\x34\x35\x79\xe5\x62\xb8\xc6\x72\xd7\x21\xc8\x85\xce\x50\xc6\xc4\xc4\x55\x66\xc6\x40\x1b\xd4\x40\x0c\xb7\x11\xc2\x7f\xce\xb1\xf0\x45\x2f\x04\x8d\x0e\x4e\x8b\x60\xcb\x37\x1b\x48\xc6\xc8\x7d\xf3\x34\x6a\xaf\xe9\x36\x83\x36\x85\xbb\x1e\xe3\x3e\xed\x40\xb6\x5c\x79\x32\xba\x52\x5b\x3f\x63\x70\xcd\xd8\x64\x2f\x07\xaf\x1b\xdd\xcb\xc8\x2a\xdf\x64\x29\x01\x52\x7a\x2f\x9b\x1d\x2c\xeb\x5c\xe8\xfa\x8d\x0c\x07\x6c\x2f\x80\xf9\x88\xdd\xc1\x53\x3b\x2f\xd7\xbf\x2d\x94\x8e\x61\xff\xf2\xd2\x31\x11\x50\xfc\x56\xd1\x21\x56\xa6\xae\xe5\x87\x59\x9c\xd9\xd8\x7d\x2f\x07\x55\x9a\x51\x21\x25\xda\x51\x17\xe1\xc2\x28\x05\x60\x7f\xb0\x22\x9e\xc0\xe0\xdb\x07\xb0\x83\x95\x06\x40\xb4\x14\x46\xdb\x45\x89\x16\xa3\x0c\x5e\xe0\xe5\xc5\x69\x85\x5c\xc3\x85\xe0\x5f\x9c\x5f\x9c\xfe\x4d\x4f\xfd\x42\xcf\x6d\x3d\x28\x37\x76\x38\x22\xe8\x79\x4d\x1f\x1b\xf2\x19\x0e\x40\x18\x80\x1e\xa4\xad\x54\x57\xb6\x89\x50\x78\x7a\xbe\x07\x02\xb9\x6b\xd5\x48\x10\xd4\xb1\xcd\xd0\xd7\x9d\x92\x6d\xd6\xfb\x41\x61\x04\xda\x80\x7f\x27\x5d\x9d\x47\xfe\x87\x11\x8b\xe8\x83\x39\x66\x42\xa9\xb5\xf2\x07\x0c\xa9\x80\x17\x33\x80\xb8\x64\x74\x72\x3f\xe4\x52\xc4\xf7\x1f\xdd\x63\xac\xe3\x31\x88\x12\x2d\x73\xd2\x7f\xc3\x0f\xe2\xa7\x4c\xca\x89\xde\xb7\x30\x0d\x90\x1b\x85\x41\x3d\xe0\x1c\xf6\x56\xec\xd5\xb0\x55\x28\x7e\xb4\xc1\x14\x41\x7c\xfd\xc7\xc6\xb6\x2a\x30\x6e\xfc\x2d\xb4\xf1\x36\xa6\xff\x31\xa6\x33\x7e\xc4\xc4\x52\x46\xa8\x86\xd2\xfe\x35\xf4\xe2\xec\xc3\xff\xf8\x18\xe6\xa8\x97\xeb\x3a\x67\xd7\xe4\x7c\x19\x3f\x0b\xa8\xa9\x05\x26\xe5\x15\x07\xd0\xc1\x5a\xc7\xf9\xbc\xa9\x7b\x5b\x13\x69\xa2\x3b\x12\x65\xb0\x5f\x71\x3e\x92\xde\x8a\x5e\x0d\xc0\xa6\x98\x9a\xd1\xfd\x74\x55\x90\x06\xc5\xef\x21\xd5\x04\xb3\x26\xe6\xbc\x9b\xa1\x8d\x7c\x89\x61\x4a\xb6\x44\x28\x5a\xe9\x65\xbd\x1e\x82\x53\xb5\xf4\x32\xba\x17\x2e\xe3\x62\xd8\x76\x4c\x71\x04\x80\x8a\x76\x43\x27\x6b\x19\xb7\x0d\x6d\xd7\xae\xc6\xab\x54\x64\x54\x7d\xc7\xf7\xa3\x3a\xdd\x78\x11\xd3\xb5\xe3\x8b\xfc\x14\x91\x79\x4b\xf1\xad\xe3\x5b\x12\x9b\x41\xb9\x1d\x46\x9f\x05\x80\x8d\x3a\x88\xbd\x45\x09\x33\xb2\x08\x69\x6a\xf4\xa6\xc3\xae\x16\x3e\x39\x45\x37\xd8\x41\x87\x09\x32\x89\x29\x1b\x51\xa1\xff\xd3\x97\x61\x23\xbf\xf5\x25\x7c\x91\x05\xf8\x68\x0e\x0d\xfd\x76\xa7\xeb\x9a\x3e\x06\x41\xf3\x61\x2f\x0d\xf9\xc9\x6a\x23\xec\xd0\xaa\x81\x83\x8b\xe1\xad\x24\xbf\x5b\xc0\x4c\xd8\x26\x2c\x05\x27\xcf\xd2\xca\xc6\x09\x3b\x1a\x5e\x80\x58\x2a\x9a\x88\x7f\x63\xa3\xc8\x43\x1f\x27\x29\x4f\xe4\xe4\x24\x5d\x76\x35\x67\x59\x86\x44\x8a\x82\x6c\xdf\xfe\xdb\x59\xfb\x1d\x87\xa8\x97\x7b\x35\x77\x75\x84\x44\xea\x78\xbe\x79\x03\x17\xd5\x0e\xa3\xe7\xc1\x94\x81\x8d\x02\x80\xb4\xd9\xae\x02\x13\x63\x8d\x21\xf3\x73\x44\xe1\xe4\x97\x9c\xdf\x17\x30\x18\xe3\xc2\xa8\x43\xb6\xd8\xf9\x74\x27\x9d\x88\x84\x5d\x3d\x74\x52\xd3\x6a\xa0\x3b\x85\x54\x8a\x5c\xd4\xb1\xc9\xa6\x51\xab\x2a\xf3\xf9\xc8\x76\xd6\x64\xa9\xc8\xb2\x17\xcc\x2a\x59\xee\xb2\x69\x65\x0a\xd0\x26\xfb\xe1\x99\x2b\xea\xb6\x75\x3b\xaa\x9a\xf5\xde\x57\x16\x97\x2d\x7c\x4d\x5b\x10\xf4\xbd\x29\xe6\xa8\xfc\x94\x1d\xaa\xdd\xb8\x86\x0d\x8d\x42\xde\xd1\x86\x91\xb9\xb9\x78\x1b\x3c\xf4\xf9\x44\x99\x45\x93\x02\xfd\x64\xbf\x59\x24\x4e\x90\x7f\x31\x44\x5a\x9e\xb1\xe0\x07\x9c\xe7\xa6\x3e\x3f\x19\x15\xda\xb0\xc5\xb7\xe1\x48\xf5\xbb\xb2\x93\x8a\xee\xab\xc3\xff\x3c\x23\x86\x3a\x66\x54\x35\xcd\x43\xc6\x88\xc8\x39\x25\x45\xd1\x3d\x8f\xbe\x0b\x0f\x8f\xc7\xe3\xf1\xd1\x7e\xff\xa8\x6d\x1f\x2e\xf4\x3a\x93\x20\x63\xb7\x27\x67\xf7\x6c\xaa\x99\xf0\xec\x0c\x53\x26\x90\x2f\xd3\x0e\x1d\x31\xf2\x71\x7a\x8f\xd6\xc9\xb5\xf2\x30\x57\xb3\xe3\x64\x5a\x49\x69\xf4\x1c\xec\x46\xb6\xef\x54\xba\x97\x03\xec\x85\xae\x1c\xe6\x7d\x99\x28\x33\x59\xd6\x24\xc0\xde\xbd\x0d\x8c\xfe\x78\x2c\x5c\xda\x4d\x6a\xcc\x84\x28\xf4\x28\xc9\x49\x92\x64\x4a\x44\x22\x6b\x54\x24\x16\x00\x97\xd5\x88\x54\xfb\x7f\xa7\x2a\xb1\x54\xfd\xd2\x34\xf8\x8c\x32\x51\x1d\xf4\xad\x16\x17\xe2\xcf\xfa\x56\xe3\xef\x15\x87\x44\xcc\x42\x20\x7a\x8b\xd9\xdf\x14\xf9\xa1\xaf\x90\x83\x7e\x5c\x3b\x25\xd0\x4e\x2f\xe8\x9d\x0d\xba\x87\x35\x76\xad\xe8\xf4\x2d\xed\xed\xb6\x19\xd1\xca\x70\xe4\xc0\x19\x7f\xc5\x28\x16\x76\xab\xf0\x7a\x7b\x14\xe0\xb5\xe7\x49\xb5\xa2\x0a\x79\x8e\x63\x48\x9d\x9a\x9f\x54\xe3\x45\x4e\x0e\x1e\x83\xf3\xb8\x97\x13\x78\xfe\xe8\x1a\x26\xb0\xd0\xce\xe9\x2c\xb2\x27\x78\x8a\x83\x90\x63\x7d\xc5\xe1\xf0\x29\x3f\x38\x5c\x95\xfe\x15\xd0\x73\xf2\xb9\x01\x69\x5d\x09\xb9\xb6\x23\xbb\x25\xb1\x5d\x30\x31\x08\xee\x07\x06\x02\xe7\x9a\x40\x35\xcf\xea\x40\xf7\x70\xae\x80\xcf\x15\xce\x1c\x9e\xff\x06\xfb\x06\x96\x3b\x73\x04\x8e\x33\x1d\x52\x6a\x3e\x3f\x60\x45\xba\xe8\x4f\xca\x9b\xf6\x87\xae\x27\x15\x20\xbc\xb1\x2d\x43\x19\xeb\x75\xa3\xea\xef\x83\xcc\x92\x5f\x61\x22\x0f\x83\xad\x62\x31\x19\x74\x40\x96\x92\x63\x78\x5a\x58\xef\x6a\xf0\x18\x8b\x36\x8e\xd0\xfc\xe8\x18\x27\x12\xa2\x9a\xdc\x33\x2e\x4f\x8f\x33\x1c\x8e\x87\xd9\x65\x44\x0c\x11\x35\xc2\x7d\xd8\xe0\x54\xe7\xaa\xc5\x07\xd7\x42\xda\x8a\x06\xcb\xc5\x37\x5b\xb2\xac\x2c\x10\x38\x8b\xf7\xd9\xf7\x09\xb0\x15\x5d\xe4\xe1\x48\x98\xa7\x80\xe8\x7c\x9d\x67\xd2\x29\x20\x7c\xf9\x8c\xee\x82\x9c\x02\x19\x4d\x38\x20\xba\x10\xef\xc3\xef\x04\xbc\xe4\x02\x1a\x33\x3f\x77\x97\xe3\x04\x60\x12\x62\x55\x78\x27\x24\x38\xd2\x90\xfd\xca\xe9\x16\x43\xc3\xe1\x89\x17\x68\xad\x0f\x42\x3e\x6a\xe4\xb6\x55\x41\xda\x39\x2f\xa4\x39\x8e\x78\x61\xf0\xe9\x95\xe0\x01\x91\x5a\x31\xf1\x8e\x9a\x66\x4c\xdc\x23\x33\x8e\xf8\xa4\x6c\x64\x50\x4a\x32\x59\xf1\xde\xa8\x2c\xdf\xa4\x9a\xfa\xc1\x7a\x3c\x95\xc9\xdd\x3f\xdf\x84\xc4\x05\x12\xcf\x0b\xc4\x7b\x25\x94\x93\xf4\x78\x14\x62\xf1\xea\x97\xe8\x47\xb7\xc3\xc7\xa2\x64\xd3\xe8\x56\x19\x2f\xbb\xa4\x1e\x61\xd0\xa6\x9d\xf6\x0a\xaf\x45\x67\xd4\xc4\x58\x98\xd9\x3c\xa1\x58\x3a\x32\x77\x17\xc5\x48\x3a\xc1\x15\x72\xb5\x5a\x4d\x27\x4a\xcd\xed\xa5\xd9\xce\xe2\xeb\x9b\x98\x76\x0f\xf8\xe4\xba\x0c\x55\x2e\x38\x5f\x84\x25\x06\xe3\xcf\xcd\x89\x51\xa5\x57\x33\x6a\x4d\xfc\xce\x02\xa5\x70\xd0\xd6\x93\xa9\xb9\x50\x24\x6e\xc5\xfc\x70\x4b\xa2\x29\xdb\x8a\xfa\x41\xdd\xc1\x66\x84\x14\x0f\x74\x5d\x68\x46\xb0\xdf\x4e\x54\x9f\xf0\x8c\x4a\xa1\x88\x68\xe3\x3c\xac\x56\xf2\x14\x09\x23\xf8\x65\x38\xe3\x9d\x6c\x7a\xa6\x05\xfb\x49\x14\xcb\x9f\x07\x2b\x31\x47\x77\x4e\x1e\xcb\x60\x58\x88\xb1\xf1\xd6\xdc\x65\xba\x14\x6e\x28\x8e\x8c\xb1\xe6\x51\x9c\x92\x61\x24\x70\xf7\x25\xad\xb3\x44\x1a\x83\x3c\x97\x6e\x75\xb3\x3e\xc5\xd9\x58\xa7\x89\x08\xac\x2d\x4e\xd2\xc3\xce\xa2\xba\x0c\x0d\x9a\xd4\xf1\x65\xd8\x72\x97\x46\x16\x28\xed\xc0\x77\x7a\xbd\xcd\x96\x83\xdd\xe4\x74\x9a\x11\x09\xdf\x42\x00\x79\x2b\x95\xa0\x1b\x40\xc7\x5e\xba\xf8\xdc\xe3\x44\x33\xdf\xa9\xe6\xf6\xde\x5e\x17\x2f\x2d\xfc\xb3\x9d\x25\x57\x9c\x88\x8b\x1d\x72\xf0\xf3\xbe\x62\x44\x03\x8a\x93\x4a\xeb\x8b\x9e\x58\xe3\x28\x88\xec\x0a\xbb\xff\x17\x5a\x14\x6a\xe0\x16\xe1\xe7\x8c\xf7\x86\xd2\x33\xde\xfb\x66\x81\x03\xe4\x53\xec\x4b\x39\xef\xce\xda\x5b\x7a\xcf\x64\x8d\x3f\x53\xce\x56\xfb\x90\xf9\x4c\x7b\xf1\xbc\xcc\x5d\x4b\xa7\x9b\xfc\xed\xd4\x5f\x20\x61\x41\x0a\xe0\xab\x41\x19\x24\x5f\x0f\x9c\x83\xba\xa3\x69\xd2\x8b\xb3\x37\x47\xd3\x88\x57\xf6\x30\x47\x05\x60\xda\xd4\xc1\x08\x95\x50\x42\x4e\x7c\xbd\xe5\xf3\x46\x2a\x12\x30\x25\x47\xf9\xcf\xa6\x22\x87\xb8\x7b\x1d\x5e\xe1\xb9\xd1\x0b\xdb\x62\xd6\x23\x76\x2b\x9e\xf7\x88\x2f\x18\xc0\x8e\xf8\x65\x01\xe8\x96\x02\xcf\x4d\xfd\x22\x23\x76\xd9\xde\x81\x5a\xd7\x16\x6f\xe2\x72\xda\x42\x63\x40\xa2\x9b\xb0\x44\xd4\x54\xe8\x0d\xc2\xac\x7f\x4e\xd1\xad\x4f\x23\xbb\x9a\x75\x19\x50\x4c\xc3\x2b\x87\x90\x54\x42\xab\x4f\x73\xe8\x90\x36\x01\x2f\x40\xf9\x41\xc2\x5f\x03\x28\xca\xab\xef\xdf\x5e\xdf\x03\x1e\x3a\xf0\xa7\xe2\x4d\xac\x35\x50\x88\x18\x14\x71\xdb\xf7\x6f\xaf\xe9\xe9\x53\xbf\x53\xc7\xd2\x57\xc8\xcb\x75\x46\x43\x52\x0a\x27\x64\xa1\x93\x4f\xbc\x37\xab\x86\x13\x84\x41\x98\x9a\x61\x26\x14\xea\xf4\x76\xe7\x0f\x0a\x83\x68\xdc\x83\x2b\x76\x6e\x09\x57\xa4\xdf\x09\x04\xb1\x30\xe7\x4c\x69\x89\x4e\x61\xe2\x1d\xe3\x5c\x26\x6a\x56\xf4\xbf\x9b\xae\x39\xea\x68\x97\x39\xdd\x38\xf1\x14\x61\xe6\xe5\x89\x34\xce\x1f\xc9\x15\x7b\x19\xc1\x2b\xb9\xc7\x00\x4e\x00\xf5\xc3\xbd\x38\x56\x21\x2e\xfb\x85\x78\x45\xbf\xee\x07\xc7\x78\xee\xa9\xcc\x65\xf6\x79\x5f\x5f\xf3\x50\x1a\xb0\x43\x8c\x8e\x35\x79\xf6\xb8\x23\xcd\xee\xef\xb0\x0b\xfd\x43\xfc\x1d\x16\xf7\x3f\xc4\xdf\xb5\x69\xd5\xa7\x7f\x84\x03\x91\xf8\x1c\x1d\x30\x8e\xf3\x59\x60\x06\xb2\xb4\x02\x11\xb0\x58\xbe\x8f\x8e\x5d\x37\x9d\xd0\xa5\x36\xc0\xd1\x6c\x7a\x1f\xe2\x95\x36\xd6\xf8\x41\xaf\xc7\x89\x96\xd6\x4a\x74\xe9\xfe\x9d\x9c\xb8\x9e\xe0\x97\xf8\xbf\xad\xc9\xf5\x2a\xb2\x8e\xe3\x6d\x1e\x6f\x6b\xd0\x30\x63\xe0\xe9\x2c\x8a\x00\x9e\x3b\x14\x77\x62\xbd\x45\x73\x8d\x1d\xf4\x56\xc3\x80\x62\xa1\xac\x17\xf8\x8a\x38\xc6\xe5\xde\x49\x47\x78\x63\x7c\x61\x0a\x5a\x49\xd5\xc8\xf8\x90\x91\x2b\x2b\x28\x35\xde\xd5\x44\x80\x8e\x82\x1b\xc6\x3a\xcd\x74\x40\x73\xa7\x06\x1f\x0f\x9c\xbc\x78\x67\xc5\x5b\xb5\x1d\x3b\x39\xe4\x97\x91\xa7\x05\xa6\xe3\x1d\xf0\xb0\xb1\x0a\x37\x27\xa0\xba\x18\x18\x57\xc6\xcf\xe3\xb5\x64\xb6\x65\x83\x10\x3d\x50\xec\xb0\x69\x2d\x64\x35\x70\x68\x36\x78\xc4\x81\x96\xcb\x28\x28\x45\xc5\x19\x35\xb8\x0d\x78\xfa\xb6\xd4\x0a\x72\x8a\x89\x6d\xa0\x60\x28\x0b\x2d\x48\x0e\x3e\x21\x1c\x0a\x9f\xcc\x4d\xf4\x76\x82\xa6\x98\x44\x93\x0b\xea\xc9\x7e\x4a\x50\xe1\x21\x1b\x6a\x12\xba\xdf\x95\xb1\x3b\xf3\x75\x46\xf1\xa0\x2f\x60\xe5\xd3\xcf\xd7\x21\xa2\xf4\x1c\x2c\xea\xd3\x29\x8c\x74\x49\x94\x4c\x80\xc7\x95\xc6\x83\x54\x06\xc8\x61\xa9\x96\xde\x1e\xe6\x67\x7d\xd0\x10\x81\x31\x92\xdc\x42\xf3\x26\xc3\xb4\x18\x4e\x47\x6f\xb2\x39\x8c\x77\x3d\xb4\x69\xf5\x9d\x6e\x47\xd9\x61\x63\xee\xc3\xfb\x87\x12\x6f\x63\x0d\x5e\x2c\x3f\x89\x7b\xd2\x21\x64\x1d\xf1\xa1\x78\xf4\x8b\xdd\xa4\x00\xf7\x8b\x3d\x02\xae\x16\x3d\x5d\x78\x25\x61\xa0\x7a\x91\x42\x55\xe7\x96\x57\x32\xab\xe2\xfc\xa0\x78\x7d\x61\x96\xfe\x30\x13\x47\xd8\x35\xe5\xd7\x01\x70\xa2\x00\xf0\x44\x7a\xb9\x08\x16\x06\xf4\x75\xb8\xd5\xa1\xb0\x10\x0a\x1d\xad\xf4\x32\x9d\x6d\x19\xcb\xf1\x74\xd6\xb2\xb9\x5d\xb4\x9a\x2d\xe2\x5f\x58\x5f\xb9\x61\x0e\x08\x17\xb4\x46\xbc\x75\x03\x15\x03\x9f\x3e\x9b\x4b\x59\x33\xf3\xf1\xdb\x9c\x35\x85\x06\xa7\xdb\x24\xd8\x95\x69\xd4\xda\xcc\x50\x54\x5e\x52\xc3\xa6\x2d\xf1\xa3\x13\x84\x0a\x1d\x28\x82\xcd\xff\x33\xd4\x3a\x4d\xa8\xc4\x88\x3e\x1b\x64\xe9\x34\xbe\x3f\x9c\x64\x6c\x59\x28\xa4\xdc\x4e\x0a\xbc\xf2\x48\x9e\x1d\x73\xf3\xd3\x39\x47\x17\x81\x5c\x50\x61\x80\xe4\xe7\x7c\x0c\x70\x1e\x3d\x20\x29\xea\x76\x16\x15\x2c\x77\x4f\x73\xa7\xdb\x8a\x7b\x1e\x11\xe0\x32\xc4\xf4\x09\x52\x13\xda\xf8\x61\x63\xee\x95\x69\xd1\x4d\x70\x43\x27\x3a\x33\x9b\xc8\xfd\x33\xe5\x33\x27\x0d\xa7\x54\x92\x65\x64\x41\x55\xfc\x4c\xa8\xe4\xf9\xea\x0f\x1b\xfa\x2b\x75\x60\x87\xbc\xa4\x92\xc9\x5b\x14\x5c\x03\x5f\xc6\x68\x72\x81\xe1\x2e\xa0\x5a\xdc\x11\xd2\xab\x00\xb1\x69\xa1\xc0\x70\xba\x79\x65\xa0\xae\xa5\x00\x5d\x99\xa2\xd4\xd6\x13\xa7\xc3\xcb\xb6\xc5\xfe\x14\xce\x87\x27\x0b\x4c\x22\x6a\x16\xb8\xca\x88\x9a\xf3\xf9\x32\xa9\x38\x84\xd5\x9c\x9b\x9d\xed\x90\xfb\xd8\xe5\x0d\x5b\xe8\xd2\x62\xb1\xc2\x0d\x82\x9e\xed\x85\xf9\x98\x2e\xdb\xed\xe8\x6d\xd4\xdc\xf8\x9e\x2e\x38\x4f\xb7\xc7\xc9\x9c\xbd\x27\x0c\x67\x68\x14\x9d\xc3\x9d\xa2\xdc\xd5\x22\xd5\x38\x4e\x5e\xae\x7d\x27\x8b\xcd\xe4\x9a\x4a\x66\xbc\x29\x8c\xac\xf8\x46\x4e\x0a\x88\x03\x92\xe8\x7a\x46\xf8\xe2\xc9\x9c\x32\x26\x0e\xdb\xf5\x28\x24\x2a\x0a\x92\x79\xd9\x55\x39\x2f\x0e\x64\x29\xe1\x39\xc4\x76\x93\x89\x41\x25\x9e\xe4\xb1\x55\x05\x5d\x4b\xf6\x63\xb3\xa3\x93\x3b\x34\x9e\xf0\xe3\xfe\xaf\x6f\xde\x09\x32\x9b\xfa\x41\x6f\xb7\xb0\x01\x8b\x3f\xef\x94\xc1\xd7\x96\x9d\xdd\x2b\xe6\x6e\x4d\x33\x92\x89\x8d\x9e\x95\x3d\xa8\x10\x5f\xd2\xb4\xbc\x1d\xe5\x41\xae\x83\xdd\x80\xdc\xcd\x04\x3e\x7c\x8f\xee\xd8\xbd\x6a\xf4\xe6\xb8\x12\xd7\x4a\x0e\x86\x5e\x69\x0d\x1e\xb2\xf7\x5e\x89\x8c\x3d\xc1\x90\x26\x3f\x3e\x96\xb9\x7d\x99\x49\x92\x4f\x5f\xde\xa8\x66\xe4\x99\x82\x2e\x05\x74\x0c\x14\xbe\xef\x6c\x17\x99\x36\x6d\xcd\x1a\xf6\x00\xc1\xb7\xf5\xbe\x64\x9a\xce\xda\x90\x3f\xeb\x4b\x55\x7f\x29\xe3\x65\x54\x2b\x4f\xe6\x66\x6e\xcb\x85\x78\xa7\x1c\x46\x00\xc4\xef\xcf\x80\x07\x12\xdc\xd0\x4b\x8e\x78\x67\x00\x4d\x8a\x34\x2d\x22\xd6\xf0\x12\x35\x4a\x54\x81\x46\x6e\x6e\xe6\x59\xac\x23\x75\x11\x9b\x76\x98\xf6\x93\xe6\x3e\xb9\x8b\x51\x75\x7f\x1b\xd5\xa8\x56\xe2\x85\x17\x7b\x79\xa4\x97\x8b\x37\xea\x20\x9c\x6a\xac\x69\x5d\x88\xc7\xa0\x3d\xde\x19\x75\x62\xec\xc3\x1d\xde\xd9\x90\xcc\xdb\x56\x1a\xfd\x95\xf3\x4b\x20\xae\xb7\x14\xeb\xed\x2d\xff\x9c\x03\x91\xe3\x04\xf4\xea\x39\xfd\x9a\x83\xf4\xfc\x06\x5f\x7c\x8d\x6f\x0e\xb2\xb6\x2d\x8c\xd9\x2f\xb6\x3d\xce\xcd\x9f\x61\x74\xa2\x0d\x14\xd7\x72\x6f\x0f\x78\x14\xb7\x3e\x62\x86\xf6\x4e\x75\x1b\x7a\xc4\x06\xf4\x3f\x15\x42\x7b\xa0\x40\x11\xe3\xad\x08\x5a\x42\x4c\x27\x34\x93\xe3\xd5\xb3\xdc\xbb\x90\x1e\x73\x28\x22\xd3\x4f\xdb\x44\x81\x3f\xb8\x5d\x2f\x48\x76\xc7\xd1\x44\xbb\x27\x45\x5c\x39\x07\xdd\xb7\xcf\x2e\x47\x07\x7b\x4e\x4f\x4f\xa6\xaa\x16\x79\x00\x3e\x0c\x15\x40\x48\xf9\xa1\xbb\xf7\x59\xe0\xc2\x24\xf2\x6a\x87\xf5\x2c\xb4\x88\x03\x4d\x02\x81\x28\xc4\xe4\x0c\x22\x5d\xec\x40\xa0\x10\xb2\x7a\x2a\xc2\x30\x78\x32\xaa\x3e\x2f\xd8\x47\xc6\x80\xe3\xc0\xd8\x2d\xcb\x5d\xfc\x14\x2a\x19\x57\x80\xb1\x06\x5b\x4a\xe6\xc4\x09\xb4\x7a\xff\xf6\x3a\x67\x86\xe7\x42\xc2\xf6\x48\x16\x83\x41\x6d\xe5\xd0\x86\x08\x23\xcc\x98\x77\xd2\x13\x03\xce\x5f\x52\xc0\xd0\x5f\x8c\x82\xee\x86\xdf\x6a\x83\xd1\x31\x51\xb4\x67\xa3\x17\x68\x59\xc9\x5f\x03\x78\xf1\xd8\x03\x7b\x26\x5e\x1f\xea\xc1\x2e\x7f\xfb\x1f\x37\xaf\x5f\x9d\x8b\x4f\x8f\x0e\x87\xc3\x23\x28\xfe\x68\x1c\x3a\x65\xa0\x0b\xed\xb9\xf8\x5f\x2f\xaf\xcf\x85\xf2\xcd\x77\x2b\xf1\x92\xb8\x76\x62\x86\xec\x32\x89\xee\xd0\xe8\x7f\x38\x0e\xff\x02\x37\xe7\x15\xc3\x06\xc5\xfc\x0d\xcb\x5c\xf6\x82\xd1\x0b\x97\xe5\xc2\xf3\x8f\x78\x69\x2e\xdb\xc7\x9b\x41\xe1\x5d\x33\xfc\x31\xcd\x48\x6c\x0f\xc1\xc2\xfc\xc4\x38\xff\xd2\x89\x9b\xe7\x97\x7f\xf8\xf7\xff\x29\x9e\xbf\xbc\xbc\x12\x3b\xf5\x49\xb4\x7a\xab\xe8\x20\x2a\xac\xe8\x3b\x1d\xc6\xfa\x7f\x3d\x82\x49\xf0\xe8\x46\x6f\x8d\xf4\xe3\xa0\xc2\xb8\x13\x7b\xc8\x45\x8b\x4e\x36\xb7\x4b\x4f\xc6\x4c\x41\x74\x63\x0d\x13\xe0\x45\x63\x4d\xd9\x7b\x02\x09\x17\x3b\xae\xf0\x4a\x47\x32\xae\xc2\x94\x89\xfb\xff\x4e\x19\xe0\x8f\x63\xd7\x96\x5b\xdb\x5a\x85\x29\xa0\xda\x9f\xa7\x85\x31\x82\x97\x35\x1d\x30\xa5\xff\xc0\xb8\x2d\xbb\xe0\x0c\x02\x59\xa1\x77\x08\xbc\x9a\x16\xc6\x47\x7a\x33\xb5\xe8\x42\xbc\xa0\xd7\x82\x83\x5a\x96\xf2\xa2\x6a\x36\x43\xc2\x56\xb2\x0b\x71\xad\xbc\xd8\x47\xab\x19\xce\x72\x42\x37\x2f\x52\x3a\x0b\x2e\x67\x07\xba\xfc\x92\xc7\xf4\x0a\x8e\x74\x73\x1a\x96\xd7\x56\x16\xb3\x97\x31\xf2\xae\x3d\x2d\x92\x07\x72\x5b\xc8\x4a\x21\x34\x53\x78\x34\x0c\x59\xb7\x34\x40\x1c\x57\x6d\x71\xec\xb2\x2d\x23\x9c\x0d\xe6\xaa\xf7\xb4\xcc\x34\x66\xd9\x62\x76\xe4\xf7\x68\xf4\xa5\x1b\x5f\xe7\x74\x8f\xad\x3d\x17\xe1\x0e\xd8\x39\x7b\x38\x9d\x87\x4b\xe3\xed\xb9\x18\x4d\xfa\x4d\xf7\x6f\x58\xf1\x0b\x9f\xe8\x61\x09\x9f\xd1\x01\xae\x3d\xa7\xd7\xdf\x52\xc2\x6c\xbc\xc9\x4a\x9e\x6e\xb9\x51\xbb\xc2\x5d\xb7\xfb\x80\xcb\x9e\x04\x0c\x3c\x09\x52\x07\xe2\xf3\x73\xf3\xba\x27\x8e\x03\x85\xb7\xf4\x3d\xa0\xd1\x97\x22\x3f\x86\xfe\xdf\x4f\xc9\x9c\x8c\xd8\x2d\x77\x34\xcd\x6e\xb0\x46\xff\xbe\xd0\x37\x0e\x24\x97\xe2\xc8\x9d\x00\x48\x93\x95\xe0\xd1\x94\x8f\x7e\x09\x78\xe5\x68\xf9\xc0\x90\x42\xaf\x85\x18\x6c\xd3\x8c\xe4\xd9\xfe\x44\x79\x7c\x89\x67\x69\x37\x24\x63\x68\xe4\x5e\x69\xff\x0a\x1c\x9c\xe5\x3f\x52\xa5\x28\x8a\x79\xb1\x7f\xe3\xe6\x5d\x2a\xd4\xcb\xe2\xe8\xcc\x47\x29\xd3\xbd\x58\x3a\x98\xe9\x17\x0c\x38\xa9\x63\x26\xd6\xf3\xb8\xcd\xb5\xf5\x54\xc3\x29\x0d\x86\x2e\x25\x07\xc9\x3a\xbc\x06\x88\x4f\x41\x3c\x89\x69\xa5\x3e\x18\xf6\x49\x94\x7c\xca\x4d\x12\xa3\xa2\xe0\x7e\x92\xcb\x34\xa0\x59\x96\xd7\x1a\x01\x04\x2f\x35\x6a\xe3\x55\x08\xc1\x39\x7b\xbd\xe5\x38\x21\x75\xab\x5d\x83\x6f\x9f\xdf\x87\xfb\x09\x01\x7d\x1d\x76\x6a\x73\x88\xf4\x4f\x2f\x12\x4c\x32\x5b\xbb\x97\xe8\xb0\xf7\x04\x7f\xcc\xf6\xcf\x9d\x34\x86\x9c\x93\xe9\x57\x3e\x16\x7d\x67\x8f\xe1\xf9\x9c\x27\xf8\xc5\x4f\x02\x2e\x80\x64\x8f\xcd\xac\x7f\xba\xa2\x27\x5f\x9e\x59\xdf\xec\xe4\x37\x3f\x3e\x5e\xff\xc4\x6f\xeb\x3f\x1c\x94\xe8\xac\xbd\x0d\xf7\x12\x64\x8b\xf3\x3a\x3e\x1e\xd0\xc7\x47\x59\x92\xc3\x80\x6c\x5b\xf2\xf2\xd0\x86\x48\x91\xd1\x0d\x28\x17\x9f\xdb\xe4\x56\x4d\x04\x29\x1c\x81\xd8\x4e\x26\x7d\xea\xcd\x52\x67\x92\x3a\x8c\x50\x48\x01\x34\xda\x0c\x4a\xb6\x8f\x50\x26\x20\x83\xcd\x4a\xbc\xdb\xa9\x63\x0c\x12\x8b\x6f\x02\xe2\xb9\x60\xf9\x1e\x02\x36\x2f\xbc\x94\x93\x1f\xaf\xd9\xba\x24\xf2\x5f\xf8\x70\x03\x43\x6e\x90\x1d\xc4\x1c\x45\x9b\x9a\x91\x1b\x06\x0b\x97\xff\xa5\x5e\xcc\x9f\xa6\x89\x50\xd3\x27\x74\x52\x4f\x4f\x3e\xa1\x93\x17\xcd\xdf\xd1\xc9\x8a\xa2\xec\x1e\x89\xb0\xe8\xe3\x5a\x0c\xcb\xfc\x95\x9c\xd4\xd5\x2f\x78\x28\x67\x79\xe4\xa6\xc6\x8f\xcf\x0e\xf5\x7d\x2e\xee\x6d\xde\xb9\x2f\x78\x32\x67\x1a\xfe\xe9\x0b\xec\x20\x4b\x6d\xc9\xbd\x3b\x63\x03\x3e\xe7\xf0\xde\xea\xcd\x66\x45\x91\x43\x6b\x67\xc7\x01\x9f\x8d\xff\x05\xbf\xc5\x0d\x7e\x13\x08\xc7\x4d\xbb\xe0\x00\x6a\x94\xc8\x37\xcb\x2f\xd8\xdb\x92\x12\xf1\xce\x1b\x9a\xf4\xee\xa4\xee\x50\xfd\xbc\x10\x4f\xf4\x66\x43\xf7\xdf\x5e\x59\x7c\x60\x90\x72\x56\x54\xc4\xed\xec\xa1\x86\x5f\xf8\xa2\x0e\x7a\x56\xed\xec\x81\x0a\xdd\x40\x4a\x06\xe6\xfa\x4e\xfb\x9a\x83\x96\xde\xc0\x07\x86\x5d\xcd\x20\x46\x83\x21\xd6\x02\xcc\x7b\xfa\xcc\xa1\x00\x65\xbc\x82\x1e\xce\x38\xce\xda\x18\x17\x0c\xd5\xff\x74\xfa\x81\x33\x34\xc0\x9d\xb5\xc8\x7f\x50\xbf\x4f\x20\xf9\x0b\x15\x67\x6d\xb4\xbc\x26\x08\x26\x34\x32\xd5\x5f\x5e\xbc\xa2\x4f\x0c\x19\xca\x31\x63\x30\x76\xec\x53\xdd\x31\xbd\xf9\x75\xcd\x1e\xe3\x92\xa9\x36\xc4\x4b\x83\x3c\x91\x25\x67\xb7\xa6\xf2\xe8\xb1\x84\xc3\x5b\x5b\xef\xa5\x39\xc6\xfb\x94\x37\x76\xaf\xd8\xb6\x71\x50\xe1\x85\xf4\x9d\x3d\x64\x57\xcc\xac\x15\x50\x84\xa1\x02\x41\x82\x9d\x11\xd0\x56\x21\x60\xee\x6a\x29\x70\x6e\xc8\xa3\x48\xc8\x41\x1e\x82\x55\x1a\x64\xa2\x00\xd1\x0e\x72\x83\x37\x7e\xe0\x7f\x4c\xed\x07\x95\x8a\xbd\x19\xd4\xa3\x69\x31\xbe\x99\x03\xff\x62\x9a\xdc\x91\x57\x78\x1a\x81\x34\x32\xe1\x12\x99\xb7\xe2\xcc\x71\x58\x39\x5e\x70\x25\x62\x9a\xfd\x35\x7a\x0f\x5f\xf0\xdc\x17\x57\xb6\x55\x45\x9f\xf2\x2b\x3f\x6f\x48\x6e\x13\x91\x0e\xe8\x19\x41\x0f\xfd\xf4\x83\x6d\xc7\xc6\xaf\x8a\x76\x17\xa5\x49\x50\x53\x61\xd6\x89\xce\x6e\xd1\x1a\x80\x71\x40\xc9\xe7\x71\x34\xad\x1a\x9c\x27\xf7\x66\x99\x71\x57\xbd\xef\x07\x32\xbd\x07\xf4\x5e\x6e\xe3\x43\x44\x72\x4b\xc1\x0c\x52\x1e\x5a\x92\xc3\x2b\xcb\x45\x99\xb8\x01\x07\x4f\xe8\x2c\x98\xa0\x97\x5b\x14\x7a\x9b\x3c\x84\x35\xe8\x68\xd6\x04\x99\x35\x6b\x40\xb1\xb3\x84\xd4\xf9\x6e\x12\x72\x4a\x6f\xff\x6c\xf8\x79\xd9\x72\xfc\xdc\x98\xd3\x59\xd9\x92\x52\x7c\x4d\xbf\x56\xab\xd5\xc2\xac\x99\x3f\x95\xd5\x0f\xea\xd1\x74\xac\x33\xf8\x48\x80\x3f\xab\x87\x5d\x27\x7a\xab\x8d\x17\x74\x7b\x45\xfa\x62\xa6\x84\x93\x07\x1e\x5a\x6d\xcd\x23\xdc\xa6\x52\x33\xa6\x77\xb6\x62\x75\x3c\x51\xd2\x94\x99\xce\x6a\xbc\x0d\x13\x56\x04\x5e\x87\x29\x97\x05\xce\x9e\xb4\x30\xf0\x5e\xda\x6c\x41\x91\x18\x9c\xa0\xca\x13\xe7\x05\x60\xda\xf2\x82\x1a\x12\x4f\xaa\xa6\x30\xcb\xbb\x5c\xa8\x67\x7a\xff\x05\x5f\x3e\x75\xbd\x35\xf1\xf0\xd6\xcb\xed\x3d\x7b\xda\xac\xb6\xfc\x04\x94\xaa\xf8\xcc\x26\x36\x5d\x03\xe5\x6d\x9a\x0c\x0f\x8b\x1a\xc0\x29\x79\x8d\xcc\x44\x8d\x19\x2e\xbe\x7d\x98\xad\xab\x30\x0f\x30\x3d\x95\x08\x91\x1f\x70\x03\x0e\xbf\xab\xea\x83\x1d\xb6\x1f\xf1\xb9\x75\x8a\xf2\x1b\xa3\xfc\xe5\x67\x5a\x68\x77\x05\x98\xf8\x74\xf3\x09\xc0\xf4\x9c\x73\xc2\x18\x26\xf0\x33\x58\xa6\xa5\xbf\x08\x00\x90\xd5\x1b\x9f\xfd\x61\xbf\x76\x7e\xf9\x67\x15\xa2\xd6\xd3\x2b\xf4\x7c\xdd\x2b\xaf\x8e\x82\xc9\xa7\x4b\x44\x1c\x94\xbb\x62\x7f\xf3\x0b\xf1\x06\x7f\x54\xda\xdc\x69\x0f\xf2\xc3\x5e\x91\xc3\xd9\x0b\x4c\xc0\xfd\xc6\x1a\x55\x15\x1e\xd9\x15\xc6\x12\xae\x83\x37\xf6\x45\xf0\xcb\xe6\xf4\xc9\x63\xed\xc5\xe3\xea\x59\x80\x5c\x40\x59\xde\x51\x03\xe4\x48\x95\x85\xdb\xab\x00\x1d\xd9\x23\x94\x44\x12\x62\xea\x7d\xd0\xc5\xb3\x3a\xc0\x1d\xc6\x10\x16\x0e\x71\x61\x78\x06\x43\x0a\x17\x4e\x2a\xc0\xac\x4d\x11\xaf\xc6\xad\x52\x35\x19\xaf\xd9\xd1\xd5\xd6\x54\x0c\x84\x43\x74\x6a\xfe\x99\xe0\x8b\xa7\x25\xd8\x20\x29\xe9\x59\x2c\x4a\x16\x9d\xba\x53\x5d\x61\xa1\x44\x44\xa0\x09\xfc\x7c\xe2\x31\xf9\xd7\xd3\xb9\xf1\x4f\xbc\x57\x32\xc7\x71\xef\x8b\x25\x88\x2e\x11\x34\x6b\x0c\x8e\xc3\x89\x46\x54\x99\x5b\xf4\x57\xdd\x4e\x5b\x7e\xfa\x3c\x3f\x36\x9a\xbc\x81\x1e\xb3\x96\x1e\x43\x3f\xe5\xa4\x71\x9f\xdf\x78\x09\x9a\x31\xb3\x82\x70\x11\xd3\x97\x7a\x74\xb0\x3b\xba\x1d\xb6\xff\x9a\x37\x7a\xf1\xb6\xdb\xac\xd5\xb3\xf7\xba\x8b\x46\x7f\xdd\xbb\xdd\x27\x3d\xa0\x0a\x0e\x33\x35\xe2\xcc\x1e\x93\xc3\x0e\xde\x5b\xa4\x7c\x5a\x2e\x6f\x70\x3c\x38\xcb\x3c\x90\xd8\x69\x81\x1e\x95\xa3\xc3\xf3\xcf\xbf\x2c\x77\xc2\x73\xe5\xbe\x27\xe6\xa6\xad\x04\xce\x14\x83\xbf\xe5\x8d\xbc\xb7\x44\x2e\xcd\xd8\x89\x17\xc4\x3f\xff\xec\xdc\xb2\xc7\xc3\x65\xdb\x06\x6b\x1e\xbf\x32\x15\xe8\x97\x2c\x86\x9b\x2c\x64\xf2\xf4\x51\xc1\x44\x39\x94\x5b\xf9\xd2\x56\x31\xdf\x2a\xe6\xf5\x2b\xfe\xbf\xd3\x7d\x5d\x3c\x35\xf7\x32\xa6\x67\xaf\xce\xfd\x10\x8b\xb1\xa5\x27\xbc\xc3\x3b\x49\x4f\xfc\x15\x6f\x4e\xf7\xf4\xee\x5b\x02\xa2\x6f\x7a\x25\x7c\x29\x67\x5a\xbe\xac\x83\xfe\xd7\x83\xed\x54\x6c\xa8\x78\x6b\x3b\x95\x9a\x57\x86\x3e\x2b\x0b\xc6\x32\x31\x9d\xcd\x02\xe1\xdd\xaf\x98\x8e\x2f\x3a\x86\x47\x1f\x63\x2a\xef\xb1\x79\x20\x7b\x94\xc7\x19\x3b\xaa\x37\x3f\x4c\xa1\x0d\x46\x8c\xe6\xdd\xf8\x95\x3d\x54\xb4\x15\xaf\x30\xb6\xda\x85\xf8\x0f\xab\x0d\xa7\x94\x95\x52\x1a\x48\x46\xe9\x89\x85\xb7\xa0\x63\xd1\x7b\x9f\xf3\xfc\xc9\x73\x52\xb8\x13\xc5\x87\xa4\xf8\xd9\x51\x14\xec\x39\x82\x9f\x21\xb7\x90\xf2\x21\x24\xc2\x3a\x79\xd9\x81\xee\x95\x17\xf5\xe6\x10\x5f\x52\x31\xde\x19\x9e\x56\x77\x1e\x4c\xdc\x68\x77\x8b\xd7\xc0\xd4\x3e\xb4\x03\x5d\x85\x53\x3b\xf0\xea\x72\xd9\x8e\x1c\xe2\x4b\xda\x01\xb5\x60\xb4\xa8\xe0\x42\x7f\xb2\x3d\xb2\x0d\xcf\xdc\x17\x1e\x8d\xd3\x26\xa6\x07\x8d\xde\x65\xfb\x3f\x7a\x85\xb6\x13\x79\xc6\xad\x96\xb6\x54\xca\x21\x27\xbe\x05\x91\x83\x3c\xb4\x17\x1f\xc2\xfd\x3c\x13\xc0\xb0\x5c\x50\x32\x82\x66\xbe\xd7\x45\x70\xf5\xf9\xbe\x44\xed\x4a\x22\x22\xca\x0a\xcc\x1b\x38\xf3\xf3\x5b\x32\xc1\x85\xd7\x45\x48\x5e\xcc\x37\x15\x14\x18\xc3\x48\xb6\x08\x51\xc7\xb5\x0a\x0b\x2c\xab\x75\x8e\x2c\x32\x73\x84\x8a\x4c\x7c\x0e\x17\x56\x6c\x2e\xed\x65\xe7\x2d\x0a\xcf\xa0\x8a\xbb\x89\x01\x6a\x2f\x8f\xd3\x87\x5c\x41\xc4\x2e\x57\xcd\x69\xc5\x6a\xde\x94\xb4\xaf\x3f\xd3\x77\xca\xa4\x09\x73\x52\xb9\x5a\xe5\x4b\x7d\x3e\x41\xd2\xb4\xdb\x0e\x18\xb1\x2c\x8c\x35\x30\x8b\x6c\x2a\x20\xc2\x1f\x62\x2f\x1b\x69\xa6\xdc\x00\x3d\xde\x94\xdc\x3f\xbc\x8f\x29\x7c\x45\x03\x90\x6d\xdc\xdf\x02\x64\x0b\x14\x23\xd3\xb4\x39\x0b\xb8\xaf\x21\xb4\xe6\xbf\xa2\x21\xc8\x37\xbe\xb0\x21\xe7\xa1\x15\x24\x9d\x00\x17\x58\x5a\xff\xf7\xb5\x6f\xa2\x3e\xe1\xe4\x7c\x9b\xeb\x50\x81\x19\xa0\xa3\x26\xea\x77\x8b\x8e\x9a\x99\x39\x7a\xb5\x9a\xae\x92\xcc\xd3\x34\x5b\x29\x99\x53\x7b\x68\x0b\xfa\x94\xf2\xe5\x1f\xde\xe5\x12\x2a\x63\x0d\x3d\x94\x6f\x7c\x7e\x41\x28\x43\xce\x67\x3f\x7e\x38\xb2\xa4\x83\x2f\xe3\x14\x4f\xdf\xa5\x67\xcc\x48\x13\x44\xe7\xad\xc1\xf9\x55\x55\x7d\xc0\xb1\xfa\x58\xb5\xd2\xed\xd6\x56\x0e\x78\xee\x10\x7e\x57\xc5\x0d\xe5\xaa\x78\x82\x79\x22\xa1\xb9\x6a\x42\xd4\x82\x9e\x72\xf4\x3b\x50\x02\xa3\xf6\x70\x59\x24\x38\x7a\x95\x78\x1b\x44\xc4\xed\xc8\x91\x32\xd8\x17\x1d\x6f\xcb\x3a\xaf\xf6\xe2\x15\x25\x54\x7b\x6b\x34\xb9\xbd\xbe\xa4\x5f\xda\x6c\xab\x22\xdc\xcb\x53\xf8\xa0\xd7\xee\x39\xe5\x5a\x3a\x5f\x79\xeb\xf1\x7d\xc3\x77\xf0\xff\x07\x71\xd6\x56\xa9\xeb\x68\xf3\xd6\xce\xa3\xf0\x74\x13\x7e\xbb\x0c\x20\x79\xad\x51\xb4\x2a\xfe\xc8\x51\x60\x3b\xd1\x44\x3f\x66\xed\xe6\x56\x22\xd6\xd1\x2d\x55\x19\x82\xb8\xa0\xbb\x57\x2b\xbd\x5c\x07\xa3\xce\x8f\x6b\xb4\xd5\xae\x7f\x22\x83\xe7\x79\x96\x50\x8c\x48\x9e\x51\x9c\xf6\xa5\xe4\x72\x2f\x4d\xe9\xf4\xa2\x68\x91\xe4\xbc\x2c\xeb\x92\xcd\xac\x96\x70\x40\x93\xa7\x85\xeb\x07\x29\x25\x5c\x44\x28\xb0\x97\xef\xf0\xe7\x59\x74\xe3\xa6\x48\xa2\xdb\x5d\x93\x9e\x90\x39\x39\x4f\xeb\xec\x56\x1b\x41\x26\xea\xb2\x7b\x2c\xb0\x97\x38\x43\x30\xa4\x02\x05\x46\xa8\xcd\x53\xf0\xb4\xdc\x4b\x57\x96\xc6\x05\x9a\x27\x70\x90\x91\x19\x60\x0a\x85\xea\x56\x4b\x13\x29\xe8\xe1\x71\x32\x91\x32\xbe\x04\xe9\x0e\x9a\x5e\x74\xbc\xc1\x1f\x8b\x30\xc3\x88\xc6\xca\xd1\x64\xb9\x4d\xa7\xa4\xa9\x47\xb3\xd6\xa6\xad\x2d\xbf\x8b\x7a\x05\x89\x62\x34\x6b\xf4\xa9\x7b\x8d\xeb\xd1\xdd\x5b\x28\xdb\x18\x2f\xbb\x4e\x50\x56\x28\x99\xdd\xf4\x59\xde\x21\x13\x66\xde\x6b\xd9\x91\x53\x26\x05\xd1\x25\xd1\x43\x62\x18\x46\x76\xe7\x08\xd9\x5f\x84\x63\xd2\xca\x04\x11\xd1\x7c\x7d\x53\x71\x03\x00\x86\xaf\xef\xd4\xa4\x91\xe5\x7b\xf1\x0c\xf2\x19\x0c\x93\x26\x2e\xa2\xf8\xfa\x46\xe2\x56\x6b\xb6\xb4\xed\x9c\x68\x24\x28\xf6\x8d\x1d\x5a\xd6\x5c\x3b\xeb\x3c\xda\x9e\xe9\xf5\xbc\xfb\x51\x9e\x6a\xf5\xbd\x38\xbf\xa2\x1b\x5b\xed\xeb\x6d\x93\x9a\x6f\xc5\x56\x0e\x6b\xe0\xdc\xb0\xbb\x73\x6c\x19\x6b\x4a\x5b\xe7\x72\xf1\xfb\x08\x8c\x0d\x6a\x41\x98\x5a\x40\x7f\xaa\x6d\x83\xc2\x98\x0c\xb2\xeb\x6a\xe7\x76\xec\x51\xf0\x56\xd1\xe9\xcc\xc3\x95\x73\xbb\xc7\x92\x9f\x18\x56\x78\xf6\xee\x1e\xd2\x03\x16\xdf\x36\x12\x2f\x1d\xff\x80\x11\x54\x90\xb5\x63\xe9\x20\xda\x02\xb5\xbe\xbb\xb7\xa2\x49\x5f\x32\xbe\x9e\xd1\x76\xc0\xa6\x78\xf5\x45\x3d\x08\x41\x2f\xde\x62\x12\x9f\xfc\x34\x0a\x7d\xaa\x99\x8b\xa1\xa8\x67\x9d\x0f\x19\xec\xd7\x6d\x37\xb3\x39\x7f\x4f\x15\xf7\x8c\xc2\xc3\xaf\xa9\x35\xef\x26\x3f\x87\x7d\xba\x97\xda\x68\x3f\x5b\x0a\x6f\x31\x99\x5f\x36\xff\xa7\x16\xc4\x12\xe2\x7f\x75\x41\x0c\x59\xab\xa6\x5d\xca\x05\x04\x7c\x53\xb9\x1e\x7b\xaf\x71\xa3\xb8\xa1\x37\x96\xdf\xe3\x77\xce\xb0\xc7\x61\x00\x21\x71\x6b\x07\x3b\x7a\x4d\x0f\xfa\x50\x9a\x78\x16\xd2\xdc\x42\x01\x3c\xea\x38\xd6\x23\x87\xa8\x0b\x65\x5e\x62\xb2\x78\x8f\x2f\x32\xa5\x52\x28\x3f\x85\x32\xb2\x43\x83\x30\x59\xaa\x51\xb0\xe2\x52\x97\x21\x23\x2b\xc9\x65\xec\xda\x4b\x8e\x3b\xc6\xc0\xaf\x39\x25\x83\xc5\x03\x46\x35\xd4\x9d\xb5\xb7\x63\x5f\x43\x57\x31\x28\x0c\x25\x8b\x6b\x4c\x16\xef\x20\x79\x5e\x43\x68\x55\x2c\x36\x69\xd4\xa9\x72\x9b\x41\xcd\xca\x3c\x1d\xd4\x1c\x3e\x50\x6e\xa7\x64\x3f\xa3\xdb\x73\x25\xfb\x19\xd5\x10\x72\x4e\x00\x84\x3d\x4d\x85\xbc\x94\x6e\x51\x8f\xce\x4b\xbc\x68\xbb\x53\x75\x68\x74\x3f\x9a\xc2\x1b\x90\xe3\x4f\x94\x60\x79\x6a\xda\x2a\x3e\x14\x9c\xb5\xca\xae\xff\xaa\x1a\xef\x02\xf4\x6b\xfa\xcc\xa0\xd6\xd6\x7a\xe7\x07\xd9\x83\x28\x8c\x3e\xe9\x44\xa6\x5f\x42\x3a\x88\xc2\xcd\xed\x8c\x52\x04\x3d\x27\x15\x41\x9f\xa6\xd5\xde\xf5\xd2\xd4\xce\x0f\x63\xe3\xc7\x41\xb9\x58\xe1\xcb\x9b\x5e\x1a\x71\x13\x33\x66\x35\xce\x4a\xe6\x33\x74\x5a\x78\xa9\xe6\x46\x36\x3b\xb5\x58\xf5\x15\xe4\xdc\x5b\xf7\xac\x6c\x5e\xf9\xac\xf8\xd2\x4a\x19\xec\x46\x77\xc0\x94\xd6\x63\x73\xab\x7c\xbd\x93\x6e\x57\x7b\x7c\x62\x2e\xc3\xf5\x26\x80\x89\x5f\x10\x4c\x3c\x97\x6e\x27\xde\xa1\xd1\x6d\x01\xeb\xb6\xa9\xf7\xca\x4b\xf4\x52\xca\xb0\x3c\xbb\x12\x2f\x39\x79\xa9\x14\x1a\xe3\x6a\xd6\x80\x78\x15\x82\x50\x9a\x61\x78\x8d\xf6\x3a\x56\x8a\x2e\x23\xc8\x12\x36\xa3\x3e\xf1\x96\xde\x1c\x1b\x7e\x8d\xf8\x93\x87\x36\xbc\xa5\x94\x0c\x16\xd5\xbc\x6d\x53\x07\x1e\x89\x0e\x2c\x18\xcd\xf1\xd9\x15\x2e\xdf\x19\x07\x4b\xc0\xc4\xb8\x9e\x5d\x89\x37\x72\x74\x8b\x80\xbd\xa4\xc5\x74\x12\x32\x54\x1f\x00\x43\xcd\x53\x38\xae\xd4\x11\x29\x89\xad\x90\x8e\xbd\xc2\xdb\xa0\x7b\x69\xe4\x56\xd5\xbd\x24\xbf\x51\xd0\xba\xc5\x4b\x4c\x13\x6f\x20\x8d\x61\x8d\x3a\xe4\x87\x2a\xe9\x74\xf7\x92\x12\x03\x18\x69\x16\xa8\x4f\x50\x4a\x90\x85\xdb\xe0\x22\x8d\x2c\x9a\xf3\x8a\xe8\x93\x94\x96\x36\xd0\xde\x3a\x4e\x0b\x51\x81\xe3\xcb\x4d\x9c\x8e\xf7\x32\x06\xb5\xd5\xce\x73\x28\x07\x8c\xbe\x8b\x97\xfe\xde\x62\x72\xd0\x6f\xf2\x6b\x9c\xef\x2c\xf6\x32\xeb\x58\xe9\xb5\x18\xba\xf9\xf9\xc8\xc4\x2b\xc6\x91\xbf\x12\xc2\x3d\x43\xe5\x25\xb8\xed\x95\x96\x87\xe0\xbe\x47\x90\x30\x1d\x3b\x3e\xdb\xec\xf2\xd2\xa8\x59\x06\x55\x6d\x82\xe1\x1a\xb5\xce\x8c\xca\xbd\x74\xee\x80\x5e\xc9\xc1\xda\x8d\xe7\x05\x42\x7b\xbe\x7b\x86\xd6\x76\xf4\x1d\x1e\x0d\x3b\x8f\x85\xd6\xa7\xb0\x68\xec\xdb\x16\x45\x0c\x26\x04\xe7\x7c\xee\x5c\x31\xd1\x22\x9b\x29\xe8\x10\x53\xce\x91\xbd\xfc\xc4\x6f\xf1\x03\x49\x39\x70\xb1\xfc\xa4\xf7\x63\x6e\xaa\xa2\xa1\xc6\xce\xea\xbd\x3e\x59\x36\x98\xf9\xbe\xbd\x51\x5e\x3c\xfa\x1e\x5f\xb2\x74\x4a\x6c\x3b\xbb\xc6\x40\x94\x14\x4d\xb3\x03\x14\xdf\x31\x0e\xed\xea\x7c\x52\xa2\x81\x30\x34\x18\x7f\x96\x93\xb4\x1f\xec\x4e\xaf\xb5\xa7\x01\x59\x28\x10\x00\xc2\xc3\x72\xdb\x38\x97\xa1\x26\x9e\xe2\x45\x21\x0c\xac\x03\x19\x34\x43\xed\x90\xb9\x0f\x84\x39\x8f\x07\xf5\x35\xa8\x18\xec\x3b\x3f\xc3\x90\x95\xc9\xde\xe4\x03\xb1\x8f\xa2\xce\xe5\x78\xf4\xbe\xb7\x03\x74\x81\x26\xdb\xe7\x70\x11\xb8\x20\xf0\x42\xf6\x5e\x9a\x32\xc9\xc4\x1f\x66\x0c\xb1\xfe\x30\x39\xef\x3d\x41\x2e\xe7\x06\xbe\x86\x50\xdb\x83\x49\x86\xc7\xac\xa5\xf4\x56\x02\xb4\x37\x85\x37\xb0\x20\x99\x82\xcc\x8b\x8f\x8e\x81\x92\x95\x07\xab\x88\xf1\x65\xd2\x2b\x59\x76\x88\x91\x10\xc8\x11\x9d\xcd\x92\x79\x03\x76\xd2\xb1\xf3\xcd\x89\xfa\xd3\x31\x29\x5e\x0d\xc9\xab\xcf\xed\x63\x65\x03\xe8\x28\x2f\xde\xc1\x99\x1d\xaf\xb8\xb2\x29\x0b\x7e\x57\x97\xd9\x90\xdd\xe7\x3c\x6c\x07\xbe\xc1\x3f\xe1\xee\xc5\xf9\x76\xc1\xe5\xb1\x44\xce\xbd\x31\xa1\xf4\x0f\xc2\xa4\x74\xf6\x13\x8e\x7d\xc8\x0a\x8b\x8c\x7b\x5a\x5f\xb6\x9c\x8b\xda\xa8\x44\x79\x2a\x4b\x69\x79\x13\x28\x65\x7e\x3a\x4c\xe9\x6c\x3f\x14\x17\xe2\xcf\xf4\x8b\xd3\xd1\x88\x48\xd2\xdb\x10\xd2\xa6\xb7\xc1\xd0\x38\xcc\x7c\x76\xd2\xe4\x09\xa7\x2d\x9a\x4d\xa5\xe8\x65\x83\x10\xec\x82\x99\x39\x67\x65\xad\xa7\x94\xfc\xe9\x43\x4a\x51\x18\x3e\xac\x8d\x81\xc4\x5a\x4e\x9f\x7b\x73\x65\x8d\x64\x34\x93\xc6\x65\x58\x11\x6a\x79\xb3\xc8\x5a\xe3\x54\x33\x0e\xda\x1f\x31\x06\xa6\x6d\x6c\x47\x77\x45\x31\x0d\xc3\x5f\x42\x1a\xc3\x4e\xaf\x9a\x50\x2a\x46\x3d\xb8\x10\xcf\xad\xf3\x9c\xd2\xd3\xe3\x87\x6f\xec\x10\x52\xd0\x7e\xd7\xa2\x43\xb5\x36\xad\x78\xf2\x2a\x4f\x0f\x3b\x55\xc8\x7d\xc3\xdf\x4b\x30\x99\x5f\x96\x1c\x8c\x36\xdb\x1f\xf8\x35\x92\x80\x03\xdf\x4f\xb1\x03\x39\x42\xf7\x1d\xb4\xd7\xab\x4f\x1e\xcf\xde\x8c\xf5\xfc\x32\xe9\x4e\x6f\x77\xe8\x74\xa0\x3b\xb5\x25\x1f\x7f\x58\x45\xab\x40\x78\x10\x83\xf8\x91\x25\x14\x7f\xf8\xa4\xe5\x17\xe9\x54\x0e\x82\x3d\x42\x80\xd8\x23\xe9\x29\xc6\x9b\x5a\xba\xff\x2a\x62\xee\x49\xe8\xe9\x93\xb1\xc8\x20\xe2\x86\x0d\xad\x77\x7a\x6b\x1e\x69\x7c\xac\x00\x38\x95\xea\x5a\xbe\x46\x5e\xc4\xb2\x5b\xcd\x6a\x08\xae\x56\x18\x75\xfe\x33\xad\x71\x63\x68\xfa\xcd\xf8\xb9\x96\xef\xa5\xc6\x90\x88\xf8\xff\x24\x98\x03\x6d\x70\xcd\x0f\x32\x2b\xdf\xec\x12\x28\x5e\xd5\xe7\x79\x41\xb7\x53\x3e\x85\x79\x43\x11\xf0\x03\x91\x29\x02\x7e\xc0\x8c\xa7\x7b\x11\x80\xce\xfc\x0b\x88\x3d\xec\xb5\xb5\x93\xc0\x98\x9c\xb8\x6c\xc5\xcd\x65\x98\xf4\x7b\xdf\xd7\x6c\x82\xbe\x79\xf9\xee\xcd\x3d\xab\x08\x40\x79\x86\x23\x64\x36\xcd\x21\x8b\xa7\x3a\x66\x65\xf3\x3d\x84\x48\xa1\x15\xc3\xc6\x19\xf4\xca\xa3\xa5\xe3\x96\xe1\xee\x93\xd5\x60\xf2\x0e\xca\xf9\x41\x37\xf4\x5c\x2f\x97\x59\x89\x97\x63\xe7\x75\xdf\xa9\x90\x12\x1c\x0d\xf1\x9a\x77\x2f\x87\xf0\xb0\x69\x63\xf7\x7b\x29\x1e\x9e\x3f\x5c\x15\x7c\xa7\xf6\xf8\x84\x34\xc7\x30\x7c\x77\x7d\x23\x7e\x35\xcd\x70\x24\x7f\x04\xee\xe9\xad\xee\x01\xac\xbe\x53\x03\x0b\xd4\xb7\xba\x47\xd8\x3f\x61\x4a\x58\xf8\x72\x5f\x3b\x35\xdc\xe9\x26\x4e\xb7\x37\x97\x2f\xd1\x58\xa4\x1b\x95\xb3\x1d\xae\x1a\xdf\xfb\x09\xe2\x7a\x6a\xc4\xe5\xe8\x6d\x21\xae\x07\xd6\xa9\x7b\xdc\x7b\x74\x1f\x08\x98\x3f\xfe\x31\x95\xa9\xc9\xb9\x20\x50\x7a\x26\xdf\x95\xd0\x85\x98\x17\xb9\xfa\x54\x0f\x28\xcb\x7c\xee\x06\xd3\xaa\xe0\xe3\xf9\xa6\x5d\xe2\xf9\x42\x2f\xbd\x1c\x59\x26\x60\xdd\xd7\xeb\xc5\x88\x66\x65\x89\x02\xb2\xa6\xad\x85\xdd\x25\x26\xa8\xa3\xe3\xc4\xbc\x44\x7e\xb2\x3e\x27\xec\x82\xf7\xdb\x3d\x1e\x6f\x3c\xe5\x50\xea\xd2\xf1\x02\xdb\x09\xd4\x24\x7f\x21\xcc\xfa\x48\x2e\x17\x7c\x3c\xc9\x67\xcd\x49\xc4\x4b\x41\x1b\x95\x63\xa8\x3c\x36\x21\xc9\xf2\xb8\xab\xb2\xcc\x95\x75\x73\x22\x73\x95\xcd\xf8\x8c\xe8\x45\x68\x48\x77\xe3\x8b\x2b\xc1\xd9\xfd\x3a\x3b\x2a\xa4\xd9\x34\xf5\x71\xe7\x23\xe9\x60\x7f\x8d\x07\xd4\x6c\x7f\x2d\xcf\xa9\x19\x56\xf6\x7d\xdc\xf7\xfb\xbe\x2b\x36\xfd\x0c\xe4\x8e\xf8\x66\x06\xf1\x27\x8e\x30\x99\x01\x51\x70\x86\x1c\xe8\xfd\xdb\xeb\x00\x30\x95\x07\x38\xd9\x6e\x36\x9d\x36\xaa\xde\xd3\xf5\x9c\xd7\xf4\x29\x5e\xda\x36\xd6\xcf\xc1\x4e\xea\xc1\x8e\x64\x60\xdd\x66\x11\xef\xdf\x62\x22\x10\x27\x80\x0f\x23\xce\x83\x81\x0e\x15\x49\x57\xcf\xb2\xb8\x22\xc8\xca\x2b\x01\x4d\x89\x83\x66\x72\x98\x80\x49\x07\xf1\xd4\xbb\xc1\x2b\x57\xf5\x60\xad\xaf\x7b\x49\x5b\x02\xa6\xd3\x2d\xae\xb7\xd6\x7a\xf1\x46\xfa\x5d\x28\xd4\xd9\xed\xbc\xc4\xb5\xdd\x9e\x00\xe7\x38\xa3\xb4\x4c\x42\x1f\x28\x6d\x3a\x8f\xb0\x5b\xb1\x6d\x6e\x97\x8d\xf6\xcd\xf3\xe5\xa1\x06\xa8\xb9\xf4\x98\x65\x82\xe8\xeb\x6b\x8e\x98\x5c\xd3\x2c\x62\x49\xd8\x8b\x5f\x38\x90\x32\x4d\xa6\xbc\xd8\x89\x91\x85\xac\x5c\xb8\xcb\x92\x3b\xf4\x0e\x09\xb9\xd7\xf8\x35\x03\xca\x49\x36\xa3\x14\x00\xdc\xaa\x63\x8d\x11\x95\x18\xe8\x3f\xd5\x91\x22\x29\x2d\x00\x6e\xa1\xba\x08\xb6\x55\x46\x7c\xfb\xd0\xb9\xdd\x23\xca\x7a\xf8\xdd\xac\x0c\x68\xd7\xfb\x71\x4f\xb7\x52\xf5\xef\x8a\x1e\xe3\xc3\xb8\xe6\x98\x81\xb5\xdd\xe8\xdf\x95\xb8\x82\x8c\xfb\x8a\xba\x85\x52\xae\x4a\x63\xde\xdb\x34\x78\xb9\x01\x63\x69\x0c\x11\xba\xa0\x4c\x2a\x30\x27\x12\x7a\x0a\x06\xe1\xff\x06\xbf\x48\x5c\xc9\xb1\xe1\x9b\x11\x75\x52\x93\x9e\xe2\x1b\x12\x41\x59\x62\xc8\xbd\xfc\x94\x6c\x26\x68\x0e\x21\xab\xcb\xd4\xcc\xc2\xe0\x3d\x3e\x5c\x3c\xa8\xb6\xee\x74\xa3\x8c\xe3\xc7\x43\x38\x51\x5c\x73\xe2\x74\x85\xef\xbc\xef\xeb\x2d\xe2\x0e\xeb\x1b\x23\xb2\x3d\x4b\x98\x59\x16\x40\xd3\x02\xd2\xa0\xde\xeb\x6d\x7c\xb4\x86\x45\x02\x34\x86\x21\x29\xc4\xcb\x90\x1b\x10\xf0\xbd\xc1\x7a\x03\x72\x25\x10\x9e\x8e\x46\x9a\x63\x7a\xb1\x92\x65\xce\xab\x94\x17\x47\xab\x5d\xa7\xb1\x7a\x12\x3c\x5e\x16\x47\xaa\x5d\x17\xef\xd6\xa7\xd4\x5c\x05\x4a\xa9\xb9\xea\x97\x52\x99\x07\xe4\x3c\xac\x5d\xd7\xce\x75\x81\x8d\xdd\xdc\x5c\x97\xbc\x32\xe5\x26\xf9\xf0\x5b\x10\xf6\x1f\xf4\xd6\xf9\xed\xa0\xdc\x03\x61\x4d\x77\xfc\x2e\x2b\xc1\x53\x29\x9f\x3a\x9c\x3a\xc5\xe1\xfe\xd6\x69\xaf\xfe\xf8\x00\x0f\x3e\x1f\x78\xdd\xae\x1f\x7c\x57\x6c\x3b\x1a\x6f\x5a\x66\xfb\x8e\x6e\x4e\xd0\x27\xda\x5d\x15\xe8\x02\x59\x14\xe3\xf0\xe6\x08\xe9\x08\xec\x7f\x5f\x92\x36\x6c\x08\x49\x16\x8c\xdb\x41\x2e\x07\x86\x76\xed\xec\x81\x61\xd9\xe5\x24\x3e\x08\x85\xd7\x91\xdf\x06\x34\xbf\x60\x72\x6a\x20\x3d\x5f\x12\x9e\xb8\xe6\xfb\x8b\xa1\x79\xf8\xaa\xf5\x0b\x43\xd7\x8f\xe3\x2a\xd1\x5d\xb2\x23\xbf\x84\xf6\xe7\xa6\xe3\x69\xfb\x67\xbc\x25\xf4\xe2\x7e\x1e\xc3\x4b\xa0\x91\xbd\x6f\x76\x32\xcd\xfa\x2b\x4a\x88\x3b\x32\x05\x10\x69\x60\x2a\x74\xec\x06\x42\x41\x46\xf0\xf6\xab\xb8\x46\xbf\x8f\xd8\x59\xa7\x7c\x52\x9c\x8b\x42\x6f\x21\x2f\x2a\xda\x79\xe1\x50\x3a\x84\xff\x8a\x23\x1f\x82\x7b\x2c\x8e\x3c\x46\xb1\xab\x3b\x65\xb6\x38\xed\xfe\x0b\x3e\xc5\x35\x7e\x46\x0a\x51\xd4\x0e\x3c\x7a\xb0\x23\xdb\xfc\x20\x05\x4f\x20\xec\x98\x36\x8a\xcf\x2a\x1b\xf9\xd8\xe4\x42\xd1\x4b\xfc\x5e\x6e\x21\xc3\x9e\xdc\x2c\x39\x3f\xb2\x2d\xd5\xd9\x9c\x65\xfd\x7a\xfd\x7a\x02\xb9\xb0\xba\x39\x67\x81\x1b\x70\xce\xc2\xda\xc7\x03\x0b\xdc\xf2\x58\x8f\xc6\xa3\x0a\xdc\xf3\x70\xb5\x04\xb8\x08\x52\x6f\xe8\x2a\xf2\x85\x78\x0a\x05\xf0\x15\x6c\xd3\x52\xcc\x42\x5c\x77\x90\x04\xb2\xe4\x0f\xe2\xec\x6e\x5e\xda\xf1\xb3\xff\x09\x3c\x3d\x2a\xc8\xd1\xe9\xa0\x70\x92\x3c\xc9\xeb\x2a\xd2\x18\x3d\xad\x96\x49\x4c\x90\x73\x0a\x47\x36\x8d\xa7\x8c\xc9\xc7\x12\xcf\x15\x17\x31\x11\xa4\x6c\x65\x4f\xac\x80\x40\x2f\xe9\xbb\x04\xc2\xa3\xf8\x3b\xd9\x45\xa8\x17\x9c\x30\xab\xd5\xe4\x75\x1a\x7e\x12\x2a\x0d\x03\xb9\x08\x67\x8c\x8e\xae\xee\x2d\x8b\x5d\x0c\xdd\x0f\xf6\x4e\x07\x5f\x5c\x82\x7f\xc3\x49\x69\xdb\xa4\xef\x84\x39\x40\x30\xea\xb4\x89\xd9\x5b\x1d\xd5\xe6\x2b\xfc\x2a\x66\x17\xf3\x08\x58\xd4\x04\x9b\xd8\xc4\x8d\xf2\x5c\x22\xca\xbe\x4d\xa4\x4c\x38\x61\x7c\x76\x15\x69\x43\x87\x91\x93\xce\x74\x7a\xa3\xe2\xd1\x25\xf7\xe6\x5a\x6f\x54\x01\x0c\xdb\xb9\x0b\x51\xd3\x60\x23\xbf\x11\xaf\x4d\x77\x9c\x74\x22\x47\xc5\x3d\x49\x98\x22\x65\x34\x9e\x27\x67\x84\xa1\x84\x65\x92\x07\x68\xde\x91\x32\x70\xde\x92\xa6\x9c\x78\x3b\xf0\x1d\xb8\xb4\x8a\x9f\x71\xd2\x84\xa2\x1b\xd5\x62\x20\x80\xb6\x8e\x25\x98\xae\x4f\x43\x8e\xb8\xc4\x9c\xc4\x1e\x41\xb7\x88\x0d\x07\xd5\x62\xb1\xd1\x00\x15\xda\x83\x31\x33\x76\x7a\xbb\xc3\x67\x4b\xb2\x56\x51\xe8\x8c\xa3\xf1\xf2\x93\x78\x1e\xf2\x73\x0c\x20\xa8\x61\x69\x50\xa3\x1c\x0b\x69\x58\xea\x1a\x13\x70\x1f\x97\xc2\x69\xb3\xed\x28\x66\xc4\x77\x27\x8b\xd7\xcd\x4e\x0e\xb2\xe1\x37\xae\x22\xa2\xab\x94\x5a\x62\x83\x32\xcb\xd8\x42\xa0\x8a\x88\x83\x5e\x00\xff\x96\xd4\x7c\x0c\x55\x51\x14\xdc\x36\xb5\x1c\xb6\x7c\xe8\x7c\x39\x6c\xf1\x45\x4d\x57\xa0\x46\xb9\x4e\x65\x3b\x44\x94\xf4\xa6\x7b\x04\x81\xe3\x3b\x45\x39\x34\xbe\xbe\xc0\x76\x91\x85\x12\x78\x7d\x21\x2b\x70\x85\xd7\x19\x92\xcf\xeb\x42\x11\x0c\x6c\x96\x4a\x60\x4c\xb3\x7b\x0b\xf0\xe1\x3a\x81\x3f\xbb\x5a\x00\xce\x15\xc9\x38\x85\x40\x81\x5c\x9c\x42\x00\xc5\x82\x61\x2e\x14\x42\xf2\xfc\x6e\x6d\x70\x48\x5f\x35\x03\x45\xb7\x86\x7f\xef\xa4\xbb\x8d\xae\xea\xc5\x79\x44\x48\x73\xcd\x4e\xb5\x63\x47\x1a\x05\xfd\x4c\xf0\xea\x93\x0f\x4e\x0f\xb8\x7c\x43\x06\x86\x7f\xb0\xa3\x0b\xf1\x1f\xe0\x67\x01\xa0\x3e\xa9\x66\xcc\xfc\x9f\x7e\xa5\x6f\x76\x38\x48\x68\x6c\xb8\xb4\x36\x1a\xa3\xcd\x16\xf8\x23\xf9\x73\x47\x98\xa5\x37\x8e\x43\xd3\x51\x91\x0d\x0a\xed\xc9\xfa\x63\xf5\x61\x20\xaa\xe0\xd4\x1f\x5c\xe5\xf9\xa9\xd0\x8e\x0c\x33\x13\x3f\xff\x00\x8b\x41\x60\x5a\x0c\x06\x52\xc7\xe0\x20\x18\x0d\x86\x20\x39\x50\x48\x84\x67\x67\x75\x96\xd2\x60\x84\x62\xad\xaa\x53\x0d\xde\xd5\x46\x6e\x0b\x1f\xe2\xb2\x4b\x25\x5b\x55\x40\x3c\xe1\xcf\x02\x46\x1b\x32\x2d\x50\x16\x69\x4b\x2f\x28\x8d\x51\x66\x97\x17\x82\xb9\x8e\x80\x39\xb0\x13\x9a\xc6\x6e\x38\x65\x0a\x19\x6a\x46\xa0\xcb\xae\x9b\x51\x23\xd7\x85\xf2\x34\x0c\xd7\x9f\xdd\x30\xc9\xfa\x34\x1d\xc6\x90\x65\x7b\x9c\xc5\xab\x59\x6b\xa3\xcd\x8d\x47\x24\x5c\xc5\xf8\x9c\x47\x6f\xf5\x81\x68\xff\x31\x04\x22\xe0\xc3\xe3\xe0\xb3\x91\xf9\x49\x16\x51\xda\xce\x30\xba\x58\x85\x71\x2a\xb9\x08\x05\xa7\x9c\xbd\xab\xb3\x54\x6c\x50\x26\x7b\x42\x87\xbe\x8a\xba\xf0\x0a\x13\xc5\x18\x3d\xfb\xf0\xfd\x47\x17\x82\x8c\x16\xf8\x3e\xfc\xe1\x23\xa0\xfc\xf0\xc7\x8f\x84\x95\x9f\xd7\x65\xac\xe9\x59\xc4\xac\xc4\xf7\x1f\xdd\x63\x37\x34\x8f\xa7\x65\x85\xf4\x13\x30\xc8\xfc\x1f\x09\x71\x2f\x07\x95\x3d\xf9\x8e\x73\x99\x92\xb5\xe3\x07\xb1\xc9\x5e\x7a\xd6\x86\xf0\x3c\x55\x7c\x66\x80\x5b\x14\xbe\x27\x64\xa5\x5e\x2e\x77\x31\x91\x8c\x87\x87\x1e\x59\xba\x10\xbf\x51\x58\x48\x7e\x74\x29\x2b\xf0\x98\x0e\x6c\x1f\x53\xd1\x7f\xc3\x8e\x02\x82\xdf\x2a\x7a\x19\x3e\x22\xe0\x77\xe0\xbf\x02\x01\xc5\xa2\x4c\x18\x42\x6c\xca\xaf\x6a\x04\x07\xdd\x4c\xcd\xa0\x04\xd5\x0a\x34\x54\x7f\x39\x22\xa2\xc7\x24\xf6\xe6\x6f\x61\xde\x16\x6f\x3b\xe6\x08\xf1\x3d\xaa\x93\xd4\x99\xa1\x23\x22\x7d\x35\x36\x26\xd5\x14\x5d\xa4\xd8\x57\x23\xc4\x97\x3b\x67\xf8\xf8\x3d\xcf\xaf\xef\x2c\x11\x2f\xbe\xbd\x1a\xa8\x66\xd4\x21\x3e\xdc\xfa\xaf\x2e\x1a\xe6\x4c\xb1\x8e\xc0\x7f\x02\x7e\x5e\xdc\x7f\x48\x8b\x7b\x11\x5d\x58\xdc\x18\xc9\xd6\xcb\x6d\xb6\xb2\xe5\xb6\xe8\x2c\x36\x11\xcb\x70\x3f\xe7\x6b\x3f\x47\x18\x2e\x91\x22\xca\xd0\x38\xc4\xf9\x95\x2d\xab\x3e\x78\x6b\xbb\x8f\x95\xdc\xc2\x22\x97\x5b\x5b\x01\xf7\xe2\x7b\xea\xc8\xc8\x8c\x3d\x54\xf4\x09\xbf\xbe\x07\x06\xf2\x3d\x47\xae\x17\x67\xae\xfa\x7e\x8f\x09\xf4\xee\x23\x26\xec\x30\x61\x67\x47\x7c\xcc\xe7\xfb\x16\x3f\x5b\x79\xc4\xaf\x03\x7e\x1d\x94\xba\xa5\xc2\xb8\x9f\x7d\x2f\xf6\xd6\xf8\x1d\xa6\x1c\xf1\xfb\xa8\x24\x3f\x05\x44\x11\xf2\x2f\x80\x35\x85\x8f\x33\x57\x51\x75\x9c\x1e\x3e\xce\x5c\x05\xb5\x72\x2a\xfd\x3c\x73\x55\x2b\x8f\x9c\x84\xbf\xce\x5c\x05\xd5\x73\x12\xfd\x3c\x43\x31\xc4\xef\x02\x42\xfa\x7d\xe6\x2a\x68\x07\x27\xd2\xcf\x33\x57\x0d\xf2\x50\xa7\x76\xf1\x2f\x4c\x4d\xad\xe2\x5f\x55\xf5\xa1\x1d\x6c\xff\xbb\x35\xea\x63\x15\xde\x7e\x4e\x4f\xb4\x3f\x19\x6c\x1f\x7c\xf5\xd5\x40\xe7\x57\xf8\x0c\xa0\xb7\x62\xec\x3b\x2b\xdb\x55\xc5\xe1\x8e\x6a\x6d\xfa\x31\x9a\x84\x39\x6e\xfa\x43\xcf\x60\x29\x3e\x3e\x5d\x56\x3e\xf6\x6a\x55\xe1\xf9\x85\xb7\xb6\x5e\xa3\xf0\x89\x27\x17\x4e\xff\xae\xc4\xb7\x7f\xff\x3b\xc2\xeb\xdf\xd5\x3f\xfe\x21\x5e\xfe\xf2\x9d\x50\x9f\x1a\xa5\x5a\x27\xf6\xec\x8e\x17\xc0\xf6\xf2\xd3\xd3\x02\x72\x55\xf1\x1d\x52\xf6\xff\xa2\x3b\xa4\x58\x7d\xf5\xff\x07\x00\x00\xff\xff\xef\x92\xe6\xf1\x2e\xed\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4387,7 +4387,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 60620, mode: os.FileMode(420), modTime: time.Unix(1489212973, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 60718, mode: os.FileMode(420), modTime: time.Unix(1489272371, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4447,7 +4447,7 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 64724, mode: os.FileMode(420), modTime: time.Unix(1488861442, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 64724, mode: os.FileMode(420), modTime: time.Unix(1489214412, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4467,7 +4467,7 @@ func confLocaleLocale_glEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 63202, mode: os.FileMode(420), modTime: time.Unix(1488861442, 0)} + info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 63202, mode: os.FileMode(420), modTime: time.Unix(1489214412, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4627,7 +4627,7 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 89419, mode: os.FileMode(420), modTime: time.Unix(1488861442, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 89419, mode: os.FileMode(420), modTime: time.Unix(1489214412, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4707,7 +4707,7 @@ func confLocaleLocale_ukUaIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 88558, mode: os.FileMode(420), modTime: time.Unix(1488861442, 0)} + info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 88558, mode: os.FileMode(420), modTime: time.Unix(1489214412, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4767,7 +4767,7 @@ func confLocaleLocale_zhTwIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 56311, mode: os.FileMode(420), modTime: time.Unix(1488861442, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 56311, mode: os.FileMode(420), modTime: time.Unix(1489214412, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/form/repo.go b/modules/form/repo.go index b26ca954c..826d503a0 100644 --- a/modules/form/repo.go +++ b/modules/form/repo.go @@ -141,6 +141,7 @@ type Webhook struct { Issues bool IssueComment bool PullRequest bool + Release bool Active bool } diff --git a/public/css/gogs.css b/public/css/gogs.css index c4b472335..f26d024eb 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1227,30 +1227,30 @@ footer .ui.language .menu { right: 0!important; left: auto!important; } -.repository.branches .ui.list { +.repository.branches:not(.settings) .ui.list { padding: 0; } -.repository.branches .ui.list > .item { +.repository.branches:not(.settings) .ui.list > .item { margin: 0; line-height: 31px; } -.repository.branches .ui.list > .item:not(:last-child) { +.repository.branches:not(.settings) .ui.list > .item:not(:last-child) { border-bottom: 1px solid #DDD; } -.repository.branches .ui.list > .item .column { +.repository.branches:not(.settings) .ui.list > .item .column { padding: 5px 15px; } -.repository.branches .ui.list > .item .column .octicon { +.repository.branches:not(.settings) .ui.list > .item .column .octicon { vertical-align: text-bottom; } -.repository.branches .ui.list > .item .column code { +.repository.branches:not(.settings) .ui.list > .item .column code { padding: 4px 0; font-size: 12px; } -.repository.branches .ui.list > .item .column .ui.text:not(i) { +.repository.branches:not(.settings) .ui.list > .item .column .ui.text:not(i) { font-size: 12px; } -.repository.branches .ui.list > .item .column .ui.button { +.repository.branches:not(.settings) .ui.list > .item .column .ui.button { font-size: 12px; padding: 8px 10px; } @@ -2338,28 +2338,28 @@ footer .ui.language .menu { margin-left: 5px; margin-top: -3px; } -.repository.settings.branches .protected-branches .selection.dropdown { +.repository.settings.settings.branches .protected-branches .selection.dropdown { width: 300px; } -.repository.settings.branches .protected-branches .item { +.repository.settings.settings.branches .protected-branches .item { border: 1px solid #eaeaea; padding: 10px 15px; } -.repository.settings.branches .protected-branches .item:not(:last-child) { +.repository.settings.settings.branches .protected-branches .item:not(:last-child) { border-bottom: 0; } -.repository.settings.branches .branch-protection .help { +.repository.settings.settings.branches .branch-protection .help { margin-left: 26px; padding-top: 0; } -.repository.settings.branches .branch-protection .fields { +.repository.settings.settings.branches .branch-protection .fields { margin-left: 20px; display: block; } -.repository.settings.branches .branch-protection .whitelist { +.repository.settings.settings.branches .branch-protection .whitelist { margin-left: 26px; } -.repository.settings.branches .branch-protection .whitelist .dropdown img { +.repository.settings.settings.branches .branch-protection .whitelist .dropdown img { display: inline-block; } .repository.settings.webhooks .types .menu .item { @@ -3035,10 +3035,6 @@ footer .ui.language .menu { .admin .table.segment:not(.select) td:first-of-type { padding-left: 15px !important; } -.admin .ui.header, -.admin .ui.segment { - box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15); -} .admin.user .email { max-width: 200px; } diff --git a/public/less/_admin.less b/public/less/_admin.less index 0bba6a07e..4f60511dc 100644 --- a/public/less/_admin.less +++ b/public/less/_admin.less @@ -29,10 +29,6 @@ } } } - .ui.header, - .ui.segment { - box-shadow: 0 1px 2px 0 rgba(34,36,38,.15); - } &.user { .email { diff --git a/public/less/_repository.less b/public/less/_repository.less index 9d4c27b7f..c06fcc456 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -150,7 +150,7 @@ } } - &.branches { + &.branches:not(.settings) { .ui.list { padding: 0; >.item { @@ -1351,7 +1351,7 @@ } } - &.branches { + &.settings.branches { .protected-branches { .selection.dropdown { width: 300px; diff --git a/routers/repo/release.go b/routers/repo/release.go index e880eedd6..316598c69 100644 --- a/routers/repo/release.go +++ b/routers/repo/release.go @@ -203,7 +203,6 @@ func NewReleasePost(ctx *context.Context, f form.NewRelease) { IsPrerelease: f.Prerelease, CreatedUnix: tagCreatedUnix, } - if err = models.CreateRelease(ctx.Repo.GitRepo, rel); err != nil { ctx.Data["Err_TagName"] = true switch { @@ -274,11 +273,12 @@ func EditReleasePost(ctx *context.Context, f form.EditRelease) { return } + isPublish := rel.IsDraft && len(f.Draft) == 0 rel.Title = f.Title rel.Note = f.Content rel.IsDraft = len(f.Draft) > 0 rel.IsPrerelease = f.Prerelease - if err = models.UpdateRelease(ctx.Repo.GitRepo, rel); err != nil { + if err = models.UpdateRelease(ctx.User, ctx.Repo.GitRepo, rel, isPublish); err != nil { ctx.Handle(500, "UpdateRelease", err) return } diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index 65d9fee67..6ea4548d5 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -116,6 +116,7 @@ func ParseHookEvent(f form.Webhook) *models.HookEvent { Issues: f.Issues, IssueComment: f.IssueComment, PullRequest: f.PullRequest, + Release: f.Release, }, } } diff --git a/templates/repo/settings/webhook_settings.tmpl b/templates/repo/settings/webhook_settings.tmpl index a9c7d86ae..235d73c31 100644 --- a/templates/repo/settings/webhook_settings.tmpl +++ b/templates/repo/settings/webhook_settings.tmpl @@ -92,6 +92,16 @@ + +
+
+
+ + + {{.i18n.Tr "repo.settings.event_release_desc"}} +
+
+
diff --git a/vendor/github.com/gogits/go-gogs-client/gogs.go b/vendor/github.com/gogits/go-gogs-client/gogs.go index 1d40a25df..e691dd64c 100644 --- a/vendor/github.com/gogits/go-gogs-client/gogs.go +++ b/vendor/github.com/gogits/go-gogs-client/gogs.go @@ -14,7 +14,7 @@ import ( ) func Version() string { - return "0.12.9" + return "0.12.10" } // Client represents a Gogs API client. diff --git a/vendor/github.com/gogits/go-gogs-client/release.go b/vendor/github.com/gogits/go-gogs-client/release.go new file mode 100644 index 000000000..69c7f3b9b --- /dev/null +++ b/vendor/github.com/gogits/go-gogs-client/release.go @@ -0,0 +1,22 @@ +// Copyright 2017 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package gogs + +import ( + "time" +) + +// Release represents a release API object. +type Release struct { + ID int64 `json:"id"` + TagName string `json:"tag_name"` + TargetCommitish string `json:"target_commitish"` + Name string `json:"name"` + Body string `json:"body"` + Draft bool `json:"draft"` + Prerelease bool `json:"prerelease"` + Author *User `json:"author"` + Created time.Time `json:"created_at"` +} diff --git a/vendor/github.com/gogits/go-gogs-client/repo_hook.go b/vendor/github.com/gogits/go-gogs-client/repo_hook.go index 5dbe9c2d9..1ea754686 100644 --- a/vendor/github.com/gogits/go-gogs-client/repo_hook.go +++ b/vendor/github.com/gogits/go-gogs-client/repo_hook.go @@ -256,6 +256,7 @@ type ChangesPayload struct { Body *ChangesFromPayload `json:"body,omitempty"` } +// IssuesPayload represents a payload information of issues event. type IssuesPayload struct { Action HookIssueAction `json:"action"` Index int64 `json:"number"` @@ -277,6 +278,7 @@ const ( HOOK_ISSUE_COMMENT_DELETED HookIssueCommentAction = "deleted" ) +// IssueCommentPayload represents a payload information of issue comment event. type IssueCommentPayload struct { Action HookIssueCommentAction `json:"action"` Issue *Issue `json:"issue"` @@ -310,3 +312,28 @@ type PullRequestPayload struct { func (p *PullRequestPayload) JSONPayload() ([]byte, error) { return json.MarshalIndent(p, "", " ") } + +// __________ .__ +// \______ \ ____ | | ____ _____ ______ ____ +// | _// __ \| | _/ __ \\__ \ / ___// __ \ +// | | \ ___/| |_\ ___/ / __ \_\___ \\ ___/ +// |____|_ /\___ >____/\___ >____ /____ >\___ > +// \/ \/ \/ \/ \/ \/ + +type HookReleaseAction string + +const ( + HOOK_RELEASE_PUBLISHED HookReleaseAction = "published" +) + +// ReleasePayload represents a payload information of release event. +type ReleasePayload struct { + Action HookReleaseAction `json:"action"` + Release *Release `json:"release"` + Repository *Repository `json:"repository"` + Sender *User `json:"sender"` +} + +func (p *ReleasePayload) JSONPayload() ([]byte, error) { + return json.MarshalIndent(p, "", " ") +} diff --git a/vendor/vendor.json b/vendor/vendor.json index 4f45a4918..c46f40ea4 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -165,10 +165,10 @@ "revisionTime": "2017-03-10T19:06:55Z" }, { - "checksumSHA1": "Rvj0LCHGhFQyIM7MzBPt1iRP89c=", + "checksumSHA1": "1p1/OSDPORWbSBCD791BbGh2vVc=", "path": "github.com/gogits/go-gogs-client", - "revision": "8e438478f71b840fcd0b3e810684ea4f6bf476bb", - "revisionTime": "2017-03-09T09:10:09Z" + "revision": "08824b5ad7408bc38f2b9287c94be2f059c9966a", + "revisionTime": "2017-03-11T23:40:19Z" }, { "checksumSHA1": "p4yoFWgDiTfpu1JYgh26t6+VDTk=",