From 8196430f47842fba4f227b105cd96d4b981d077d Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 24 Mar 2017 16:25:40 -0400 Subject: [PATCH] repo: allow private repository to have public wiki or issues Relates to #649 and #2157 --- cmd/web.go | 34 ++++++++----- conf/locale/locale_en-US.ini | 2 + gogs.go | 2 +- models/repo.go | 21 ++++++-- modules/bindata/bindata.go | 4 +- modules/context/repo.go | 74 +++++++++++++++++++--------- modules/form/repo.go | 2 + public/css/gogs.css | 3 ++ public/js/gogs.js | 9 ++-- public/less/_repository.less | 6 +++ routers/repo/issue.go | 46 ++++++++++++----- routers/repo/setting.go | 2 + templates/.VERSION | 2 +- templates/repo/header.tmpl | 60 +++++++++++----------- templates/repo/settings/options.tmpl | 39 ++++++++++----- 15 files changed, 206 insertions(+), 100 deletions(-) diff --git a/cmd/web.go b/cmd/web.go index 061a1c5804..7c0d210e0d 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -493,18 +493,15 @@ func runWeb(ctx *cli.Context) error { m.Get("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action) m.Group("/:username/:reponame", func() { + m.Get("/issues", repo.RetrieveLabels, repo.Issues) + m.Get("/issues/:index", repo.ViewIssue) + // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. // So they can apply their own enable/disable logic on routers. m.Group("/issues", func() { m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue). Post(bindIgnErr(form.NewIssue{}), repo.NewIssuePost) - m.Group("/:index", func() { - m.Post("/label", repo.UpdateIssueLabel) - m.Post("/milestone", repo.UpdateIssueMilestone) - m.Post("/assignee", repo.UpdateIssueAssignee) - }, reqRepoWriter) - m.Group("/:index", func() { m.Post("/title", repo.UpdateIssueTitle) m.Post("/content", repo.UpdateIssueContent) @@ -515,6 +512,24 @@ func runWeb(ctx *cli.Context) error { m.Post("", repo.UpdateCommentContent) m.Post("/delete", repo.DeleteComment) }) + }, ignSignIn, context.RepoAssignment(true)) + m.Group("/:username/:reponame", func() { + m.Group("/wiki", func() { + m.Get("/?:page", repo.Wiki) + m.Get("/_pages", repo.WikiPages) + }, repo.MustEnableWiki, context.RepoRef()) + }, ignSignIn, context.RepoAssignment(false, true)) + + m.Group("/:username/:reponame", func() { + // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. + // So they can apply their own enable/disable logic on routers. + m.Group("/issues", func() { + m.Group("/:index", func() { + m.Post("/label", repo.UpdateIssueLabel) + m.Post("/milestone", repo.UpdateIssueMilestone) + m.Post("/assignee", repo.UpdateIssueAssignee) + }, reqRepoWriter) + }) m.Group("/labels", func() { m.Post("/new", bindIgnErr(form.CreateLabel{}), repo.NewLabel) m.Post("/edit", bindIgnErr(form.CreateLabel{}), repo.UpdateLabel) @@ -580,8 +595,8 @@ func runWeb(ctx *cli.Context) error { m.Group("/:username/:reponame", func() { m.Group("", func() { m.Get("/releases", repo.MustBeNotBare, repo.Releases) - m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues) - m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue) + m.Get("/pulls", repo.RetrieveLabels, repo.Pulls) + m.Get("/pulls/:index", repo.ViewPull) m.Get("/labels/", repo.RetrieveLabels, repo.Labels) m.Get("/milestones", repo.Milestones) }, context.RepoRef()) @@ -595,9 +610,6 @@ func runWeb(ctx *cli.Context) error { }) m.Group("/wiki", func() { - m.Get("/?:page", repo.Wiki) - m.Get("/_pages", repo.WikiPages) - m.Group("", func() { m.Combo("/_new").Get(repo.NewWiki). Post(bindIgnErr(form.NewWiki{}), repo.NewWikiPost) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 774cd13f2e..846e0c3d3f 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -690,11 +690,13 @@ settings.change_reponame_prompt = This change will affect how links relate to th settings.advanced_settings = Advanced Settings settings.wiki_desc = Enable wiki system settings.use_internal_wiki = Use builtin wiki +settings.allow_public_wiki_desc = Allow public access to wiki when repository is private settings.use_external_wiki = Use external wiki settings.external_wiki_url = External Wiki URL settings.external_wiki_url_desc = Visitors will be redirected to URL when they click on the tab. settings.issues_desc = Enable issue tracker settings.use_internal_issue_tracker = Use builtin lightweight issue tracker +settings.allow_public_issues_desc = Allow public access to issues when repository is private settings.use_external_issue_tracker = Use external issue tracker settings.external_tracker_url = External Issue Tracker URL settings.external_tracker_url_desc = Visitors will be redirected to URL when they click on the tab. diff --git a/gogs.go b/gogs.go index daabd5acc9..301bfb4567 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.10.29.0324" +const APP_VER = "0.10.30.0324" func init() { setting.AppVer = APP_VER diff --git a/models/repo.go b/models/repo.go index 16820d4e52..0656f83d5d 100644 --- a/models/repo.go +++ b/models/repo.go @@ -173,9 +173,11 @@ type Repository struct { // Advanced settings EnableWiki bool `xorm:"NOT NULL DEFAULT true"` + AllowPublicWiki bool EnableExternalWiki bool ExternalWikiURL string EnableIssues bool `xorm:"NOT NULL DEFAULT true"` + AllowPublicIssues bool EnableExternalTracker bool ExternalTrackerURL string ExternalTrackerFormat string @@ -253,10 +255,21 @@ func (repo *Repository) LoadAttributes() error { return repo.loadAttributes(x) } -// MustOwner always returns a valid *User object to avoid -// conceptually impossible error handling. -// It creates a fake object that contains error deftail -// when error occurs. +// IsPartialPublic returns true if repository is public or allow public access to wiki or issues. +func (repo *Repository) IsPartialPublic() bool { + return !repo.IsPrivate || repo.AllowPublicWiki || repo.AllowPublicIssues +} + +func (repo *Repository) CanGuestViewWiki() bool { + return repo.IsPartialPublic() && repo.EnableWiki && !repo.EnableExternalWiki && repo.AllowPublicWiki +} + +func (repo *Repository) CanGuestViewIssues() bool { + return repo.IsPartialPublic() && repo.EnableIssues && !repo.EnableExternalTracker && repo.AllowPublicIssues +} + +// MustOwner always returns a valid *User object to avoid conceptually impossible error handling. +// It creates a fake object that contains error deftail when error occurs. func (repo *Repository) MustOwner() *User { return repo.mustOwner(x) } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 9a6e9ea8d0..eb81c3c94d 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4372,7 +4372,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\x6d\x72\x1c\x39\x92\x28\xf8\x3f\x4e\x81\xd2\x18\x4d\x55\x66\x54\x96\x55\xf7\x9b\xb7\x6b\x65\xc5\xea\x65\x51\xa5\x8f\x19\x4a\xe2\x88\x52\xf7\x9b\x95\xc9\xa2\x90\x11\xc8\x4c\x0c\x23\x81\xe8\x00\x82\xa9\xac\xb6\xbe\xc1\x1e\x60\xcf\xb7\x27\x59\xf3\x0f\x7c\x45\x44\x52\x52\xf7\xbc\x3f\x64\x06\xe0\x70\x00\x0e\xc0\xe1\xee\x70\x38\x64\xdf\xd7\xad\x72\x8d\xb8\x10\x97\xa2\x97\xda\x74\xca\x39\xe1\x54\xb7\x79\xb2\xb3\xce\xab\x56\x3c\xd7\x5e\x38\x35\xdc\xeb\x46\x55\xd5\xce\xee\x95\xb8\x10\x2f\xec\x5e\x55\xad\x74\xbb\xb5\x95\x43\x2b\x2e\xc4\xd3\xf0\xbb\x52\x9f\xfa\xce\x0e\x00\xf4\x2b\xfd\xaa\x76\xaa\xeb\xa1\x8c\xea\xfa\xca\xe9\xad\xa9\xb5\x11\x17\xe2\x56\x6f\x8d\x78\x69\x28\xc5\x8e\x3e\x24\xbd\x19\x3d\xa5\x8d\x7d\x48\x7a\xdf\x57\x83\xda\x6a\xe7\xd5\x20\x2e\xc4\x5b\xfe\x59\x1d\xd4\xda\x69\x0f\x35\xfd\x85\x7e\x55\xf7\x6a\x70\xda\x02\xf6\x3f\xd3\xaf\xaa\x97\x5b\x00\xb8\x91\x5b\x55\x79\xb5\xef\x3b\x89\x05\xde\xf1\xcf\xaa\x93\x66\x3b\x12\xcc\x35\xff\xac\x9a\x41\x49\xaf\x6a\xa3\x0e\xe2\x42\x5c\xe1\xc7\x6a\xb5\xaa\x46\xa7\x86\xba\x1f\xec\x46\x77\xaa\x96\xa6\xad\xf7\xd4\xcd\xf7\x4e\x0d\x82\xd3\x85\x34\xad\x80\x74\xec\x82\x6a\x6b\x6d\x6a\xe9\xb8\x1f\xaa\x15\xda\x08\xe9\x2a\x44\x65\xe4\x3e\x94\x86\x9f\x95\xda\x4b\xdd\x01\xd5\xe0\x7f\xd5\x4b\xe7\x0e\x16\x49\x7b\xc3\x3f\xab\x41\xd5\xfe\xd8\x2b\x24\xc1\x93\x77\xc7\x5e\x55\x8d\xec\x7d\xb3\x93\xd0\x4c\xfa\x55\x55\x83\xea\xad\xd3\xde\x0e\x47\x84\x0b\x1f\x95\x1d\xb6\xd2\xe8\xdf\xa5\x27\xfa\xbc\xc9\x3e\xab\xbd\x1e\x06\x0b\xa4\x7d\x85\x3f\x2a\xa3\x0e\x35\xe0\x11\x17\xe2\xb5\x3a\xe4\x58\x20\x67\xaf\xb7\x03\x51\x11\x32\x5f\xe1\x17\x60\xa1\x3c\xc6\x44\x59\x11\xdb\xc6\x0e\x77\x9c\xfa\x0c\x7e\x4e\x50\xda\x61\xcb\xb9\x65\xbb\xa4\x91\x5b\xc5\xb9\xaf\xf0\xa3\x00\x70\x95\x6c\xf7\xda\xd4\xbd\x34\x0a\x48\x77\x09\x5f\xe2\x06\xbe\x2a\xd9\x34\x76\x34\xbe\x76\xca\x7b\x6d\xb6\x30\x06\x97\x94\x24\x6e\x39\xa9\xca\xf2\x62\xda\xd1\x8e\x71\x94\xc5\x85\xf8\x4f\x3b\x0e\xe2\x86\x3e\x29\x2f\x2b\x84\x99\xb1\x64\x25\x1b\xaf\xef\xb5\xd7\x8a\x2a\x0b\x1f\x55\x3f\x76\x5d\x3d\xa8\xbf\x8e\xca\x79\xc8\xba\x19\xbb\x4e\xbc\xe5\xef\x4a\x3b\x37\x62\x89\x97\xf8\xa3\xaa\x1a\x69\x1a\xec\xce\x15\xfe\xa8\xaa\x0f\xda\x38\x2f\xbb\xee\x63\xc5\x3f\x00\x98\x7e\x11\x9d\xbc\xf6\xd8\x58\x4e\x14\xb7\x5e\xf5\x0e\x08\x2d\x9e\xe9\xc1\xf9\x27\x5e\xef\x95\x78\x3b\x9a\xaa\xb5\xcd\x9d\x1a\x6a\x58\x90\xb8\x94\x5e\x6e\xc4\xd1\x8e\x8f\x07\x25\x86\xd1\x18\x6d\xb6\xe2\xb9\xdd\x3a\xa1\x8d\xd3\xad\x12\x4f\x11\xfa\x5c\xf4\x9d\x92\x4e\x89\x41\xc9\x56\xfc\x24\x85\x97\xc3\x56\xf9\x8b\x47\xf5\xba\x93\xe6\xee\x91\xd8\x0d\x6a\x73\xf1\xe8\xcc\x3d\xfa\xf9\xf9\xa8\x5b\xd5\x69\xa3\xdc\x4f\xdf\xcb\x9f\x45\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\x3a\xde\xfe\xc7\xf5\xb9\xb8\xb1\xce\x6f\x07\x85\xbf\x6f\xff\xe3\x5a\x7b\xf5\xc7\x73\xf1\xea\xf6\xf6\x3f\xae\x85\x1d\xc4\x3b\xfd\xf4\x97\x55\xd5\xae\xeb\x40\x97\xa7\xd2\xcb\x35\x74\x21\x8e\x15\x64\xd2\x52\x8a\x79\xb8\xa0\x80\xe5\x21\x7b\x73\x1e\x17\x29\x2f\xd0\xc5\xe5\xd8\xae\x6b\x5e\xc3\x11\xc7\x6b\x58\xc8\xed\x3a\x11\xf8\x86\x48\x37\x3a\x25\x5e\xbe\x7e\xfd\xe6\xe9\x2f\x42\x99\xad\x36\x4a\x1c\xb4\xdf\x89\xd1\x6f\xfe\xcf\x7a\xab\x8c\x1a\x64\x57\x37\x1a\x68\x33\x38\xe5\xc5\xc6\x0e\xd4\xd3\x55\xe5\x5c\x57\xef\x6d\x0b\xb5\xdc\xde\x5e\x8b\x57\xb6\x55\x55\x2f\xfd\x0e\x1b\xe2\x77\x95\xfb\x6b\x07\xf4\x8a\x15\xbe\xdb\x29\x81\x53\x17\x81\xec\x26\x90\x47\xb4\xdc\xc6\x95\xf8\x69\x3d\xfc\x9c\xb5\x4b\xae\x9d\xed\x46\xcf\x25\x0e\x3b\x65\x70\x9c\x9c\x97\x83\x17\xd2\x05\xd6\xbf\xaa\xd4\x30\xd4\x6a\xdf\xfb\x23\x8c\x0e\xb7\x61\x8a\x9d\x90\x34\xd2\x18\xeb\xc5\x5a\x09\x84\x5f\x55\xc6\xd6\xb4\x52\x81\x6d\xb6\xda\xc9\x75\xa7\x6a\x62\xe9\x43\xe0\x48\xff\x09\x93\x83\x0a\x32\x84\x28\x20\x80\x62\xb0\x4d\x20\x77\x86\x99\x23\x8d\x40\xa4\x82\x97\x7a\xde\xc2\xc0\x17\xe2\xa8\x11\x6b\x88\x09\xb3\x16\x56\x61\x18\xc2\x9c\xb9\xec\xfb\x4e\x37\x54\xf5\x73\xca\x4b\xd3\x07\x36\x4d\x1e\xfb\x1c\x0e\x87\x3f\xe4\x65\x93\x60\xf4\x40\xd2\x41\x14\x3c\x18\xcb\xef\xd4\xa0\xc4\x6e\xdc\xd2\xc6\xd1\xd9\xb1\xfd\x06\x39\x78\xa0\x6f\xe2\x93\xe2\xad\xb5\x9e\xc6\x3c\x02\xa4\x2a\x2e\xbb\x0e\xf7\xe9\x41\xed\xad\x07\xc2\x71\x31\xe0\x45\x07\xdd\x75\xd0\x53\x27\xef\x55\x2b\xbc\xa5\xf5\xd6\xea\x41\x35\x80\x78\x55\x0d\xa3\xa9\x79\xb2\xbf\x1d\x0d\x4d\xf8\x90\x56\xce\x2c\x84\xda\x8f\xce\x8b\x9d\xbc\x57\x40\x78\x10\x16\xbc\x5d\x6c\x27\x76\x69\x18\x0d\x2e\xe1\x55\xd5\xda\xbd\xc4\x8d\xff\x29\xfe\xe0\xef\x1c\xbf\x76\x42\x6e\x36\xaa\xf1\x4e\xdc\xde\xbe\x10\x4d\x67\x8d\x12\xef\xdf\x5e\x3b\x58\x06\xbb\xba\xb7\x03\x0a\x09\xb7\x2f\xc4\x8d\x1d\x7c\x4c\xcb\x08\x0d\x10\x66\xdc\xaf\xd5\x20\x0e\x3b\xdd\xec\x88\xec\x50\x02\x66\xb1\x1a\x84\x76\x62\x74\xda\x6c\xcf\x45\xa7\xa0\x07\xda\xd3\x04\x80\x3e\x84\x59\x07\xe0\x1b\x25\xfd\x38\x28\xdc\xf4\xeb\xf5\xa8\x3b\xaf\x4d\x0d\x15\x32\x1e\x64\x0b\xe2\x17\xca\xc0\x12\xb7\x98\x71\x02\xbe\xee\x6d\x4f\xe2\x0c\xae\xaa\x75\x56\x8e\x11\xc2\x92\x87\x01\xb4\xbd\xa2\xf9\xee\xb8\x49\x30\xe1\x46\xed\x76\x62\x33\xd8\xbd\x70\x47\xe7\xd5\x1e\x0b\xb6\x52\xed\xad\x59\x55\x3b\xef\xfb\x40\x9b\x17\xef\xde\xdd\x10\x71\x62\xea\x43\xd4\x91\xd9\xdc\xc5\x59\xd2\x81\x60\x65\x04\xa0\x85\x69\x3c\x0e\xdd\x64\x86\xbf\x7f\x7b\x1d\x72\x4e\x8c\x1c\x34\xe1\x7b\xf8\x73\x9b\x06\x10\x67\x82\xb3\x7b\x75\xc0\xf9\xae\x8d\x40\x61\x67\x55\x75\x76\x5b\x0f\xd6\xfa\x30\xdd\xaf\xed\x96\xa6\x78\x91\x91\x6a\x7a\x1a\x26\x2d\x10\xe7\x30\x80\xf0\xd7\xd9\x2d\x32\x3c\xa0\xd7\xaa\x52\x06\x59\x4b\x63\x8d\xb3\x9d\x0a\x9c\xf3\x57\x4c\x15\x57\x94\x4a\x4c\x74\x01\x32\x8e\xd2\x4b\xe0\x2c\xad\xc6\x1e\x7b\x4b\xfc\x14\x00\xce\x85\xec\x9c\x15\xfd\xa0\x8d\x87\x8a\x71\x8c\x18\xc3\xaa\xaa\x6c\x0f\x25\x32\x1e\xf2\x86\x13\x12\xe3\xc0\x7e\xc7\x7c\x14\xf5\x70\xe6\xe8\x26\xdb\x9c\xdc\xde\xf7\x35\xef\x44\xb7\xaf\xde\xdd\xd0\x76\x84\xa9\x38\x09\x2e\xc4\xb3\xc1\xee\x53\x42\xa2\xcf\x2b\xc0\x87\x30\xb2\x6d\x07\xe5\xdc\xb9\x78\xfb\xec\x4a\xfc\xeb\x1f\xff\xf0\x87\x95\x78\xe9\x81\xed\x01\x27\xf8\x2f\x58\xc1\x92\x47\x21\x81\xda\x41\xf8\x9d\x12\x8f\x80\x8d\x3d\x12\x3f\x61\xee\xff\xa5\x3e\xc9\x7d\xdf\xa9\x55\x63\xf7\x3f\xc3\x2c\xdd\x4b\xbf\xaa\x20\x47\x0d\x81\x69\xdc\x2a\xd3\xaa\x81\x05\x57\xce\xca\x58\x2f\x67\x67\x62\x2c\xc9\xef\x40\xfb\x8d\x1e\xf6\x69\x80\x82\x64\x0f\x23\x05\x39\x41\x0a\xd4\x5d\x6d\xac\xd7\x9b\x63\x02\xc5\x9e\xbe\x86\x44\x9e\x9a\x15\xaf\x34\xde\xae\x22\x8d\x69\x5d\xe2\x0c\x7c\xe3\x77\x6a\x08\xe4\x76\x89\xde\x76\xb3\x01\xa1\x65\x32\x5b\xde\x50\x2a\xcd\x96\x1c\x24\x4e\x93\xa7\xcc\x30\xae\x9e\xbe\x16\xea\x5e\x19\x98\xd8\xfd\x60\xdb\xb1\xc1\x99\x13\x66\x4c\x27\x06\xe5\xec\x38\x34\x8a\x27\x6a\x64\xc8\xd0\x34\xe0\xfa\x8d\xec\xba\xe3\xaa\x0a\x1b\xe3\x76\x90\xf7\xd2\xcb\x21\xab\xe2\x79\x48\xe2\xd6\xcf\x60\x67\x8d\x8a\x25\xa0\xe7\xcd\xe8\x3c\x70\x0f\x6c\x85\xa3\x46\x51\xb6\x13\x72\x50\x62\xec\x3b\x2b\x5b\xd5\x8a\xf5\x11\x79\xbc\x83\xb9\xd0\xaa\x8d\x1c\x3b\xbf\xaa\x36\xaa\x05\xa6\xa4\xda\x9a\xeb\xea\xac\xbd\xc3\xca\x98\x54\xcf\x02\x80\xb8\x64\xa4\xd7\x08\x71\xaa\x64\x6c\x2c\x97\x8f\x60\xb1\x51\x5c\x83\xb7\x28\xa2\xa4\x7c\xdb\x2b\xc3\xdd\x08\x82\x89\x00\xb9\xa3\x15\xd6\x88\x4e\xaf\xb9\xd3\x89\x96\x13\x21\x23\x50\xe7\x16\xf4\xdb\x3c\x6f\xb1\xc0\x8c\xa8\x38\xe1\xdd\xb4\xec\xb9\xb0\xa6\x3b\xb2\x30\x02\x4b\x8c\x14\xc8\x20\x97\xb8\xc4\x96\xa2\xba\x16\x38\x12\x6b\x6d\x65\x7e\xac\xf6\x2d\x89\xbd\xe2\x5e\x76\xba\x05\x8c\x01\x01\xec\x16\xcb\x6d\x59\x55\x2c\x2b\xd7\xac\x69\xd7\xf7\x1a\xf5\xd8\xb8\xc4\x08\x25\x6b\xdf\x40\xe1\x3f\x03\x00\x28\xc8\x6e\xb1\x6c\x6c\xcd\x1b\xe8\xa4\x8b\x7a\x2c\xcd\x13\xe8\x2e\xd6\x00\xf2\xbb\x3b\x17\xf7\x1a\xc5\x00\x9e\xe4\x48\x97\x35\xc8\x98\x9d\x82\xaa\x9c\x52\x88\x41\x68\xf3\xfd\xd8\x53\x99\x15\x2b\x71\xac\x57\x05\xb9\x1f\xc4\xc1\xd6\x0a\x90\xd2\x50\xd6\x00\x4e\xcb\x64\x9d\xc8\x7d\x62\xd0\xdb\x9d\x17\xc6\x1e\xce\x89\x28\x87\x9d\x55\xb0\xe6\x5f\x3e\xbd\xf8\x81\xda\xb1\x05\xc9\x23\x16\x02\x99\x45\x8e\xde\x02\x7f\xe1\xa5\x47\x4d\x88\xb2\x1f\x42\xce\xd4\x45\x02\x9a\xea\xed\x33\x51\x33\x32\x3a\xe6\x6f\x79\x1e\x33\xb6\x04\x43\xa5\x83\xee\x4f\x15\x13\x23\x65\x5d\xaf\xde\x5a\xd4\x35\x83\x6e\x07\xc2\x54\xe5\x95\xf3\xf5\x56\xfb\x7a\x03\xdc\x16\x10\x3f\x03\x04\x20\xdb\x29\xe7\xc5\xe3\xad\xf6\x8f\x45\x63\xf7\x7b\x69\xda\x1f\xc5\xd9\x3d\xab\x09\x7f\x04\x36\x0a\x4b\x51\x77\x38\x22\xac\xc1\x0e\x8a\xb4\x81\x60\x3d\x69\xad\x72\x48\x78\x37\xf6\x28\x58\x44\x15\x8b\x35\xc1\xd6\x1e\x0c\x30\x0c\xdc\x2e\xec\x66\xa3\x1b\x2d\x3b\xb1\xd6\x46\x0e\xc7\x88\x05\xb7\xa1\x33\x77\x2e\x5e\xbf\x79\x87\x80\x5b\x0b\x72\x4f\x1b\x00\x56\x95\x36\x38\xb1\x41\x9d\xe0\xc1\xcf\x75\xa9\x90\xa4\xa9\x2d\x8d\x1d\x60\xef\xc7\xde\x84\x82\x27\x24\x65\x10\x1c\x48\x11\xd1\xa0\xcb\x22\x2c\x96\x8b\x42\x2d\x90\x61\x2f\x7d\xb3\x63\x91\x17\xa7\x8d\x76\xe6\xb1\xc7\x96\x36\xe3\x30\x28\xe3\x31\xf9\x47\x71\xe6\xc4\x93\x9f\xc5\x99\x8b\xd5\xe6\x3b\x31\xee\xcf\xb0\x1d\x8b\x8d\x56\x5d\x1b\x5a\x9b\xea\x04\xa9\x9b\x76\xba\xed\x7c\xb4\x20\x53\x50\xe6\x48\xeb\xb7\xe8\x5f\xb1\x30\xe2\xf4\x08\xd3\x3e\x23\x50\xde\xc9\x30\x6f\xdc\x48\x33\xfd\x42\xfc\x45\x75\x8d\xdd\xab\x6f\xc4\x5f\x14\xa8\xfa\xdb\x0e\x47\x4e\x7a\xd6\xc7\xad\x53\x38\xab\xce\x69\xa1\x6d\x46\x83\x7b\x86\x97\x77\x0a\x55\xf8\x34\x50\x4b\xe2\xda\x49\x62\x57\x1f\x76\x76\xaf\x3e\x56\x23\x29\x43\xb6\x6b\xa3\x3a\x8d\x4b\xc8\x0e\x24\x7f\x44\xdd\x3a\xc1\xc4\xd5\xe1\x0e\xda\x37\xbb\x3a\x1a\x1a\x81\x90\x5e\x7d\x42\xc1\x08\xb3\x92\xdd\x11\x96\x16\x64\x55\xfb\x23\xce\x0b\xe8\xf8\xab\x63\x9a\x16\x5a\xb9\xca\xed\xec\x01\xad\x76\x11\xe2\x76\x67\x0f\x68\xaf\x2b\x54\xa6\xd5\x6a\x55\x35\xb6\xeb\xe4\xda\xc2\xa8\xdc\x27\xf8\xab\x3c\xb5\x44\xbe\x3f\xd6\x76\xd8\x72\xb5\xa5\x95\x6a\x7f\x64\xc3\x18\xe7\x92\x61\xcc\x55\xc8\x5e\xd9\xa2\x8a\x5c\xf8\xcc\x55\x6c\x0f\x5a\x69\x53\xa3\xb9\x29\xd4\xfc\xd2\x90\x32\x93\xb7\xb3\xaa\x3e\xb0\xb5\xf5\x63\x15\xe0\x8a\x36\x11\x8f\x26\xa2\xbb\xc2\x04\xe8\x26\x36\x40\x57\x39\x25\x07\x5c\x10\xb7\xf8\xa3\xaa\x3e\xc8\xd1\xef\x3e\x66\xd6\xd0\x3a\xcc\xbc\x60\x15\x45\x8b\x1d\xb3\xc9\x24\xd6\xed\x54\x0f\x12\xe0\xde\xe1\x94\xed\x06\x25\xdb\x23\xeb\x8b\x71\xf2\xfe\x89\x36\x20\x6d\x80\x6d\x7f\x53\x39\x0b\x1c\xa4\xfe\x4a\x14\xbf\x68\xd3\x52\xf9\x72\xf3\x26\x33\xed\xbe\xc7\x69\x62\x87\xe1\x78\x5e\x5a\x12\x76\xd2\x89\xb5\x52\x26\x68\x7c\xed\x2a\xd8\x69\x60\x7a\xc9\x86\x98\x00\x9a\x96\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\xd1\xea\x3d\x19\x7a\xe9\x4b\xbc\x52\xd5\xc6\x0e\x5b\x5c\x7b\xb4\x38\x2e\xc4\x33\x4c\x48\xab\x05\x00\x94\xcf\xb7\x1b\x86\x08\x29\x7f\x0a\x86\xf5\xda\xd8\x03\x1a\x5c\x41\xe4\x9a\x0e\xca\xd8\x03\x51\x57\x61\xfb\x22\x49\x08\x85\x70\xa7\x8c\x4f\xa4\xbd\x14\x46\x1d\x44\x0e\xc5\x04\x88\xf4\x05\x78\x60\x73\x3f\xad\x7f\x3e\x73\x3f\x7d\xbf\xfe\x39\xee\x20\xcd\x4e\x35\x77\x34\xa1\xb5\x59\xdb\x4f\x68\xdd\x41\x53\xa0\x12\x06\x16\xf8\x59\x2b\x76\x76\x1c\x58\xc3\x02\x0d\xc4\x2b\xcc\x2d\x46\xb2\x1f\x2c\xf0\xb8\x15\x99\x5e\x15\xad\x98\x34\x4b\xd1\x06\x0b\xf3\x14\xb7\xb9\x30\x51\xfb\xc1\xee\xf4\x5a\x7b\x60\x67\x68\x90\xb8\xc6\xff\x37\x9c\xac\xda\x09\x44\x26\x91\x0c\x91\xf9\x6a\x27\xfa\x58\x00\x1a\x89\xa0\xa9\x7f\x3c\xca\x69\x84\x61\x64\x91\x7e\x9d\xde\x6b\x3f\x9b\xa0\xc0\x8a\x25\x4f\x74\x36\x15\x87\xb1\xc1\x3e\x24\xea\x0e\xaa\x51\xc6\x77\xc7\x38\xa3\x0e\x52\x7b\xf1\x47\xb1\xd7\x66\xf4\xa0\x06\xef\x94\x11\x7e\x38\x0a\x09\x52\xcf\xaa\xda\x49\x57\x8f\x86\x87\x49\xb5\x61\xca\xbe\xd0\xb8\x39\x43\xbd\x61\x61\x65\x50\xa5\x6a\x28\xbe\x8d\x23\xf8\xdd\x8a\x8d\xc6\x58\x0a\x36\x4c\x68\x8f\x06\x3d\x46\x2e\xcd\x05\x3b\x08\xa3\x88\x42\xd8\x7f\x00\x83\x69\x63\x8d\x4a\xc4\xea\x74\x73\x07\x02\x3c\x8c\xef\x7a\xf4\xde\x82\x96\xda\xc1\x1c\xa4\x32\xa1\xcd\x57\x08\x88\x36\x84\x84\xef\x48\xc3\x52\x52\xa9\xc2\x62\x00\xe1\x97\x0b\x7f\x3b\xa8\xef\x52\xf1\xb8\x64\xb0\x04\xa3\xa0\xd2\xd9\x6a\x7a\x8b\x99\x74\x22\x10\xd6\x5c\xd8\x1a\x1b\xb6\xd1\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\x07\x0a\xcd\x13\x9d\x32\xdb\xc2\x20\x8b\xa7\x7b\x38\x45\xfe\xe7\xaa\x32\xd6\xd4\xa8\x7d\x66\x6b\xe6\xb5\x35\x4f\x30\x2d\xaa\x2f\xa1\x34\x5b\xee\x43\x85\x80\x66\xb0\xe3\x76\xc7\xf6\xbd\xea\x03\x50\xed\x63\xc5\x43\xa1\x32\x9c\x3c\x51\x43\x4e\x18\x32\x5a\x8e\x11\x3e\x08\xc1\x7f\x56\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\xac\x59\x7d\xd8\xdb\x56\x76\x1f\xab\x23\x1e\xd6\xfc\xa7\x72\x95\xc1\x03\x32\x5b\xed\x6d\x4b\x85\x5e\xe1\x8f\xaa\xfa\xb0\xb1\xc3\xfe\x63\x05\xbb\xee\xeb\x89\xb6\x00\xdb\x33\xa7\x65\x12\x2b\x66\xfd\x9a\x1f\x00\xc6\x3e\xdf\x2c\x28\x16\x6f\x55\x3a\x07\xc4\x5f\xb1\xf3\xb7\xb7\x2f\xde\x05\xc3\xc7\xed\x0b\x71\xa7\x18\xf7\x0b\xef\x7b\xf7\x1e\xcd\x79\x64\x9b\x7b\xff\xf6\xba\xba\x91\x47\x90\xe2\x29\x99\x3f\x30\xe3\x9d\x92\x7b\x6e\x24\xfc\x24\x14\x97\xa3\xdf\x71\x22\xfc\xb4\x43\x6e\xc8\xae\x50\x34\xfd\xb5\x50\x63\x68\x15\x55\xaf\xd5\xe1\x97\x41\x9a\x26\x14\x06\x99\x61\x8d\x09\x54\xf2\xca\xee\xf7\xda\xdf\x8e\xfb\xbd\xc4\x33\x4b\xfa\x16\x8e\x12\x38\xfb\x95\x72\x8e\x4e\x69\x39\x7b\x4f\x09\x9c\x7d\xb5\xb3\xba\xc9\x72\x1b\xfc\xae\xde\x0d\x4a\x71\xad\xcf\xc2\x99\x48\x85\x72\x22\x09\x31\xf4\xab\x8a\x6a\xaf\xe2\xc3\xcb\xdf\x66\xe7\x03\xbf\x55\xb2\xeb\x77\x12\x25\xd1\x0c\x0c\x4d\xe1\x6b\x56\xd0\x05\x82\xe0\xc2\x1e\xf7\x6a\xd0\x0d\x1a\x51\xa4\xdb\x7d\xfb\xa4\xfe\x0e\xcf\x76\x64\xe3\xd5\xe0\x4a\x64\xad\xf5\xff\x18\x42\xf8\x4d\xab\xf2\x24\x5e\xd7\xfd\xc3\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\x01\xe0\xf7\x6f\xaf\x57\xbf\x55\xda\x34\xdd\xd8\x9e\x6c\x88\x1b\xd7\xce\x0f\xa0\x81\x3d\x3e\x73\x8f\x01\xa5\xb9\x33\xf6\x60\x22\xfc\x7b\xfa\x16\xf8\xfd\x63\x38\xac\xaf\xb5\x61\x5d\x36\x1d\xdb\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\xe4\x60\x50\x83\x1c\x56\x83\x2a\x67\x72\xdd\x0b\x36\xa2\x20\x6d\xa0\xa4\x86\x10\x2b\x3a\x59\x9a\x97\x9b\x70\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x66\x7e\xea\x75\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\xd1\x23\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\xd7\xf7\x8a\x2d\x2c\xd1\xb0\x84\x79\xab\xaa\x93\xce\x83\xd2\x4c\xbd\x22\x75\xc7\xde\xc3\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\x3e\x13\x52\x78\xa7\xfd\x11\xd4\xf7\x91\x2c\xb9\x94\x9d\x21\x42\x37\x06\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\x4f\x48\x7f\xd2\x7e\x55\x81\x92\x9e\x0c\x4b\xb0\x33\x2b\xe3\xc3\x71\x1d\xa5\x93\x39\xc6\x79\xdd\x75\x40\xe9\xe0\xda\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\xae\x3c\x27\x6a\x26\x55\x17\xab\xce\x37\x08\x1c\xbb\x6c\xa0\xca\xaa\xe9\x1c\x17\x8f\x2b\xb0\x0d\x48\xd5\x84\xc9\x85\x36\xc0\x34\x9b\x91\x00\x4f\x2e\x8b\x53\xf9\x45\x3a\x6c\x0a\xab\x0b\xd5\x8f\x33\xed\x33\xfd\xae\xc8\x55\xa6\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\x7f\x59\x6d\x6a\x3c\xdb\xf8\x37\xab\x0d\x1e\x84\x54\xc5\xf1\xff\xc4\x24\xc4\x4e\x4a\x47\xf4\x4b\x58\x77\xba\x09\x9e\x4a\xc7\x6a\x63\x71\x3d\xa1\xc5\xe8\x59\xf8\x5d\x39\x2f\x81\x4d\xf0\xe1\x35\xfc\x2a\x4c\x50\x54\x88\xec\x93\xcf\xc2\x6f\x4e\x8d\x49\xd5\x68\x62\xca\x7b\xfe\x59\x55\x20\x25\xaf\x90\xff\x82\x60\x8f\x67\x61\x19\xd7\x85\x4d\x15\xe6\x7f\xc8\x5b\x65\xf0\xbd\xf4\x5e\x0d\x86\xcc\xd9\xc4\x04\xf2\xa2\x9c\x1d\x51\xe0\xc2\x25\x30\xa0\x6d\xf0\xe0\xfa\x58\x25\x3f\xaf\xe0\xe2\xb5\x64\xc7\x8f\xe4\xa7\xd3\xad\x8a\x57\xb5\x63\x21\xfb\xdf\xd5\xd1\xb1\x05\x0b\x39\x06\xfe\x60\x63\x03\xba\x8a\x84\xd3\x73\x57\x1e\xa6\xa3\x41\x6e\x6e\x87\x5b\x34\xe4\xf1\x44\xbb\x10\x4f\xe9\x47\xb0\x65\x8c\x1a\x3b\xae\xdb\xaa\xea\x71\x34\x33\xd7\x35\x1e\xde\xd8\x33\xf6\x5c\xcc\xad\x19\xa5\x96\xaf\x9d\x20\x24\x28\x62\x84\x53\x4a\xdc\x50\x37\x76\x40\xb6\x19\x8f\x5c\x54\x87\xe7\x71\x26\x3b\x81\x75\xe7\x58\x0e\xc0\x0e\x6a\x1d\x8e\xe5\x92\x3f\xc3\x5e\xb6\x4a\xdc\x6b\x19\x4d\x5f\x99\xa0\x13\x77\xe2\x60\x2f\x2b\x34\x51\xd4\x71\xc8\x96\x19\xe4\x9c\x30\xea\xde\x06\xbd\xd4\xef\x94\xa6\x53\x31\x83\x32\xd0\x66\xec\xba\xb0\x51\x3e\x1b\xbb\x8e\xbc\x73\xe6\x3e\xa3\x50\x05\x9f\x0e\x5e\xf3\xcf\x6a\xec\x5b\xd0\x48\x13\x2d\xdf\x63\x42\xa4\x65\x99\x9f\x69\x9a\x48\xd5\x50\x2c\xda\xc1\x08\xbc\xcd\x54\xcf\xee\xb8\x0a\x8b\x7b\xc1\x17\x94\xd7\x79\x3b\x05\x49\x56\x23\x64\x5c\xdc\x71\x1c\x28\x72\xbf\x40\xd2\x1e\xe4\x51\xec\xec\x41\x74\xda\xdc\x39\x1e\x29\xa0\x53\xae\x75\xa3\x75\xcf\x6b\x33\x2a\xd6\x83\xe0\xe7\xdc\xf3\x90\x8f\x6b\xf9\xf0\x76\x7d\x0c\xb6\x14\x3a\xde\xe5\xf5\x20\xd6\x47\x81\xaa\xde\xe9\x73\xe2\xe9\x01\x71\x38\x1f\x0e\xe7\x9e\x78\x3c\x9d\xd8\xdc\x7b\xa7\xc4\x15\x1d\x59\xf3\x92\x6b\x76\xd6\x3a\x36\x42\x27\x66\x08\x69\x68\x4d\x62\x5e\xc8\xc3\x92\xf0\xd0\xa8\x5d\x86\xa3\x73\x5c\xf6\xbc\x96\x6a\x3e\xe4\x49\xd0\xbc\xb4\xae\xf8\xf0\xe7\x32\xe0\xa4\xa3\xf1\xd0\x27\x64\x39\xb5\xde\x93\x36\xfa\x3e\x1c\x9c\xe3\x80\x47\x2d\x02\xb3\x57\x65\x7b\xa6\xb3\x84\xeb\x0d\xa7\x38\x9f\x99\x2c\x61\x2a\xe4\x67\x89\x34\xfc\x91\x4d\xd9\xae\x90\xe1\x42\x3f\x62\x3e\x10\x2f\xcb\x7f\x8d\xa7\xbe\xd1\x68\x02\x6b\xac\x9e\x80\xb0\x9d\xa1\x80\x5c\x14\x95\x43\x5d\x27\xc5\xe4\x49\xeb\x67\x2b\x26\x94\x3b\x48\x57\x74\x9c\xe7\x78\xbb\x0a\xee\x81\xc2\xd8\x03\x1d\x21\xa3\x1f\x17\xf9\xb2\x19\x3c\x7f\x26\x14\x19\x53\xe1\x4a\xff\x59\x96\x92\x30\x93\x9e\xe1\xa2\x7a\x71\x49\x8c\x53\xb9\xe0\xa9\x1c\xf3\xd9\x59\xb9\xe0\xaf\x2a\xb8\xff\xe4\x1c\xb8\x1f\x34\xda\x3d\x4a\x4e\x3c\xe3\xbd\x05\x9f\x45\x36\x6b\xd1\x99\x25\xb1\xd7\x55\x15\x50\xc1\x66\x86\xbf\x42\x4a\xb4\xac\xdd\x2a\xf4\xe8\xe4\xe4\xb0\x10\x42\x2e\xcd\xff\xd8\xc6\x4e\x31\x57\xa4\xbe\x3e\xe5\x84\x49\x7e\xe8\x0c\x65\x87\x01\x59\xe8\xcd\x00\xa2\xbd\x8a\x1b\x87\x36\xe4\x4b\x14\x4f\x8a\x0b\xee\x24\x9e\x22\xbb\x12\x07\x49\x07\x08\x81\x59\xfd\x69\x5a\x7b\x9a\x47\xbf\x96\x47\x0f\xd4\xb7\x72\x15\x7d\x53\xc9\xb6\xc5\x39\x9e\xce\xdb\x5b\x9c\x3c\xa5\x99\x11\xa0\x72\x08\x32\x64\xc5\xd4\xba\x38\x18\x71\x64\x4b\xfa\xf2\xc3\x10\x10\x4a\xfe\x1b\xce\x41\x8a\xaa\xd2\x39\x48\x6c\xe4\x64\x85\xcd\x7a\x39\x5f\x6a\xb2\x6d\x51\x3e\xe2\xb9\x9c\x49\x39\x3c\x9b\xa3\xb0\x03\xb5\x90\x5a\x03\xe4\xf9\x77\x75\x44\x91\x88\x67\x02\x6e\x4d\xda\x09\x89\xde\x84\xe8\x82\x4c\x3a\x8e\x03\xe5\x06\xa4\x23\x18\x17\xf4\x7f\x2e\xc7\xfc\x12\x95\x38\xa7\x18\x16\xc5\x45\x69\x8e\x20\xfe\x87\xb5\xae\xf6\x40\x07\xf2\xe6\x88\xbe\xa7\xb3\x63\xd1\x73\xd6\x9c\x76\x7a\xbb\xeb\x8e\x42\xef\x7b\x3b\x78\x9c\x49\xe1\xd0\x3b\x29\xb6\xf0\x35\xa8\xc6\x6e\x8d\xfe\x1d\x09\xbb\x27\x67\xd3\x68\x81\xff\xc9\xf9\xc1\x9a\xed\xcf\x4f\x2d\x68\x9c\x77\xc0\x7e\x76\xf6\xf0\xa7\x9f\xbe\xe7\x74\x71\x85\x43\x68\x47\x2f\x9e\x6b\xff\x62\x5c\x3f\x76\x62\x3b\xea\x16\xb7\xdc\x9f\x64\xe6\x1d\xcf\xee\x2b\xe4\x09\x7c\x30\x91\x2c\xe8\x2b\x6f\x07\xe1\x6c\x77\xaf\x26\x45\xec\x7e\x4f\xc3\xbb\xee\xd4\x9e\x20\xb1\xfd\xe8\xf1\xa2\x0c\x52\x4e\x0d\x4c\x9f\xdb\xdb\x17\xab\x38\xc5\xd3\xf8\xf0\xb0\x05\xb1\xb5\x30\x93\xb0\x8c\x08\xc0\x0d\xdb\x45\xd3\x46\x84\x36\x92\x50\x0a\xe5\x8f\x79\x29\x1c\x47\x07\x32\xcb\xcc\x40\x83\xba\x0c\xa0\x08\xc5\xc5\x05\xb4\x83\xe4\x30\x48\x6b\x66\x96\x58\x9e\x58\xd9\xe4\x85\xbd\x27\x58\xb2\x51\x9c\x8f\xcd\xc3\xe9\x3a\x59\xdf\xcc\xd1\xa8\xef\xcc\xcf\x42\x07\x32\x8e\xc6\x14\x49\x3c\x6d\x0a\x53\x70\x35\x45\x3c\x2d\xb4\x22\xe7\x66\xe4\xdc\x47\x1c\x8d\x26\xa4\x72\xc8\xaf\xbf\x90\x9b\xcd\xea\x4d\x1d\x0f\xd5\x7d\x01\x47\xc3\x3e\x5d\x22\x39\xac\x21\xa3\x0a\x0f\xd4\x35\x9b\x50\x30\xc3\xd8\x3a\x53\xfe\x5e\x5b\x3e\x49\x14\x21\x11\xc7\xc4\x79\x90\x58\xf2\xa5\x0c\x8d\x40\xb7\x69\x72\xfb\x42\xab\xcc\xff\x21\x5a\x79\x74\x95\xb7\x77\xca\x2c\x14\xc1\xf4\x53\x85\x22\x7f\x09\x1a\x13\x73\x97\xcb\xc4\x1c\xa6\x3a\x14\xbb\x07\x9c\x64\x30\x19\x5f\x61\xac\xd1\xf5\x8e\x4c\x4a\x78\xdf\x44\xac\xb5\x69\x89\x8f\x30\x1b\x60\xff\xb2\xb8\xfe\x57\xd5\x68\x00\x08\xb5\x54\xf8\xc1\xdf\xf9\xb0\x14\xf8\xb3\xc5\x62\xd6\x76\x34\x19\xfb\xa4\xe9\x50\x13\x29\x62\x27\x6f\xd4\xe0\xd0\x23\xf8\x92\x10\xbe\x83\x6c\xc7\x97\x0f\xd8\xcb\x22\x14\x79\xce\x89\xb8\x06\x10\x90\x08\xee\x22\x21\xf0\x2b\x59\x43\x02\x16\xf6\xee\x61\x67\x5f\x1c\x03\x6f\x23\xc3\xdc\x91\xb7\x8f\xb8\xbc\x79\xe9\x56\x55\xac\x30\x20\xfd\x55\x36\x3b\x1e\xc0\x03\x99\x42\xd0\x27\xa8\xeb\xa6\x1c\x37\x6a\x12\x54\x9c\x17\x38\xb6\x89\x96\x78\xec\xd4\xac\x43\xd4\x99\x32\x9f\x68\xac\x5c\x66\x1e\xa2\xda\xb0\x25\xd3\xbd\x2a\x76\xf5\x1b\xf1\x2a\x19\x29\x61\x69\xf5\x47\xe0\xfe\x99\x4b\xa0\x24\x0a\x1d\x90\x7f\x4f\x7c\x11\xb5\xa7\x53\x72\x01\x4b\x78\x88\xfc\x23\x34\x98\x39\x48\x3e\x94\x39\x1b\x59\x1c\xcc\xc4\x54\x16\x8b\x2d\x71\x96\x3e\xe0\x29\xfb\xfc\x39\x3e\x03\x13\x3f\x59\x13\x1e\xe0\x32\x79\xaf\xb2\xa9\x7c\xb3\x58\x6d\x9c\xd1\x54\xf5\x84\xdf\x08\xda\x06\xc9\xd3\x04\xdd\x73\x49\xc5\xa2\x19\x91\x5d\x14\x90\x4e\x1c\x54\xd7\xad\x2a\x34\x72\xac\x0c\xec\xe2\xe4\xd4\x19\xc5\x6d\xb6\xd2\x61\x3f\xcc\xb1\x30\xc3\xb9\x15\x15\x43\xe3\x5e\x74\xcb\xbc\x66\x53\x5f\x76\x43\x30\x83\xca\xfc\x46\xe9\x2e\x83\x75\xf9\x0d\x15\x22\x61\x66\x17\x43\x1f\x37\x25\xf7\x4e\xc8\x0d\xec\xa1\x40\xbb\x4e\x6d\xd8\x7e\x9e\x1b\x86\x4f\x53\x96\x8c\x35\xd4\x80\xd0\xc0\x3c\x6d\xd2\xf4\x64\x3e\x2d\x80\x3e\xd3\xf2\xc9\x79\x41\xd9\xda\x07\x1a\x97\x57\x51\x48\x83\xb4\xa6\xb1\xaf\x19\x5e\xdc\x5d\xcb\xcd\x25\xcc\x9c\x74\x92\xcf\xd3\xb6\xf0\xa7\x61\xa0\xcc\x36\xa1\x92\x5e\x42\x3d\xca\x6d\xb3\x01\x59\xaf\x86\xbd\x34\xe8\xca\x42\x86\xa3\x20\x69\x5d\x5d\xbe\x7e\xfd\xe6\x5d\x12\xb0\x80\x87\x99\xd6\x1a\xf5\x4d\xf4\xa8\x9d\xb5\x2b\xf8\xd5\xc6\xc5\x57\x42\x24\xcf\x5e\x2e\x71\x0a\x2e\xdf\x62\x32\x57\x9f\xad\xc5\x7d\xc3\x42\x5b\xc2\x3e\x5c\xb4\xbf\x3d\x39\x43\x3e\x00\x89\x3f\x56\xe1\x84\xe3\x0d\xfc\xaf\xf2\x43\xa2\xec\x70\x0d\xd9\x66\x3a\x83\x4b\xb7\xbb\xc4\xd6\xda\x76\x76\x68\x84\x1b\xec\x28\x51\x4d\xb6\xfb\xde\xe2\x3e\xbf\x11\xe8\x04\x72\x0e\xab\xcb\x0e\xc8\xec\x80\xb8\xa3\xd1\x7f\x1d\x51\xb4\x46\xdf\x8d\x55\x75\xaf\x9d\x5e\xeb\x8e\x84\x81\x3f\xc7\x0f\x4a\x87\x5f\x93\xfb\x3d\x59\xe5\xda\x89\x9f\x5c\x2f\x8d\x68\x3a\xe9\xdc\xc5\xa3\x51\x8b\x01\xf6\x18\xf5\xc9\x3f\xfa\xf9\x66\x40\x6f\x8e\x9f\xbe\x07\x88\x9f\x67\xe8\xea\x8d\x1d\x1a\xb2\x26\x47\xd7\x28\xe4\x39\x9c\x0e\xcb\x14\x74\x95\x62\xa9\x12\xe1\xff\x81\x3a\x37\x76\xb8\x4b\xfd\xf8\x96\x2d\x26\x76\x43\x7c\xf7\x5e\x76\x63\x69\x3e\x83\xda\xa1\x8c\xfb\xae\xc2\xcb\x4b\xa9\x2c\xba\xca\xe1\x45\x76\xc8\xd0\x66\xfb\x27\x24\x9a\x7f\xf8\x42\xec\x0b\xd5\xf5\x20\xb4\x7f\x53\x61\x4b\xf8\xd4\x61\x7a\x03\x1a\xf3\xc2\xcd\x1e\xc8\xc3\xeb\x3d\x98\xba\x30\x1a\xd9\x3d\x49\xd9\x79\x3a\x71\x10\xd9\x68\x02\x3b\xc5\x4e\xe4\x96\xfa\x23\x9f\xed\xc6\xdd\xc7\x35\x83\xc6\xdb\x49\x94\xde\x49\x34\xe0\xc7\x2b\xf0\x98\xb8\xd5\x5e\x6f\x8d\x1d\x32\x32\xdc\xaa\x0e\xe8\xb4\x8a\x59\x22\x5c\xaa\x77\x55\xa7\x1b\x65\x1c\x72\x3b\xfa\x15\x52\x66\xc5\x41\x72\x23\x58\xb4\xa6\x82\xba\xc0\x4b\x01\x7e\xf0\xf7\x42\x29\x06\x0c\x55\x56\x72\xf4\xb6\xd6\x46\x7b\xf4\x8f\xd5\x5e\xcb\x8e\xb4\xb8\x72\xbe\x92\x8e\x82\x48\xd8\x52\x17\xb8\x3f\xe3\x61\x17\x57\x1e\x1e\xf6\x6d\xcd\x06\x88\x6f\xc2\xf0\x39\x0e\xd2\x0f\x13\x04\x39\xb6\xf0\xfd\xf9\xba\x1f\x46\x43\x67\x09\xa3\x51\x45\x62\xa0\x7b\x26\x8c\xd2\x4d\xcd\x27\x7e\x90\xcd\x1d\x30\x97\x41\x6d\xd4\xa0\x4c\x83\x1e\x7c\x12\x64\x17\xd1\x59\xb3\x55\x03\xe9\x51\xc1\x3d\x8e\x8a\x05\xe4\x1a\xb4\xbf\x7b\x92\xa2\xe9\xe6\xfd\xcb\x90\xf2\xed\xce\x8e\xc3\x77\x01\x30\x28\xfd\x11\x8e\x4d\x57\x93\xfc\xd0\x4e\x3e\xff\x65\x07\x08\x61\x14\x6c\x0a\x72\xa0\xcb\x41\xa2\x19\x54\xab\x0c\x50\xdb\x09\xb6\x55\x04\xbf\x8a\x80\x0f\x95\x10\x77\x34\x4d\x52\x43\x6e\xf1\xab\x3a\x48\xdf\xec\xe8\x8c\xe9\x2f\xfc\x13\x8f\x98\xb6\xf2\x77\x4a\xbd\x8d\x1f\xb8\x04\x1c\x2f\x0a\xc7\xe7\x45\x83\x92\xcd\x8e\x9d\x28\xed\xa6\xa6\xdb\xc0\x28\x8e\xbd\x8b\xe7\xde\xc0\x4f\x10\x4e\xb5\x62\x2f\x3f\xe9\xfd\xb8\x17\x11\x10\x8b\xc2\x2a\x39\x2b\x4f\xb2\x56\xcb\xe7\x51\x53\xdf\x87\xaf\x3f\x96\x9a\x62\x78\xf8\x74\xca\x28\xd5\xd6\x72\x44\xff\x7a\x64\x3a\x85\xb3\x55\xc5\xc1\x17\xc2\xed\xf5\x18\x7d\x81\xae\xaf\xe7\xb9\xa7\xf9\x77\xb0\x2e\xca\x92\xa5\xa2\x63\xfd\xba\x1b\xd5\xa3\x9f\x69\x14\x03\x3f\x0d\x58\x79\x7d\xbc\xe2\xf8\x0f\xd9\x02\x61\x88\x15\x31\xcd\x34\xd9\xae\xf0\x06\x68\x9a\x6b\x0b\x50\xc5\x96\xcb\x2a\x8b\xcc\x6e\x91\x7e\xff\xfc\xe5\x3b\xf4\xc7\x79\xa0\x78\x4d\x26\x1e\xf2\x65\x24\x16\xf9\x78\x50\x74\x59\x33\xb3\xea\x86\xc0\x15\x32\x27\xc6\xfa\x48\x17\xf0\xc2\x45\xdc\x5e\xfa\x5d\xaa\x0b\x36\x79\xed\x1c\x09\xee\x46\xe3\x78\x16\x42\x6c\xc2\x4e\x6d\x60\x64\xe5\xc4\x0a\xd8\xd2\x3d\x8a\x46\x76\xe1\x12\xc5\x4b\x4a\xe4\x82\x90\x88\xf6\xab\xf2\x48\x38\xb8\x8b\xca\xfc\xde\x76\x40\x1b\x4f\xff\xd3\x6c\xc8\x0f\xfe\x79\x49\xf2\x06\xc3\x11\x3a\xec\xa6\xa2\x3d\x22\xa4\xf3\x8e\x01\x5f\x15\x68\x51\x75\xa7\xcd\x1d\x4a\x56\xfd\x31\x25\x64\x82\xe4\x95\xed\xb5\x6a\xbf\xc9\xf2\x82\xdf\xd3\x0d\x8e\xfe\xff\xf7\xff\xfc\xbf\x4f\xae\xa0\xdd\x57\x7e\xe8\x9e\x5c\x05\xed\x0c\xe0\x89\x8e\x84\x40\xbc\xf9\xf7\x6a\x34\x07\x76\x72\x7a\x4f\xbf\xaa\xf0\x8d\x2c\xa2\x1a\x8d\xe3\x03\x1d\xfc\x51\xf1\x17\x70\x8a\x8a\x23\x8b\x00\x8b\xa8\x2a\x13\x77\xb8\xd7\xb6\xd8\xe4\xfe\x3a\xea\xe6\xae\x26\xbb\xdc\x85\xf8\x0f\xf8\x12\x18\xad\x82\xf7\x79\xd8\x32\x22\xff\xc7\x49\x3b\xd9\x44\xf2\x6b\x10\xb8\x39\xf2\xed\xaa\xb4\x5f\xc8\x52\x6e\x39\x06\x8e\x1d\x00\x3b\x6d\x54\xd5\x8f\x6e\x47\x3e\x00\xa1\xb6\x9b\xd1\xed\xf0\x2e\xee\x27\xba\xeb\x9d\x63\xc0\xa1\x99\xe1\x58\xcb\x41\xd5\xfb\xe8\x10\x39\x5d\xdd\x71\xe2\xb0\x5b\x77\xb2\xec\x1d\x95\x5f\x55\x15\xed\x7f\xe4\x11\xe9\xaa\xb8\xa5\xf1\x56\xe6\x07\x85\x48\x07\xa5\x00\xd2\xab\x21\x78\x2f\x48\xd3\xd6\x5e\x6e\xa9\x24\xc8\x1d\x5c\xd4\x0e\xc2\xcb\x2d\x23\x42\xcc\xbf\xf0\xcf\xca\x4b\x3c\xdf\x7e\x27\xb7\xf3\x30\x27\xfd\xd8\x75\xf3\x60\x28\x9d\x5c\x2b\x4c\xbe\xc6\x1f\xd5\x1e\x1a\xe9\xad\x51\xb4\x75\x85\x8f\xaa\x41\x3f\x4f\x17\x3d\x3e\x5d\xb5\xd5\x61\x7f\x2e\xdb\xc0\x97\xdb\xe8\x44\x9d\x7e\x22\x09\xea\x41\x1e\x20\x4d\x1e\xe8\x73\xa7\x1d\x07\xcd\x79\x41\xbf\x28\x19\xaf\xe8\x10\x28\xde\xd0\x89\xf0\x28\xfe\xf3\x1a\xb9\x09\xbf\x29\xcb\x5b\x10\xa8\x86\x34\x3a\xe1\x70\xd0\x5b\x2b\x28\x83\x24\x5a\xb7\xb3\x07\x53\xdd\xeb\x56\x59\xdc\x33\xf8\xbe\x1d\x85\x0d\x5a\x0f\xf6\xe0\x82\xc4\x07\xd4\xa6\x4f\x18\x5e\x50\xc1\xc3\xdd\xbc\x17\xef\x5e\x5d\xff\xab\x40\x1c\x30\x0e\xab\x2a\x8e\xc4\xca\xde\xab\x81\x6f\x7f\xbe\xe1\x9f\x29\x93\x6f\x4c\x64\x24\x43\x3f\x10\x95\x28\x17\x41\x9d\x97\x5d\x01\x79\x0b\x09\x0b\x80\x14\x9a\xe6\xb2\xeb\x16\xf2\xf8\x58\xb3\x5e\x1f\xe3\xc1\x6c\x2b\xce\x3e\xfc\xf0\xd1\x01\x0b\x3e\xfb\xf0\x87\x8f\x19\x70\x38\xb9\x9b\xca\x5d\x2c\xc0\x4f\xc4\xaf\x4a\xb5\x30\xf5\x57\x18\x68\x88\xce\xeb\x5f\xab\x03\xc9\x96\x9c\x45\xa7\xb8\x75\x3c\xcd\x47\x57\xe7\x1c\x00\xfe\x85\xec\x5f\x5b\xed\x8b\xcc\x7e\x50\x38\x0f\xa8\x59\x8e\x58\x1c\x52\x96\x1a\xe4\x02\x20\xc9\xe5\x35\x22\x33\xd6\xd4\xb0\xa5\xd6\x61\xc1\x5d\x91\xd0\x0e\x99\xc2\x58\xf3\x04\xf7\x5b\xcc\x2c\x1a\x81\xac\x28\x6f\x89\x0f\x53\x28\x80\xed\x47\xe7\xeb\xb5\xaa\xad\xa9\x65\xa2\xcd\x7f\x06\xa7\xa4\x35\x7a\xad\xcb\xb0\x3e\x61\xe3\x93\x77\xe4\xc5\x38\x58\xd0\x12\x45\xe8\x47\x88\x05\x92\x23\x47\xb5\x83\xe2\xf5\x60\x3f\x72\xcc\xc8\x6b\xa7\xd2\x35\xc7\xf6\x01\xd8\xe0\xb9\x97\xe3\x0b\xc6\xa7\xac\x57\xb9\xed\x6b\xd6\x2f\xe0\x5a\x35\x86\x76\x60\x13\x6a\xde\x00\x64\x69\x14\xf7\x21\xd9\x47\xbe\xaa\x77\xe4\x01\x83\x4d\x4a\x5b\x19\x3a\x87\x97\xa7\x0b\xcb\xd6\xf6\x30\xd1\x40\xd8\xc3\xbb\x46\x61\xba\xb1\xa3\xe5\x80\x95\xad\x56\xab\xbc\xbe\xa8\xcb\xa3\x79\x14\x44\xe5\xb4\x89\x9f\x53\x2c\x06\x94\xe6\xb4\x47\xad\xa4\xc7\xdd\xf3\xfb\x15\xc0\x06\xf3\x5f\x5e\x60\x6b\x83\x51\x68\xad\xb6\x9a\xa2\x36\xa1\x46\xab\xf8\x0a\x6a\x42\xb2\x96\xcd\x9d\xeb\x25\x06\xef\xa1\xf6\xe0\xfe\x6c\x87\x6c\xbe\x36\xaa\xab\xd1\xd3\x4b\x5c\x08\xfa\x8c\x99\xc8\x59\xb3\x49\xcf\xce\xf5\x93\x39\x2f\xdb\xb6\xf6\xfb\x3e\x1c\x96\x3e\x3e\x73\xdf\xff\x14\xba\xfd\xf3\xe3\x0c\x2a\x01\x3c\x4e\xcb\xb2\xa5\x48\x62\xec\xa9\x91\xe7\x4d\x5d\x9e\xf2\x3c\x6e\x1a\x6f\x82\x31\x7e\x5d\x8b\x37\xa6\x42\x18\x0e\xa1\x3e\x79\x65\x5a\xd5\x8a\x36\x49\x02\xd9\xd8\x30\x12\x22\x6d\x77\xac\xbd\xa5\x59\x9a\xb8\x0d\xf5\x37\x00\x04\xb2\xb3\x9d\x2a\x88\xcd\x04\xfe\x04\xba\xfb\x08\x2f\x49\x45\xbb\x15\x66\xa4\xea\x92\x00\x91\x6a\x08\xa2\x43\xb0\x7d\x99\x78\x39\x22\xe1\xd9\x60\x5c\x0e\xf4\xb1\xc5\xf6\x60\x30\x15\x8a\xce\x24\x60\x17\x0d\xf7\xc5\x56\x39\x1f\x0c\x2e\x87\xe8\x53\xc5\x22\x51\x79\xf1\x22\xa7\xc4\xc4\xef\x67\x3a\x79\x99\xad\xad\x15\x45\x57\xe2\x15\x83\xca\xcc\x2c\x90\x12\x97\x0d\x42\x03\x9d\x05\x92\xc8\x93\xf6\x65\x5a\x6c\xc5\x41\xa1\x8b\x91\xc0\x72\xa3\x45\x98\x0b\x61\xfa\xd7\xda\xd5\x32\x72\x47\xe3\x83\xdd\x92\xd5\xd0\x5e\xb2\x1b\x0a\x5d\x47\x96\xb4\xf3\x4e\x04\xe7\x87\x2a\x42\xfe\x80\x75\xb8\xe3\x9e\x77\xf7\x18\x52\x2b\x28\x6c\x52\x84\xcc\x70\xce\xc2\x24\xc0\x8b\x40\x9a\xa5\x68\xf2\xc5\x52\x6b\xc1\xa8\x67\x54\xc5\x6a\x52\xab\x52\x45\x85\x9e\x99\x8b\x86\x5f\xde\x05\xe6\xc6\xb5\xb1\x35\x59\x11\xd2\x08\x94\xdd\x39\xb2\x32\x13\xd8\xf7\xc4\xec\x10\x15\xfc\x53\x15\xb1\x7f\x4e\x7d\xd8\x65\xd5\x06\x96\x3a\x3b\x52\x66\x68\xe1\xb4\x69\x54\x0a\x33\xa6\xda\x50\xff\xea\x61\x7b\x5a\xba\x0e\x87\x47\xe1\x7c\x8a\x73\x80\x51\xc0\xad\xa1\xa8\xc4\x0e\x71\x59\x11\x3b\x0c\xeb\x67\x2b\xb5\x49\xcb\xcb\x5b\x74\x74\xa6\x5d\xc5\xef\xb2\x1d\xa4\xec\xe9\x6c\x2a\x5f\x12\x19\xd1\xba\x94\x86\xec\xcb\x27\xb5\xb1\x81\xb7\x02\xeb\x01\x59\x90\x46\x07\x34\x57\x54\x2f\xf3\x9d\x0c\xb2\x53\x7b\x30\x88\x90\xad\xd9\xbf\x8c\x97\xc3\x33\x52\x03\xe3\xa1\xcc\xf7\xec\x70\x90\x06\x1b\x9b\x4a\xb7\x51\x40\x33\xcc\x18\xb8\x1b\xd7\xad\x1e\x98\x87\xd2\x07\x6b\x99\x89\x4b\xb0\x6b\x3b\xd6\x1b\xa5\x29\x37\xa9\x38\x0a\x56\x2e\xf8\xba\x9c\xa8\x35\xc7\x01\x38\xa9\xfa\xf7\x0b\x08\xaa\x20\xed\x07\x8e\x9d\x44\x75\xe6\xd0\x41\x62\x2f\xe1\x72\xed\x20\xe4\x4c\x2e\xb9\xf3\x94\x48\xf9\x1b\x3a\xfd\x7d\xa6\x4d\x1b\xd3\x24\x1a\x60\xe2\xb5\xb7\x98\x9e\x54\x30\xbe\x9d\x16\x73\x78\x53\x7b\x8a\xb6\x45\x4e\x0b\xb1\x0d\xde\xc0\xff\x98\x6a\xd4\x81\xcd\xcb\x07\x35\xc4\xbb\xff\x14\x79\x14\xf8\x35\x2a\x4b\x59\xf2\x6a\xaa\x20\x65\x59\xb0\xd6\x21\x91\xb4\x5f\xcc\xcf\xb3\x9b\x4e\xc9\xa1\x8e\xe5\xaf\xe0\x53\x74\x33\x2c\x51\xe3\xca\x15\xae\x49\x35\x39\xcc\x6b\xbb\x0c\x46\xd5\xe5\x90\x54\xe3\x7e\x09\xd8\xf6\xca\x14\xb0\x6f\x7a\x65\x72\x7d\xaf\x40\x6c\x9d\x6a\x27\x98\xf1\xec\x63\x19\x5e\x3a\x8c\x59\x83\xa7\x3f\xfc\x73\xde\xce\x0c\x88\x9a\x29\x17\x40\x8d\xcd\xe1\x5e\xdb\x19\x10\x2f\xb8\xb8\xaf\x4f\x47\x2f\x8d\x8f\x3a\xcc\x06\x88\x32\xeb\xbe\x93\x8d\x8a\x91\x30\x10\x28\x6e\xd7\x45\x35\x11\x19\x57\x56\xe0\x23\x5c\xd1\x36\xbf\x8a\xe7\x90\xb0\xba\x24\x88\x87\xad\xda\xe0\x75\x01\xa7\xd0\x18\x5a\x4e\x84\x69\x71\x6d\x36\x36\x67\x4e\x78\xf9\xc6\x1c\xb9\x14\x1a\x16\xa2\x83\x66\x71\x9b\xfb\x51\xec\xe9\xa3\x70\xb3\x5b\xae\x6d\x11\xce\x87\xae\x77\x50\x28\xca\x69\xc3\xf8\x16\xf8\x89\x56\x2d\x1c\x2b\x20\x49\x9c\xf2\xa7\x8a\x8c\x8e\xfd\xac\x89\x2b\x7f\x16\x3e\x70\xda\x5c\x7b\x4c\xec\x0e\x79\x15\xe1\x88\xb1\x85\x23\xb7\xa5\x60\x2c\x84\x16\xe7\xb7\x97\x6b\x71\x21\xce\x5a\x9c\xdc\x71\x2c\x61\xea\xa6\x2c\x9a\xc9\x21\x93\x0d\x30\x61\xa0\x8b\x11\xce\xf3\x60\x9b\xa7\xf3\x0d\x9a\x97\xf1\xac\xa3\x5b\x28\xf1\xe0\x02\x9f\xc2\x9c\xc4\x3c\x5b\xc6\x5c\xf2\x81\xd5\x96\x20\xb6\xda\xa8\xd3\xa8\x4f\x94\x63\x8b\x37\xda\xb9\xe7\x39\x2b\xd9\x75\x75\xb4\x31\x5d\x76\x9d\xa0\x8f\x45\x50\xc7\xc1\x99\xbd\x05\x2d\x2e\x35\xb5\x65\xe7\x96\xa5\x42\x34\x5b\xdb\x7a\x7d\xe4\x32\xb4\xec\x30\x64\xda\x89\x22\x7b\x65\x40\xe5\x00\x39\x8c\x8a\xbc\x8a\x09\x0b\x45\x1c\x87\xb7\xb4\x83\x5f\xc8\x59\xe1\x7c\xf4\xbc\x55\xb8\x45\x10\x60\x1a\x08\xf2\x06\x7f\x2c\x81\x90\xcb\x57\x54\xbb\xde\x72\x2c\x89\xe0\x74\xbe\x58\xb1\x92\x2e\x95\xb8\xc6\x2b\x59\xc3\x17\x94\xdb\x5b\xe7\x61\x9b\x23\x0f\xbf\x57\x16\x6f\xce\xe2\xe7\x03\xf5\xa4\x02\x54\xd1\xac\x04\xac\xa4\x60\x45\xa2\xdf\xc9\x88\x94\x5c\x27\x3f\xfc\xe1\xa3\x7b\xf4\xf3\xd9\x87\x3f\x7e\x44\x9f\xc9\x59\xe1\x7a\x23\xef\xd4\x02\x06\x32\x43\x31\x34\x5a\x7d\xec\x18\xcd\x3d\x76\xcc\xf6\x95\x4f\x34\x14\x9f\x7c\xb9\xc4\x63\xe0\xc7\xc9\x0a\x6f\x63\x56\xb9\xc2\xcd\xb8\xaf\xb9\x8f\x8e\x38\x40\xf8\x8a\xc5\x03\x05\x6a\x09\x55\xfe\x16\xbf\x53\x77\xff\x05\x44\xe3\x33\xec\xe9\x6f\xa1\x58\xb8\xe4\x40\xd0\x59\xa8\xc5\x4b\x76\x7a\x8d\xde\xaf\xc1\x67\xa1\xcd\xac\x32\x5c\xec\x4f\xb1\x99\x36\x73\xd6\xa4\x5d\x00\x0f\xae\x4a\xd3\x72\xc1\xd2\xf0\x23\xf4\xb7\xcc\x0a\x8d\x8a\x20\x3c\xe8\x78\xb1\x39\x07\x1f\x14\x52\x35\xc0\xbd\xc5\xcf\x49\xe6\x43\xc8\x86\xa2\x00\x6f\x9b\x69\x8a\x31\xe8\x64\xa0\x98\xcc\x24\x52\xfc\x24\x85\x6e\x61\x42\xfd\xf0\xd1\x3d\x8a\xe4\xc6\xaf\x9f\x71\xb2\x14\x44\xa7\xfa\x22\x8e\xf0\xf9\x95\x58\x58\xca\x1d\xd4\x26\xe2\xe1\xa3\xe1\x96\x46\x87\xba\xca\x97\x62\x59\xa9\xf9\xba\x2a\x7a\xcb\xb1\xf4\x6f\xf0\x47\xaa\x39\x44\xb7\x42\x79\xf7\x2a\xfb\x8c\xd3\xbc\xf0\x63\xe1\xc4\x10\x2e\x30\xc4\x51\x60\x83\x43\xe1\xca\xcc\xf1\x9e\x82\xde\xf6\x5f\x36\x68\x46\x8d\x35\xf7\x6a\x70\x7c\x07\x97\x31\xb2\xe5\xf1\xd7\x56\xa7\xe1\x99\x18\x29\x42\xdd\xe4\x7a\x75\x2b\xef\xd5\x64\x13\x0f\x22\x4f\x14\xa1\xca\xfc\xc6\x76\x36\x89\x58\xf8\x35\x05\x20\xdf\xa2\xb3\x76\x51\x3a\x4a\x53\x93\x57\x2e\xc6\xa6\x2c\x77\x1d\x82\x5c\xe8\x0c\x65\x4c\x4c\x5c\x65\x66\x8c\x2a\x42\x0d\xc4\xd8\x22\x21\xd6\xe9\x1c\x0b\x5f\x60\x43\xd0\xe8\xdc\xb4\x08\xb6\x7c\x63\x83\x64\x8c\xdc\xe7\x50\xa3\xf6\x9a\x6e\x69\x68\x53\xb8\x21\x32\xee\xd3\xee\x67\xcb\x95\x27\xa3\x2b\xb5\xf5\x33\x06\xd7\x8c\x4d\xf6\x72\xf0\xba\xd1\xbd\x8c\xac\xf2\x26\x4b\x09\x90\xd2\x7b\xd9\xec\x60\x59\xe7\x42\xd7\x6f\x64\x38\x60\x7b\x01\xcc\x47\xec\x0e\x9e\xd8\x79\xb9\xfe\x6d\xa1\x74\x8c\x71\x98\x97\x8e\x89\x80\xe2\xb7\x8a\x0e\xb1\x32\x75\x2d\x3f\xcc\xe2\xcc\xc6\xee\x7b\x39\xa8\xd2\x8c\x0a\x29\xd1\x8e\xba\x08\x17\x46\x29\x00\xfb\x83\x15\xf1\x04\x06\x1f\x99\x80\x1d\xac\x34\x00\xa2\xa5\x30\xda\x2e\x4a\xb4\x18\x52\xf1\x02\x2f\x65\x4e\x2b\xe4\x1a\x2e\x04\xff\xe2\xfc\xe2\xf4\x6f\x7a\xea\x17\x7a\x6e\xeb\x41\xb9\xb1\xc3\x11\x41\x8f\x72\xfa\xd8\x90\x2f\x74\x00\xc2\x48\xff\x20\x6d\xa5\xba\xb2\x4d\x84\xde\x01\xe0\xfb\x2d\x90\xbb\x56\x8d\x04\x41\x1d\xdb\x0c\x7d\xdd\x29\xd9\x66\xbd\x1f\x14\x86\xdb\x0d\xf8\x77\xd2\xd5\xf9\x13\x0b\x30\x62\x11\x7d\x30\xc7\x4c\x28\xb5\x56\xfe\x80\xf1\x23\xf0\xc2\x09\x10\x97\x8c\x4e\xee\xc7\x5c\x8a\xf8\xe1\xa3\xfb\x1e\xeb\xf8\x1e\x44\x89\x96\x39\xe9\xbf\xe0\x07\xf1\x53\x26\xe5\x44\xef\x5b\x98\x06\xc8\x8d\xc2\xa0\x1e\x70\x0e\x7b\x2b\xf6\x6a\xd8\x2a\x14\x3f\xda\x60\x8a\x20\xbe\xfe\x53\x63\x5b\x15\x18\x37\xfe\x16\xda\x78\x1b\xd3\xff\x18\xd3\x19\x3f\x62\x62\x29\x23\x54\x43\x69\xff\x1c\x7a\x71\xf6\xe1\x7f\x7c\x0c\x73\xd4\xcb\x75\x9d\xb3\x6b\x72\xbc\x8c\x9f\x05\xd4\xd4\x02\x93\xf2\x8a\x03\xe8\x60\xad\xe3\x7c\xde\xd4\xbd\xad\x89\x34\xd1\x15\x89\x32\xd8\x5f\x3a\x1f\x49\x6f\x45\xaf\x06\x60\x53\x4c\xcd\xe8\x7a\xba\x2a\x48\x83\xe2\xf7\x90\x6a\x82\x59\x13\x73\xde\xcd\xd0\x46\xbe\xc4\x30\x25\x5b\x22\x14\xad\xf4\xb2\x5e\x0f\xc1\x59\x5c\x7a\x19\x5d\x0b\x97\x71\x31\x6c\x3b\xa6\xa0\x09\x40\x45\xbb\xa1\x93\xb5\x8c\xdb\x86\xb6\x6b\x57\xe3\x15\x31\x32\xaa\xbe\xe3\x7b\x5f\x9d\x6e\xbc\x88\xe9\xda\x71\xd4\x02\x0a\x3f\xbd\xa5\x60\xde\xf1\xd1\x8e\xcd\xa0\xdc\x0e\x43\xed\x02\xc0\x46\x1d\xc4\xde\xa2\x84\x19\x59\x84\x34\x35\x7a\xd2\x61\x57\x0b\x7f\x9c\xa2\x1b\xec\x9c\xc3\x04\x99\x04\xd0\x8d\xa8\xd0\xf7\xe9\xcb\xb0\x91\x3f\xfe\x12\xbe\xc8\x02\x7c\x34\x87\x86\x7e\xbb\xd3\x75\x4d\x5f\xdd\xa0\xf9\xb0\x97\x86\x7c\x64\xb5\x11\x76\x68\xd5\xc0\x91\xd4\xf0\xb6\x95\xdf\x2d\x60\x26\x6c\x13\x96\x82\x93\x67\x69\x65\xe3\x84\x1d\x0d\x2f\x40\x2c\x15\x4d\xc4\xbf\xb1\x51\xe4\xb1\x8f\x93\x94\x27\x72\x72\x90\x2e\xbb\x9a\xb3\x2c\x43\x22\x45\x41\xb6\x6f\xff\xe5\xac\xfd\x8e\xdf\x02\x90\x7b\x35\x77\x73\x84\x44\xea\x78\xbe\x79\x03\x17\xd5\x0e\x43\x05\xc2\x94\x81\x8d\x02\x80\xb4\xd9\xae\x02\x13\x63\x8d\x21\xf3\x71\x44\xe1\xe4\x97\x9c\xdf\x17\x30\x18\xd0\xc3\xa8\x43\xb6\xd8\xf9\x74\x27\x9d\x88\x84\x5d\x3d\x74\x52\xd3\x6a\xa0\xbb\x92\x54\x8a\xfc\xd9\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\xd7\x16\x97\x2d\x7c\x4d\x5b\x10\xf4\xbd\x29\xe6\xa8\xfc\x94\x1d\xaa\xdd\xb8\x86\x0d\x8d\xe2\xfb\xd1\x86\x91\xb9\xb9\x78\x1b\x2e\x1f\xf0\x89\x32\x8b\x26\x05\xfa\xc9\x7e\xb3\x48\x9c\x20\xff\x62\x3c\xb8\x3c\x63\xc1\x07\x38\xcf\x4d\x7d\x7e\x3a\x2a\xb4\x61\x8b\x6f\xc3\x91\xea\x77\x65\x27\x15\xdd\xc3\x87\xff\x79\x46\x8c\xeb\xcc\xa8\x6a\x9a\x87\x8c\x11\x91\x73\x4a\x0a\x19\x7c\x1e\x7d\x17\x1e\x1f\x8f\xc7\xe3\x93\xfd\xfe\x49\xdb\x3e\x5e\xe8\x75\x26\x41\xc6\x6e\x4f\xce\xee\xd9\x54\x33\xe1\xd9\x19\xa6\x4c\x20\x5f\xa6\x1d\x3a\x62\xe4\xe3\xf4\x1e\xad\x93\x6b\xe5\x61\xae\x66\xc7\xc9\xb4\x92\xd2\xe8\x39\xd8\x8d\x6c\xdf\xa9\x74\xdf\x08\xd8\x0b\x5d\xa5\xcc\xfb\x32\x51\x66\xb2\xac\x49\x34\xc1\x07\x1b\x18\x7d\xf1\x58\xb8\xb4\x9b\xd4\x98\x09\x51\xe8\xf5\x97\x93\x24\xc9\x94\x88\x44\xd6\xa8\x48\x2c\x00\x2e\xab\x11\xa9\xf6\xff\x4e\x55\x62\xa9\xfa\xa5\x69\xf0\x19\x65\xa2\x3a\xe8\x3b\x2d\x2e\xc4\x5f\xf4\x9d\xc6\xdf\x2b\x8e\xff\x98\xc5\x7b\xf4\x16\xb3\xbf\x29\xf2\x43\x5f\x21\x07\xfd\xb8\x76\x4a\xa0\x9d\x5e\xd0\x83\x26\x74\xbf\x6c\xec\x5a\xd1\xe9\x3b\xda\xdb\x6d\x33\xa2\x95\xe1\xc8\x01\x41\xfe\x0b\xa3\x73\xd8\xad\xc2\x6b\xfb\x51\x80\xd7\x9e\x27\xd5\x8a\x2a\xe4\x39\x8e\xf1\x83\x6a\x7e\xbb\x8e\x17\x39\x39\x78\x0c\xce\xe3\x5e\x4e\xe0\xf9\xeb\x76\x98\xc0\x42\x3b\xa7\xb3\xc8\x9e\xe0\x29\xbe\x43\x8e\xf5\x35\xc7\xfe\xa7\xfc\xe0\x70\x55\xfa\x57\x40\xcf\xc9\xe7\x06\xa4\x75\x25\xe4\xda\x8e\xec\x96\xc4\x76\xc1\xc4\x20\xb8\x1f\x18\xf5\x9c\x6b\x02\xd5\x3c\xab\x03\x5d\xc3\xb9\x02\x3e\x57\x38\x73\x78\xfe\x1b\xec\x1b\x58\xee\xcc\x11\x38\xce\x74\x48\xa9\xf9\xfc\x80\x15\xe9\xa2\x3f\x29\x6f\xda\x1f\xba\x9a\x54\x80\xf0\xc6\xb6\x0c\x65\xac\xd7\x8d\xaa\x7f\x08\x32\x4b\x7e\x7d\x89\x3c\x0c\xb6\x8a\xc5\x64\xd0\x01\x59\x4a\x8e\xb1\x78\x61\xbd\xab\xc1\x63\xe0\xdd\x38\x42\xf3\xa3\x63\x9c\x48\x88\x6a\x72\x7f\xba\x3c\x3d\xce\x70\x38\x1e\x66\x97\x11\x31\x44\x0a\x09\xf7\x7c\x83\x53\x9d\xab\x16\x5f\xb6\x0b\x69\x2b\x1a\x2c\x17\x1f\xa8\xc9\xb2\xb2\xa8\xe7\x2c\xde\x67\xdf\x27\xc0\x56\x74\x89\x87\xc3\x7e\x9e\x02\xa2\xf3\x75\x9e\x49\xa7\x80\xf0\x89\x39\xba\x07\x72\x0a\x64\x34\xe1\x80\xe8\x42\xbc\x0f\xbf\x13\xf0\x92\x0b\x68\xcc\xfc\xdc\x3d\x8e\x13\x80\x49\x88\x55\xe1\x51\x94\xe0\x48\x43\xf6\x2b\xa7\x5b\x8c\x83\x87\x27\x5e\xa0\xb5\x3e\x0a\xf9\xa8\x91\xdb\x56\x05\x69\xe7\xbc\x90\xe6\x38\x92\x87\xc1\x77\x66\x82\x07\x44\x6a\xc5\xc4\x3b\x6a\x9a\x31\x71\x8f\xcc\x38\xe2\xd3\xb2\x91\x41\x29\xc9\x64\xc5\x07\xa3\xcd\x7c\x93\x6a\xea\x07\xeb\xf1\x54\x26\x77\xff\xbc\x09\x89\x0b\x24\x9e\x17\x88\x77\x4a\x28\x27\xe9\xf1\x28\xc4\xe2\xb5\x2f\xd1\x8f\x6e\x87\xaf\x72\xc9\xa6\xd1\xad\x32\x5e\x76\x49\x3d\xc2\x60\x54\x3b\xed\x15\x5e\xf7\xce\xa8\x89\x81\x3f\xb3\x79\x42\x31\x82\x64\xee\x2e\x8a\x11\x82\x82\x2b\xe4\x6a\xb5\x9a\x4e\x94\x9a\xdb\x4b\xb3\x9d\xc5\xd7\x9b\x98\xf6\x00\xf8\xe4\xaa\x0c\x55\x2e\x38\x5f\x84\x25\x06\xe3\xcf\xcd\x89\x21\xb4\x57\x33\x6a\x4d\xfc\xce\x02\xa5\x70\xd0\xd6\x93\xa9\xb9\x50\x24\x6e\xc5\xfc\x4a\x4d\xa2\x29\xdb\x8a\xfa\x41\xdd\xc3\x66\x84\x14\x0f\x74\x5d\x68\x46\xb0\xdf\x4e\x54\x9f\xf0\x66\x4c\xa1\x88\x68\xe3\x3c\xac\x56\xf2\x14\x09\x23\xf8\x65\x38\xe3\x5d\x73\x7a\x93\x06\xfb\x49\x14\xcb\xdf\x61\x2b\x31\x47\x77\x4e\x1e\xcb\x60\x58\x88\x81\x00\xd7\xdc\x65\xba\xec\x6e\x28\x3e\x8e\xb1\xe6\x49\x9c\x92\x61\x24\x70\xf7\x25\xad\xb3\x44\x1a\x23\x5a\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\xd7\x95\xbd\xcd\x96\x83\xdd\xe4\x74\x9a\x11\x09\x1f\x7e\x00\x79\x2b\x95\xa0\xdb\x3f\xc7\x5e\xba\xf8\xae\xe6\x44\x33\xdf\xa9\xe6\xee\xc1\x5e\x17\xcf\x4a\xfc\xa3\x9d\x25\x57\x9c\x88\x8b\x1d\x72\xf0\xf3\xa1\x62\x44\x03\x0a\x0a\x4b\xeb\x8b\xde\xb2\xe3\x90\x8f\xec\x0a\xbb\xff\x27\x5a\x14\x6a\xe0\x16\xe1\xe7\x8c\xf7\x86\xd2\x33\xde\x7b\xb3\xc0\x01\xf2\x29\xf6\xa5\x9c\x77\x67\xed\x1d\x3d\xde\xb2\xc6\x9f\x29\x67\xab\x7d\xc8\x7c\xae\xbd\x78\x51\xe6\xae\xa5\xd3\x4d\xfe\x48\xed\x2f\x90\xb0\x20\x05\xf0\xb5\xa0\x0c\x92\xaf\x06\xce\x41\xdd\xd1\x34\xe9\x69\xdf\xdb\xa3\x69\xc4\x6b\x7b\x98\xa3\x02\x30\x6d\xea\x60\x84\x4a\x28\x21\x27\x3e\x55\xf3\x79\x23\x15\x09\x98\x92\x9f\x34\xc8\xa6\x22\x87\xee\x7b\x13\x9e\x1c\xba\xd5\x0b\xdb\x62\xd6\x23\x76\x2b\x9e\xf7\x88\x2f\x18\xc0\x8e\xf8\x65\x81\xf5\x96\x02\xea\x4d\xfd\x22\x23\x76\xd9\xde\x83\x5a\xd7\x16\x8f\x0f\x73\xda\x42\x63\x40\xa2\x9b\xb0\x44\xd4\x54\xe8\xb1\xc7\xac\x7f\x4e\xd1\x8d\x4f\x23\xbb\x9a\x75\x19\x50\x4c\xc3\x73\x92\x90\x54\x42\xab\x4f\x73\xe8\x90\x36\x01\x2f\x40\xf9\xe5\xc7\x5f\x03\x28\xca\xab\xef\xdf\x5e\x3f\x00\x1e\x3a\xf0\xe7\xe2\x01\xb0\x35\x50\x88\x18\x14\x71\xdb\xf7\x6f\xaf\xe9\x8d\x59\xbf\x53\xc7\xd2\x57\xc8\xcb\x75\x46\x43\x52\x0a\x27\x64\xa1\x93\x4f\xbc\x33\xab\x86\x13\x84\x41\x98\x9a\x61\x26\x14\xea\xf4\x76\xe7\x0f\x0a\x83\x83\x3c\x80\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\x0c\x61\xe6\xe5\x89\x34\xce\x1f\xc9\x15\x7b\x19\xc1\x6b\xb9\xc7\xc0\x54\x00\xf5\xe3\x83\x38\x56\x21\x08\xfd\x85\x78\x4d\xbf\x1e\x06\xc7\xe0\xf5\xa9\xcc\x65\xf6\xf9\x50\x5f\xf3\x58\x1b\xb0\x43\x8c\x8e\x35\x79\xf6\xb8\x23\xcd\xee\x6f\xb0\x0b\xfd\x5d\xfc\x0d\x16\xf7\xdf\xc5\xdf\xb4\x69\xd5\xa7\xbf\x87\x03\x91\xf8\xf6\x1e\x30\x8e\xf3\x59\x50\x06\xb2\xb4\x02\x11\xb0\x58\xbe\x8f\x8e\x5d\x37\x9d\xd0\xa5\x36\xc0\x51\x7a\x7a\x1f\xe2\xb0\x36\xd6\xf8\x41\xaf\xc7\x89\x96\xd6\x4a\x74\xe9\xfe\x9d\x9c\xb8\x9e\xe2\x97\xf8\xbf\xad\xc9\xf5\x2a\xb2\x8e\xe3\x6d\x1e\x6f\x6b\xd0\x30\x63\x94\xed\x2c\x82\x00\x9e\x3b\x14\xf7\x61\xbd\x45\x73\x8d\x1d\xf4\x56\xc3\x80\x62\xa1\xac\x17\xf8\x5c\x3b\x06\x21\xdf\x49\x47\x78\x63\x30\x65\x0a\xc6\x49\xd5\xc8\xf8\x6a\x93\x2b\x2b\x28\x35\xde\xd5\x44\x80\x8e\x82\x1b\xc6\x70\xcd\x74\x40\x73\xaf\x06\x1f\x0f\x9c\xbc\x78\x67\xc5\x5b\xb5\x1d\x3b\x39\xe4\x17\x91\xa7\x05\xa6\xe3\x1d\xf0\xb0\xb1\x0a\x37\x27\xa0\xba\x18\x18\x57\xc6\xcf\xe3\x95\x64\xb6\x65\x83\x10\x3d\x50\x4c\xb4\x69\x2d\x64\x35\x70\x68\x36\x78\xc2\x51\xa5\xcb\x08\x28\x45\xc5\x19\x35\xb8\x0d\x78\xfa\xb6\xd4\x0a\x72\x8a\x89\x6d\xa0\x40\x28\x0b\x2d\x48\x0e\x3e\x21\x14\x0a\x9f\xcc\x4d\xf4\x76\x82\xa6\x58\x4b\x93\xcb\xe9\xc9\x7e\x4a\x50\xe1\xd5\x1e\x6a\x12\xba\xdf\x95\x31\x49\xf3\x75\x46\xc1\xaf\x2f\x60\xe5\xd3\xcf\x37\x21\x7c\xf6\x1c\x2c\xea\xd3\x29\x66\x76\x49\x94\x4c\x80\xc7\x95\xc6\x83\x54\xc6\x6b\x67\xa9\x96\x1e\x79\xe6\xcb\xae\x68\x88\xc0\xd8\x4f\x6e\xa1\x79\x93\x61\x5a\x8c\xb7\xa3\x37\xd9\x1c\xc6\xbb\x1e\xda\xb4\xfa\x5e\xb7\xa3\xec\xb0\x31\x0f\xe1\xfd\x43\x89\xb7\xb1\x06\x2f\x95\x9f\xc4\x3d\xe9\x10\xb2\x8e\xf8\x22\x3f\xfa\xc5\x6e\x52\x34\xff\xc5\x1e\x01\x57\x8b\x9e\x2e\xbc\x92\x30\x2a\xbf\x48\x71\xb9\x73\xcb\x2b\x99\x55\x71\x7e\x50\x1c\xc2\x30\x4b\x7f\x9c\x89\x23\xec\x9a\xf2\xeb\x00\x38\x51\x00\x78\x2a\xbd\x5c\x04\x0b\x03\xfa\x26\xdc\xea\x50\x58\x08\x85\x8e\x56\x7a\x99\xce\xb6\x8c\xe5\x58\x3a\x6b\xd9\xdc\x2d\x5a\xcd\x16\xf1\x2f\xac\xaf\xdc\x30\x07\x84\x0b\x5a\x23\xde\xba\x81\x8a\x81\x4f\x9f\xcd\xa5\xac\x99\xf9\xf8\x6d\xce\x9a\x42\x83\xd3\x6d\x12\xec\xca\x34\x1a\x6f\x66\x28\x2a\x2f\xa9\x61\xd3\x96\xf8\xd1\x09\x42\x85\x0e\x14\x91\xf5\xff\x11\x6a\x9d\x26\x54\x62\x44\x9f\x0d\xb0\x74\x1a\xdf\x1f\x4e\x32\xb6\x2c\x0c\x52\x6e\x27\x05\x5e\x79\x24\xcf\x8e\xb9\xf9\xe9\x9c\x23\x8b\x40\x2e\xa8\x30\x40\xf2\x73\x3e\x06\x38\x8f\x1e\x90\x14\x4d\x3c\x8b\x76\x96\xbb\xa7\xb9\xd3\x6d\xc5\x3d\x8f\x08\x70\x19\xe2\xf9\x04\xa9\x09\x6d\xfc\xb0\x31\xf7\xca\xb4\xe8\x26\xb8\xa1\x13\x9d\x99\x4d\xe4\xe1\x99\xf2\x99\x93\x86\x53\x2a\xc9\x32\xb2\xa0\x2a\x7e\x26\x04\xf4\x7c\xf5\x87\x0d\xfd\xb5\x3a\xb0\x43\x5e\x52\xc9\xe4\x1d\x0a\xae\x81\x2f\x63\x94\xbc\xc0\x70\x17\x50\x2d\xee\x08\xe9\x09\x84\xd8\xb4\x50\x60\x38\xdd\xbc\x32\x48\xd7\x52\x70\xae\x4c\x51\x6a\xeb\x89\xd3\xe1\x65\xdb\x62\x7f\x0a\xe7\xc3\x93\x05\x26\x91\x42\x0b\x5c\x65\xa4\xd0\xf9\x7c\x99\x54\x1c\xc2\x85\xce\xcd\xce\x76\xc8\x7d\xec\xf2\x86\x2d\x74\x69\xb1\x58\xe1\x06\x41\x6f\x14\xc3\x7c\x4c\x97\xed\x76\xf4\x10\x6c\x6e\x7c\xcf\x03\xc0\x95\xdb\xe3\x64\xce\x3e\x10\x5e\x34\x34\x8a\xce\xe1\x4e\x51\xee\x6a\x91\x6a\x1c\xff\x2f\xd7\xbe\x93\xc5\x66\x72\x4d\x25\x33\xde\x14\x46\x56\x7c\x10\x28\x05\xc3\x01\x49\x74\x3d\x23\x7c\xf1\x3e\x50\x19\x0f\x87\xed\x7a\x14\xea\x15\x05\xc9\xbc\xec\xaa\x9c\x17\x07\xb2\x94\xf0\x1c\x62\xbb\xc9\xc4\xa0\x12\x4f\xf2\xd8\xaa\x82\xae\x25\xfb\xb1\xd9\xd1\xc9\x1d\x1a\x4f\x30\xf8\x8c\xb8\x79\x73\xfb\x4e\x90\xd9\xd4\x0f\x7a\xbb\x85\x0d\x58\xfc\x65\xa7\x0c\x3e\x2d\xed\xec\x5e\x31\x77\x6b\x9a\x91\x4c\x6c\xf4\x86\xee\x41\x85\xb8\x99\xa6\xe5\xed\x28\x0f\xde\x1d\xec\x06\xe4\x6e\x26\xf0\x95\x7f\x74\xc7\xee\x55\xa3\x37\xc7\x95\xb8\x56\x72\x30\xf4\x24\x6d\xf0\x90\x7d\xf0\x4a\x64\xec\x09\x86\x33\xf9\xe9\x7b\x99\xdb\x97\x99\x24\xf9\xf4\xe5\x8d\x6a\x46\x9e\x29\xe8\x52\xa0\xca\x40\xe1\x87\xce\x76\x91\x69\xd3\xd6\xac\x61\x0f\x10\x7c\x5b\xef\x4b\xa6\xe9\xac\x0d\xf9\x1b\xc6\x54\xf5\x97\x32\x5e\x46\xb5\xf2\x64\x6e\xe6\xb6\x5c\x88\x77\xca\x61\xf4\x3f\xfc\xfe\x0c\x78\x20\xc1\x2d\x3d\x5b\x89\x77\x06\xd0\xa4\x48\xd3\x22\x62\x0d\xcf\x6e\xa3\x44\x15\x68\xe4\xe6\x66\x9e\xc5\x3a\x52\x17\xb1\x69\x87\x69\x3f\x69\xee\x93\xbb\x18\x55\xf7\xd7\x51\x8d\x6a\x25\x5e\x7a\xb1\x97\x47\x7a\xa6\x79\xa3\x0e\xc2\xa9\xc6\x9a\xd6\x85\x78\x0c\xda\xe3\x9d\x51\x27\xc6\x3e\xdc\xe1\x9d\x0d\xc9\xbc\x6d\x83\xca\x68\xf5\x36\x7e\x3c\x04\x98\xf5\xe0\x05\xb4\xdc\x4b\x77\x37\xf1\x3d\x00\x4d\xf0\x2b\x7b\x91\x42\x8b\xc6\x12\xce\x4b\x3f\xe2\x4a\x7b\xa8\xfd\xf9\xa1\x85\x72\x7e\x09\xc4\xf5\x96\xe2\xd4\xbd\xe5\x9f\x73\x20\x72\xfc\xc0\x3e\xd1\xaf\x39\x48\xcf\x0f\x26\xc6\xa7\x13\xe7\x20\x6b\xdb\x02\x1d\x7f\xb1\xed\x71\x6e\xbe\x0d\xb3\x2b\xda\x70\x91\x17\xf5\xf6\x80\x47\x89\xeb\x23\x66\x68\xef\x54\xb7\xa1\x17\x87\x40\x7f\x55\x21\x34\x09\x0a\x44\x31\x5e\x8c\x20\x16\xc0\xe3\x8c\x66\x7e\xbc\x3a\x97\x7b\x47\xd2\x23\x1b\xc5\x8b\x01\xd3\x36\x51\xe0\x12\x6e\xd7\x4b\xd2\x3d\x70\x36\xa2\xdd\x96\x22\xc6\x9c\x83\xee\xde\x67\x97\xbb\x83\x3d\xaa\xa7\xf7\x6d\x55\x8b\x3c\x0c\x5f\xf1\x0a\x20\xa4\xbc\x51\xec\x80\x2c\xe8\x62\x12\xd9\xb5\xc3\x7a\x16\x5a\xc4\x41\x32\x71\x66\x61\x78\xcc\x19\x44\xba\x98\x82\x40\x21\x94\xf8\x54\x04\x63\xf0\x64\x14\x7e\x51\xb0\xbf\x6c\x03\x89\x03\x63\xb7\x2c\x37\xf2\xbb\xb5\x64\x1c\x82\x8d\x21\xd8\x82\x32\x27\x54\xa0\xd5\xfb\xb7\xd7\x39\x33\x3f\x17\x12\xb6\x77\xb2\x78\x0c\x6a\x2b\x87\x36\x44\x48\xe1\x8d\x65\x27\x3d\x6d\x20\xf9\x0b\x17\x18\xb6\x8c\x51\xd0\xdd\xf6\x3b\x6d\x30\xb2\x27\xaa\x26\x6c\xb4\x03\x2d\x31\xf9\x9b\xc0\x5e\x32\xf6\xb0\xbd\xd0\x5e\x15\xea\xc1\x2e\x7f\xfb\x6f\xb7\x6f\x5e\x9f\x8b\x4f\x4f\x0e\x87\xc3\x13\x28\xfe\x64\x1c\x3a\x65\xa0\x0b\xed\xb9\xf8\x5f\xaf\xae\xcf\x85\xf2\xcd\x77\x2b\xf1\x8a\x76\x9d\xc4\xcc\xd9\xe5\x13\xdd\xb9\xd1\x7f\x72\x1c\xfe\x89\xdd\x88\x57\x0c\x1b\x44\xf3\x07\x47\x73\xd9\x11\x46\x2f\x5c\xf6\x0b\x6f\x75\xe2\xa5\xbf\x4c\x0e\x69\x06\x85\x77\xe5\xf0\xc7\x34\x23\xb1\x6d\x04\x0b\xf3\x13\xdf\x5f\x90\x4e\xdc\xbe\xb8\xfc\xc3\xbf\xfe\x4f\xf1\xe2\xd5\xe5\x95\xd8\xa9\x4f\xa2\xd5\x5b\x45\x07\x69\x61\x45\xdf\xeb\x30\xd6\xff\xeb\x09\x4c\x82\x27\xb7\x7a\x6b\xa4\x1f\x07\x15\xc6\x9d\xd8\x43\x2e\x1a\x75\xb2\xb9\x5b\x7a\xca\x67\x0a\xa2\x1b\x6b\x98\x00\x2f\x1b\x6b\xca\xde\x13\x48\xb8\x98\x72\x85\x57\x52\x92\x71\x18\xa6\x4c\x94\x5f\x76\xca\x00\x7f\x1f\xbb\xb6\xdc\x9a\xd7\x2a\x4c\x01\xd5\xfe\x69\x5a\x18\xa3\x8f\x59\xd3\x01\x53\xfa\x37\x8c\x3b\xb3\x0b\xce\x2c\x90\x15\x7a\x87\xc0\xab\x69\x61\x7c\x51\x39\x53\xeb\x2e\xc4\x4b\x7a\xda\x39\xa8\x95\x29\x2f\xaa\x96\x33\x24\x6c\xe5\xbb\x10\xd7\xca\x8b\x7d\xb4\xfa\xe1\x2c\x27\x74\xf3\x22\xa5\xb3\xe3\x72\x76\xa0\xcb\x2f\x79\x4c\xb2\xe0\x08\x38\xa7\x61\x79\xed\x66\x31\x7b\x19\x23\x4b\x1d\xd3\x22\x79\x10\xba\x85\xac\x14\xfe\x33\x85\x76\xc3\x70\x7b\x4b\x03\xc4\x31\xe1\x16\xc7\x2e\xdb\x32\xc2\xd9\x66\x6e\x3a\x98\x96\x99\xc6\x5c\x5b\xcc\x8e\xfc\x1e\x8d\xd6\x74\x63\xed\x9c\xee\xe1\xb5\xe7\x22\xdc\x61\x3b\x67\x0f\xad\xf3\x70\xe9\xbd\x3d\x17\xa3\x49\xbf\xe9\xfe\x10\x2b\xae\xe1\x13\x3d\x44\xe1\x33\x3a\xf0\xb5\xe7\xf4\x54\x5f\x4a\x98\x8d\x37\x59\xf9\xd3\x2d\x3d\x6a\x57\xb8\xab\xf7\x10\x70\xd9\x93\x80\x81\x27\x41\xea\x40\x7c\x2b\x70\x5e\xf7\xc4\xf1\xa1\xf0\xf6\x7e\x00\x34\xfa\x82\xe4\xc7\xe8\xff\xfb\x29\x99\x93\x11\xbb\xe5\x8e\xa6\xd9\x0d\xd6\xe8\xdf\x17\xfa\xc6\x81\xf0\x52\x1c\xbc\x13\x00\x69\xb2\x12\x3c\x1e\x45\xa0\x5f\x05\x5e\x99\x5a\x3e\xf0\xa4\xd0\x71\x21\x86\xdc\x34\x23\x79\xe6\x3f\x55\x1e\x5f\x48\x5a\xda\x0d\xc9\x98\x1b\xb9\x57\xda\xbf\x02\x07\x67\x49\x90\x54\x41\x8a\x2e\x5f\xec\xdf\xb8\x79\x97\x06\x81\x65\x71\x7a\xe6\x63\x95\xe9\x8e\x2c\x1d\xcc\xf4\x23\x06\x9c\xd4\x31\x53\x4b\x78\xdc\xe6\xd6\x86\x54\xc3\x29\x0d\x8c\x2e\x55\x07\xcd\x20\x3c\xdd\x88\x4f\x74\x3c\x8d\x69\xa5\x3e\x1b\xf6\x49\x94\x7c\xca\x4d\x12\xa3\xba\xe0\x7e\x92\xcb\x34\xa0\x19\x97\xd7\x32\x01\x04\x2f\x65\x6a\xe3\x55\x08\x1f\x3a\x7b\x55\xe7\x38\x21\x75\xab\x5d\x83\x0f\xd5\x3f\x84\xfb\x29\x01\x7d\x1d\x76\x6a\x73\x78\x81\x81\x5e\x8a\x98\x64\xb6\x76\x2f\xd1\xe1\xf0\x29\xfe\x98\xed\x9f\x3b\x69\x0c\x39\x57\xd3\xaf\x7c\x2c\xfa\xce\x1e\xc3\xb3\x46\x4f\xf1\x8b\xdf\x6f\x5c\x00\xc9\x1e\x01\x5a\xff\x7c\x45\x4f\xf1\x3c\xb7\xbe\xd9\xc9\x6f\x7e\xfa\x7e\xfd\x33\x48\xc8\x6c\xab\xef\xac\xbd\x0b\xf7\x2a\x64\x8b\xf3\x3a\x3e\xea\xd0\xc7\xc7\x72\x92\xc3\x83\x6c\x5b\xf2\x52\xd1\x86\x48\x91\xd1\x0d\x28\x17\xdf\x46\xe5\x56\x4d\x04\x29\x1c\x81\xd8\x4e\x26\x7d\xea\xcd\x52\x67\x92\x3a\x8f\x50\x48\x81\x1d\xbd\x49\x20\xdb\x27\x28\x13\x90\xc1\x69\x25\xde\xed\xd4\x31\x06\xb8\xc5\xb7\x1a\xf1\x5c\xb3\x7c\xa7\x02\x9b\x17\x5e\x30\xca\x8f\x07\x6d\x5d\x12\x39\xbc\x37\x80\x21\x43\xc8\x8e\x63\x8e\xa2\x4d\xcd\xc8\x0d\x9b\xc5\x95\x85\xa5\x5e\xcc\x9f\x0c\x8a\x50\xd3\xa7\x8d\x52\x4f\x4f\x3e\x6d\x94\x17\xcd\xdf\x37\xca\x8a\xa2\xec\x1e\x89\xb0\xe8\xa3\x5b\x0c\xcb\xfc\xf5\xa2\xd4\xd5\x2f\x78\xc0\x68\x79\xe4\xa6\xc6\x9b\xcf\x0e\xf5\x43\x2e\xfa\x6d\xde\xb9\x2f\x78\xca\x68\x1a\xbe\xea\x0b\xec\x38\x4b\x6d\xc9\xbd\x53\x63\x03\x3e\xe7\xb0\xdf\xea\xcd\x66\x45\x91\x4f\x6b\x67\xc7\x01\xdf\xf8\xff\x05\xbf\xc5\x2d\x7e\x13\x08\xc7\x7d\xbb\xe0\x00\x70\x94\xc8\x37\xe3\x2f\xd8\x5b\x94\x12\xf1\xce\x1e\x9a\x24\xef\xa5\xee\x50\xfd\xbc\x10\x4f\xf5\x66\x43\xf7\xf7\x5e\x5b\x7c\xf8\x91\x72\x56\x54\xc4\xed\xec\xa1\x86\x5f\xf8\xd2\x11\x7a\x86\xed\xec\x81\x0a\xdd\x42\x4a\x06\xe6\xfa\x4e\xfb\x9a\x83\xae\xde\xc2\x07\x86\x8d\xcd\x20\x46\x83\x21\xe2\x02\xcc\x7b\xfa\xcc\xa1\x00\x65\xbc\x42\x1f\xce\x68\xce\xda\x18\xd7\x0c\xd5\xff\x74\x7a\x83\x33\x34\xc0\x9d\xb5\xc8\x7f\x50\xbf\x4f\x20\xf9\xeb\x1a\x67\x6d\xb4\x1c\x27\x08\x26\x34\x32\xd5\x5f\x5e\xbe\xa6\x4f\x0c\x79\xca\x31\x6f\x30\xf6\xed\x33\xdd\x31\xbd\xf9\xd5\xd3\x1e\xe3\xaa\xa9\x36\xc4\x7b\x83\x3c\x91\x25\x67\xb7\xbe\xf2\xe8\xb7\x84\xc3\x5b\x5b\xef\xa5\x39\xc6\xfb\xa0\xb7\x76\xaf\xd8\xb6\x71\x50\xe1\x39\xfb\x9d\x3d\x64\x57\xe4\xac\x15\x50\x84\xa1\x02\x41\x82\x9d\x14\xd0\x56\x21\xe0\xef\x6a\x29\xf0\x6f\xc8\xa3\x28\xce\x41\x1e\x82\x55\x1a\x64\xa2\x00\xd1\x0e\x72\x83\x37\x96\xe0\x7f\x4c\xed\x07\x95\x8a\xdd\x0c\xea\xc9\xb4\x18\xdf\x2c\x82\x7f\x31\x4d\xee\xc8\xab\x3d\x8d\x40\x1a\x99\x70\x09\xce\x5b\x71\xe6\x38\x2c\x1e\x2f\xb8\x12\x31\xcd\xfe\x1a\xbd\x9f\x2f\x78\xee\x8b\x2b\xdb\xaa\xa2\x4f\xf9\x95\xa5\x1b\x92\xdb\x44\xa4\x03\x7a\x76\xd0\x03\x4c\xfd\x60\xdb\xb1\xf1\xab\xa2\xdd\x45\x69\x12\xd4\x54\x98\x75\xa2\xb3\x5b\xb4\x06\x60\x1c\x53\xf2\xd9\x1c\x4d\xab\x06\xe7\xc9\x3d\x5b\x66\xdc\x55\xef\xfb\x81\x8e\x0e\x02\x7a\x2f\xb7\xf1\x81\x28\xb9\xa5\x60\x0c\x29\x0f\x2d\xe1\xe1\x49\xec\xa2\x4c\xdc\x80\x83\x27\x77\x16\x0c\xd1\xcb\x2d\x0a\xbd\x4d\x1e\x7e\x1b\x74\x34\x6b\x82\xcc\x9a\x35\xa0\xd8\x59\x42\xea\x7c\x37\x09\x39\xe5\x6d\x85\x6c\xf8\x79\xd9\x72\xfc\xdf\x98\xd3\x59\xd9\x92\x52\x7c\x4d\xbf\x56\xab\xd5\xc2\xac\x99\x3f\x61\xd6\x0f\xea\xc9\x74\xac\x33\xf8\x48\x80\xbf\xa8\xc7\x5d\x27\x7a\xab\x8d\x17\x74\xfb\x46\xfa\x62\xa6\x84\x93\x13\x1e\x5a\x6d\xcd\x13\xdc\xa6\x52\x33\xa6\x77\xce\x62\x75\x3c\x51\xd2\x94\x99\xce\x6a\xbc\xcd\x13\x56\x04\x5e\xe7\x29\x97\x05\xce\x9e\xb4\x30\xf0\x5e\xdd\x6c\x41\x91\x18\x9c\xa0\xca\x13\xf3\x05\x60\xda\xf2\x82\x1a\x12\x4f\xda\xa6\x30\xcb\xbb\x5c\xa8\x67\x7a\x7f\x07\x5f\xa4\x75\xbd\x35\xf1\xf0\xd9\xcb\xed\x83\x8f\x28\x4d\x6a\xcb\x4f\x70\xa9\x8a\xcf\x6c\x62\xd3\x35\x50\xde\x06\xca\xf0\xb0\xa8\x01\x9c\x92\xd7\xc8\x4c\xd4\x98\xe1\xe2\xdb\x93\xd9\xba\x0a\xf3\x00\xd3\x53\x89\x10\xb9\x02\x37\xe0\xf0\xbb\xaa\x3e\xd8\x61\xfb\x11\xdf\xc6\xa7\x28\xc5\x31\x4a\x61\x7e\x26\x87\x76\x57\x80\x89\x4f\x6a\x9f\x00\x4c\xcf\x6c\x27\x8c\x61\x02\x3f\x87\x65\x5a\xfa\xbb\x00\x00\x59\xbd\xf1\xc9\x22\xf6\xcb\xe7\x57\x8b\x56\x21\xe2\xbe\x1d\xb6\xe9\xba\x5a\x5e\x1d\x3d\x52\x93\x2e\x41\x71\x50\xf1\x8a\xfd\xe5\x2f\xc4\x0d\xfe\xa8\xb4\xb9\xd7\x1e\xe4\x87\xbd\x22\x87\xb9\x97\x98\x80\xfb\x8d\x35\xaa\x2a\x3c\xca\x2b\x8c\x85\x5c\x07\x6f\xf2\x8b\xe0\x57\xce\xe9\x93\x97\xf5\x8b\x97\xf0\xb3\x00\xbf\x80\xb2\xbc\x63\x07\xc8\x91\x2a\x0b\xb7\x6f\x01\x3a\xb2\x47\x28\x89\x24\xc4\xd4\x87\xa0\x8b\x27\x81\x80\x3b\x8c\x21\xac\x1d\xe2\xc2\xf0\x12\x86\x14\x2e\x9c\x54\x80\x59\x9b\x22\xde\x8e\x5b\xa5\x6a\x32\x5e\xb3\xa3\xab\xb9\xa9\x18\x08\x87\xe8\x94\xfd\x27\x82\x2f\x9e\xc5\x60\x83\xa4\xa4\x27\xbd\x28\x59\x74\xea\x5e\x75\x85\x85\x12\x11\x81\x26\xf0\xa7\x13\x2f\xff\xbf\x99\xce\x8d\x7f\xe0\xad\x95\x39\x8e\x07\x5f\x5b\x41\x74\x89\xa0\x59\x63\x70\x1c\x4e\x34\x22\x0a\xba\x5f\x7b\xbb\x6e\xf9\x49\xfa\xfc\xd8\x68\xf2\x36\x7d\xcc\x5a\x7a\xa4\xfe\x94\x93\xc9\x43\x7e\xef\x25\x68\xc6\xcc\x0a\xc2\x45\x4c\x5f\xea\x91\xc2\xee\xf4\x76\xd8\xfe\x73\xde\xf4\xc5\xb3\x7b\xb3\x56\xcf\xde\x51\x2f\x1a\xfd\x75\xef\xa9\x9f\xf4\xe0\x2a\x38\xcc\xd4\x88\x33\x7b\x08\x0f\x3b\xf8\x60\x91\xf2\x59\xbc\xbc\xc1\xf1\xe0\x2c\xf3\xa0\x62\xa7\x0b\x7a\x10\x8f\x0e\xff\x3f\xff\x2a\xde\x09\xcf\x9b\x87\x9e\xc7\x9b\xb6\x12\x38\x53\x0c\x5e\x97\x37\xf2\xc1\x12\xb9\x34\x63\x27\x5e\x1c\xff\xf8\x93\x79\xcb\x1e\x1b\x97\x6d\x1b\xac\x79\xfc\x42\x56\xa0\x5f\xb2\x18\x6e\xb2\x90\xcf\xd3\xf7\x1e\x13\xe5\x50\x6e\xe5\x4b\x67\xc5\x7c\xab\x98\xd7\xaf\xf8\xff\x4e\xf7\x75\xf1\x4c\xde\xab\x98\x9e\xbd\x98\xf7\x63\x2c\xc6\x96\x9e\xf0\x3e\xf2\x24\x3d\xf1\x57\xbc\xf9\xdd\xd3\x9b\x75\x09\x88\xbe\xe9\xf5\xf6\xa5\x9c\x69\xf9\xb2\x0e\xfa\x5f\x0f\xb6\x53\xb1\xa1\xe2\xad\xed\x54\x6a\x5e\x19\xba\xad\x2c\x18\xcb\xc4\x74\x36\x0b\x84\x37\xcb\x62\x7a\xf9\xd6\x65\x48\xe5\x3d\x36\x0f\xc4\x8f\xf2\x38\x63\x47\xf5\xe6\xc7\x29\xb4\xc1\x88\xd7\xbc\x1b\xbf\xb6\x87\x8a\xb6\xe2\x15\xc6\x86\xbb\x10\xff\x66\xb5\xe1\x94\xb2\x52\x4a\x03\xc9\x28\x3d\x11\xf1\x16\x74\x2c\x7a\x87\x75\x9e\x3f\x79\x0a\x0b\x77\xa2\xf8\x08\x16\x3f\x07\x8b\x82\x3d\x47\x20\x34\xe4\xd6\x52\x3e\xe2\x44\x58\x27\x2f\x53\xd0\xbd\xf8\xa2\xde\x1c\xe2\x4b\x2a\xc6\x3b\xcf\xd3\xea\xce\x83\x89\x1b\xed\x6e\xf1\x1a\x9b\xda\x87\x76\xa0\xab\x73\x6a\x07\x5e\xbd\x2e\xdb\x91\x43\x7c\x49\x3b\xa0\x16\x8c\x76\x15\xae\x00\x9c\x6c\x8f\x6c\x5b\x41\xde\xd9\x85\x47\xe6\xb4\x89\xe9\x31\xa6\x77\xd9\xfe\x8f\x5e\xad\xed\x44\x9e\x71\xab\xa5\x2d\x95\x72\xc8\x09\x71\x41\xe4\x20\x0f\xf3\xc5\x07\x8a\x3f\xcf\x04\x30\xac\x18\x94\x8c\xa0\x99\xef\x78\x11\x1c\x7e\xbe\x2f\x51\xbb\x92\x88\x88\xb2\x02\xf3\x06\xce\xfc\xfc\x96\x4c\x70\xe1\x75\x14\x92\x17\xf3\x4d\x05\x05\xc6\x30\x92\x2d\x42\xd4\x71\xad\xc2\x02\xcb\x6a\x9d\x23\x8b\xcc\x1c\xa1\x22\x13\x9f\xc3\x85\x15\x9b\x4b\x7b\xd9\x79\x8b\xc2\x33\xa8\xe2\x6e\x65\x80\xda\xcb\xe3\xf4\xa5\x5a\x10\xb1\xcb\x55\x73\x5a\xb1\x9a\x37\x25\xed\xeb\xcf\xf5\xbd\x32\x69\xc2\x9c\x54\xae\x56\xf9\x52\x9f\x4f\x90\x34\xed\xb6\x03\x46\x5c\x0b\x63\x0d\xcc\x22\x9b\x0a\x88\xf0\xc7\xd8\xcb\x46\x9a\x29\x37\x40\x8f\x3d\x25\xf7\x8f\x1f\x62\x0a\x5f\xd1\x00\x64\x1b\x0f\xb7\x00\xd9\x02\xc5\xf8\x34\x6d\xce\x02\x1e\x6a\x08\xad\xf9\xaf\x68\x08\xf2\x8d\x2f\x6c\xc8\x79\x68\x05\x49\x27\xc0\x05\x96\xd6\xff\x43\xed\x9b\xa8\x4f\x38\x39\xdf\xe6\x3a\x54\x60\x06\xe8\x68\x8a\xfa\xdd\xa2\xa3\x69\x66\x8e\x5e\xad\xa6\xab\x24\xf3\x94\xcd\x56\x4a\xe6\x94\x1f\xda\x82\x3e\xb1\x7c\x79\x89\x77\xb9\x84\xca\x58\x83\x5a\x37\x9d\x8c\xc6\x0b\x4e\x19\x72\x3e\xfb\xf1\xc3\x91\x25\x1d\x7c\xd9\xa7\x78\xb6\x2f\x1e\xf8\xb0\x91\x0a\x9d\xb7\x06\xe7\x57\x55\xf5\x01\xc7\xea\x63\xd5\x4a\xb7\x5b\x5b\x39\xe0\xb9\x43\xf8\x5d\x15\x37\xac\xab\xe2\x69\xec\x89\x84\xe6\xaa\x09\x51\x0b\x7a\xca\xd1\xef\x40\x09\x8c\xda\xc3\x65\x91\xe0\xe8\x45\xe5\x6d\x10\x11\xb7\x23\x47\xfa\x60\x5f\x7a\xbc\xed\xeb\xbc\xda\x8b\xd7\x94\x50\xed\xad\xd1\xe4\xb6\xfb\x8a\x7e\x69\xb3\xad\x8a\x70\x35\xcf\xe0\xa3\xc2\x00\x25\x9c\x72\x2d\x9d\xaf\xbc\xf5\xf8\x36\xe3\x3b\xf8\xff\xa3\x38\x6b\xab\xd4\x75\xb4\x79\x6b\xe7\x51\x78\xba\x0d\xbf\x5d\x06\x90\xbc\xd6\x28\xda\x16\x7f\xe4\x28\xb0\x9d\x35\x3b\x09\xc6\x76\x73\x2b\x11\xeb\xe8\x96\xaa\x0c\x41\x68\xd0\xdd\xab\x95\x5e\xae\x83\x51\xe7\xa7\x35\xda\x6a\xd7\x3f\x93\xc1\xf3\x3c\x4b\x28\x46\x24\xcf\x28\x4e\xfb\x52\x72\xb9\x97\xa6\x74\x7a\x0d\xb5\x48\x72\x5e\x96\x75\xc9\x66\x56\x4b\x38\xa0\xc9\xd3\xc2\xf5\x89\x94\x12\x2e\x52\x14\xd8\x2d\x5e\x9c\x66\xd5\xa0\xc8\xa2\x1b\x43\x45\x12\xdd\x4e\x9b\xf4\x84\xcc\xc9\x79\x5a\x67\xb7\xda\x08\x32\x51\x97\xdd\x63\x81\xbd\xc4\x19\x82\x39\x15\x28\x30\xc2\x6e\x9e\xb2\x0b\xce\xa4\x45\x2a\x2e\xd0\x3c\x81\xbd\x44\x67\x80\x29\x94\xab\x5b\x2d\x4d\xa4\xa0\x87\xc7\xc9\x44\xca\xf8\x12\xa4\x3b\x68\x7a\x8d\xf2\x16\x7f\x2c\xc2\x0c\x23\x1a\x2b\x47\x93\xe5\x36\x9d\x92\xa6\x1e\xcd\x5a\x9b\xb6\xb6\xfc\xa6\xeb\x15\x24\x8a\xd1\xac\xd1\xa7\xee\x0d\xae\x47\xf7\x60\xa1\x6c\x63\xbc\xec\x3a\x41\x59\xa1\x64\x76\x53\x69\x79\x87\x4c\x98\x79\xaf\x65\x47\x4e\x99\x14\x44\x97\x44\x0f\x89\x61\x24\xd9\x9d\x23\x64\x7f\x11\x8e\x49\x2b\x13\x44\x44\xf3\xf5\x4d\xc5\x0d\x00\x18\xbe\xbe\x57\x93\x46\x96\x4f\xf9\x33\xc8\x67\x30\x4c\x9a\xb8\x88\xe2\xeb\x1b\x89\x5b\xad\xd9\xd2\xb6\x73\xa2\x91\xa0\xd8\x37\x76\x68\x59\x73\xed\xac\xf3\x68\x7b\xa6\xd7\xff\x1e\x46\x79\xaa\xd5\x0f\xe2\xfc\x8a\x6e\x6c\xb5\xaf\xb7\x4d\x6a\xbe\x15\x5b\x39\xac\x81\x73\xc3\xee\xce\xb1\x71\xac\x29\x6d\x9d\xcb\xc5\x1f\x22\x30\x36\xa8\x05\x61\x6a\x01\xfd\xa9\xb6\x0d\x0a\x63\x4a\xc8\xae\xab\x9d\xdb\xb1\x47\xc1\x5b\x45\xa7\x33\x8f\x57\xce\xed\xbe\x97\xfc\x3c\xb2\xc2\xb3\x77\xf7\x98\x1e\xe0\xf8\xb6\x91\x78\x69\xfa\x47\x8c\x00\x83\xac\x1d\x4b\x07\xd1\x16\xa8\xf5\xdd\x83\x15\x4d\xfa\x92\xf1\xf5\x8c\xb6\x03\x36\xc5\xab\x2f\xea\x41\x08\xda\xf1\x16\x93\xf8\xe4\xa7\x51\xe8\x53\xcd\x5c\x0c\x45\x3d\xeb\x7c\xc8\x60\xbf\x6e\xbb\x99\xcd\xf9\x07\xaa\x78\x60\x14\x1e\x7f\x4d\xad\x79\x37\xf9\x29\xef\xd3\xbd\xd4\x46\xfb\xd9\x52\x78\x8b\xc9\xfc\x2a\xfb\x3f\xb4\x20\x96\x10\xff\xb3\x0b\x62\xc8\x5a\x35\xed\x52\x2e\x20\xe0\x7b\xd0\xf5\xd8\x7b\x8d\x1b\xc5\x2d\xbd\x0f\xfd\x1e\xbf\x73\x86\x3d\x0e\x03\x08\x89\x5b\x3b\xd8\xd1\x6b\x7a\x90\x88\xd2\xc4\xf3\x90\xe6\x16\x0a\xe0\x51\xc7\xb1\x1e\x39\xc4\x5e\x28\xf3\x0a\x93\xc5\x7b\x7c\x51\x2a\x95\x42\xf9\x29\x94\x91\x1d\x1a\x84\xc9\x52\x8d\x82\x15\x97\xba\x0c\x19\x59\x49\x2e\x63\xd7\x5e\x72\xdc\x34\x06\x7e\xc3\x29\x19\x2c\x1e\x30\xaa\xa1\xee\xac\xbd\x1b\xfb\x1a\xba\x8a\x41\x6d\x28\x59\x5c\x63\xb2\x78\x07\xc9\xf3\x1a\x42\xab\x62\xb1\x49\xa3\x4e\x95\xdb\x0c\x6a\x56\xe6\xd9\xa0\xe6\xf0\x81\x72\x3b\x25\xfb\x19\xdd\x5e\x28\xd9\xcf\xa8\x86\x90\x73\x02\x20\xec\x69\x2a\xe4\xa5\x74\x8b\x7a\x74\x5e\xe2\x65\xdb\x9d\xaa\x43\xa3\xfb\xd1\x14\xde\x80\x1c\x7f\xa2\x04\xcb\x53\xd3\x56\xf1\xa1\xe0\xac\x55\x76\xfd\x5f\xaa\xf1\x2e\x40\xbf\xa1\xcf\x0c\x6a\x6d\xad\x77\x7e\x90\x3d\x88\xc2\xe8\x93\x4e\x64\xfa\x25\xa4\x83\x28\xdc\xdc\xcd\x28\x45\xd0\x73\x52\x11\xf4\x69\x5a\xed\x5d\x2f\x4d\xed\xfc\x30\x36\x7e\x1c\x94\x8b\x15\xbe\xba\xed\xa5\x11\xb7\x31\x63\x56\xe3\xac\x64\x3e\x43\xa7\x85\x97\x6a\x6e\x64\xb3\x53\x8b\x55\x5f\x41\xce\x83\x75\xcf\xca\xe6\x95\xcf\x8a\x2f\xad\x94\xc1\x6e\x74\x07\x4c\x69\x3d\x36\x77\xca\xd7\x3b\xe9\x76\xb5\xc7\x27\xf2\x32\x5c\x37\x01\x4c\xfc\x82\x60\xe2\x85\x74\x3b\xf1\x0e\x8d\x6e\x0b\x58\xb7\x4d\xbd\x57\x5e\xa2\x97\x52\x86\xe5\xf9\x95\x78\xc5\xc9\x4b\xa5\xd0\x18\x57\xb3\x06\xc4\xab\x10\x84\xd2\x0c\xc3\x1b\xb4\xd7\xb1\x52\x74\x19\x41\x96\xb0\x19\xf5\x89\xb7\xf4\xe6\xd8\xf0\x6b\xca\x9f\x3c\xb4\xe1\x2d\xa5\x64\xb0\xa8\xe6\x6d\x9b\x3a\xf0\x48\x74\x60\xc1\x68\x94\xcf\xaf\x70\xf9\xce\x38\x58\x02\x26\xc6\xf5\xfc\x4a\xdc\xc8\xd1\x2d\x02\xf6\x92\x16\xd3\x49\xc8\x50\x7d\x00\x0c\x35\x4f\xe1\xb8\x52\x47\xa4\x24\xb6\x42\x3a\xf6\x0a\x6f\xb3\xee\xa5\x91\x5b\x55\xf7\x92\xfc\x46\x41\xeb\x16\xaf\x30\x4d\xdc\x40\x1a\xc3\x1a\x75\xc8\x0f\x55\xd2\xe9\xee\x25\x25\x06\x30\xd2\x2c\x50\x9f\xa0\x94\x20\x0b\xb7\xc1\x45\x1a\x59\x34\xe7\x15\xd1\x33\x29\x2d\x6d\xa0\xbd\x75\x9c\x16\xa2\x1a\xc7\x97\xa7\x38\x1d\xef\x65\x0c\x6a\xab\x9d\xe7\x50\x14\x18\x3d\x18\x2f\x2d\xbe\xc5\xe4\xa0\xdf\xe4\xd7\x50\xdf\x59\xec\x65\xd6\xb1\xd2\x6b\x31\x74\xf3\xf3\x91\x95\x57\x8c\x23\x7f\xe5\x84\x7b\x86\xca\x4b\x70\xdb\x2b\x2d\x0f\xc1\x7d\x8f\x20\x61\x3a\x76\x7c\xb6\xd9\xe5\xa5\x51\xb3\x0c\xaa\xda\x04\xc3\x35\x6a\x9d\x19\x95\x7b\xe9\xdc\x01\xbd\x92\x83\xb5\x1b\xcf\x0b\x84\xf6\x7c\xf7\x0c\xad\xed\xe8\x3b\x3c\x1a\x76\x1e\x0b\xad\x4f\x61\xdd\xd8\xb7\x2d\x8a\x18\x4c\x08\xce\xf9\xdc\xb9\x62\xa2\x45\x36\x53\xd0\x21\xa6\x9c\x23\x7b\xf9\x89\x94\x13\x24\x29\x07\x5e\x96\x9f\xf4\x7e\xcc\x4d\x55\x34\xd4\xd8\x59\xbd\xd7\x27\xcb\x06\x33\xdf\xb7\xb7\xca\x8b\x27\x3f\xe0\xe5\x49\xa7\xc4\xb6\xb3\x6b\x0c\xa4\x49\xd1\x40\x3b\x40\xf1\x1d\xe3\xd0\xae\xce\x27\x25\x1a\x08\x43\x83\xf1\x67\x39\x49\xfb\xc1\xee\xf4\x5a\x7b\x1a\x90\x85\x02\x01\x20\x3c\x8c\xb7\x8d\x73\x19\x6a\xe2\x29\x5e\x14\xc2\xc0\x40\x90\x41\x33\xd4\x0e\x99\xfb\x40\x98\xf3\x78\x50\x5f\x83\x8a\xc1\xbe\xf3\x33\x0c\x59\x99\xec\x4d\x41\x10\xfb\x28\x6a\x5e\x8e\x47\xef\x7b\x3b\x40\x17\x68\xb2\x7d\x0e\x17\x81\x0b\x02\x2f\x64\xef\xa5\x29\x93\x4c\xfc\x61\xc6\x10\xeb\x0f\x93\xf3\xc1\x13\xe4\x72\x6e\xe0\x6b\x0e\xb5\x3d\x98\x64\x78\xcc\x5a\x4a\x6f\x3d\x40\x7b\x53\x78\x06\x0b\x92\x29\xc8\xbc\xf8\x68\x1a\x28\x59\x79\xb0\x8d\x18\x1f\x27\xbd\xf2\x65\x87\x18\xc9\x81\x1c\xd1\xd9\x2c\x99\x37\x60\x27\x1d\x3b\xdf\x9c\xa8\x3f\x1d\x93\xe2\xd5\x90\xbc\xfa\xdc\x3e\x56\x36\x80\x8e\xf2\xe2\x1d\x9c\xd9\xf1\x8a\x2b\x9b\xb2\xe0\x77\x75\x99\x0d\xd9\x43\xce\xc3\x76\xe0\x08\x04\x13\xee\x5e\x9c\x6f\x17\x5c\x1e\x4b\xe4\xdc\x1b\x13\x4a\xff\x20\x4c\x4a\x67\x3f\xe1\xd8\x87\xac\xb0\xc8\xb8\xa7\xf5\x65\xcb\xb9\xa8\x8d\x4a\x94\xa7\xb2\x94\x96\x37\x81\x52\xe6\xa7\xc3\x94\xce\xf6\x43\x71\x21\xfe\x42\xbf\x38\x1d\x8d\x88\x24\xbd\x0d\x21\x6d\x7a\x1b\x8c\x21\x41\x37\x83\x9d\xfb\x77\x55\xa1\xb9\x98\x39\xef\xa4\x13\x13\xde\x5b\x74\x84\x4a\xd1\x5b\x0d\x21\x7c\x07\xb3\x77\xce\xca\xfa\x43\x29\xf9\x63\x8e\x94\xa2\x30\x20\x5a\x1b\x43\xa3\xb5\x9c\x3e\xf7\xef\xca\x1a\xc9\x68\x26\x8d\xcb\xb0\x22\xd4\xf2\xf6\x91\xb5\xc6\xa9\x66\x1c\xb4\x3f\x62\x54\x4f\xdb\xd8\x8e\x6e\x8f\x62\x1a\x06\xf4\x84\x34\x86\x9d\x5e\x3e\xa1\x54\x8c\xe3\x70\x21\x5e\x58\xe7\x39\xa5\xa7\xe7\x1c\x6f\xec\x10\x52\xd0\xa2\xd7\xa2\x8b\xb5\x36\xad\x78\xfa\x3a\x4f\x0f\x7b\x57\xc8\xbd\xe1\xef\x25\x98\xcc\x53\x4b\x0e\x46\x9b\xed\x8f\xfc\xbe\x4a\xc0\x81\x2f\xc2\xd8\x81\x5c\xa3\xfb\x0e\xda\xeb\xd5\x27\x8f\xa7\x71\xc6\x7a\x7e\x6b\x75\xa7\xb7\x3b\x74\x43\xd0\x9d\xda\x92\xd7\x3f\xac\xab\x55\x20\x3c\x08\x46\xfc\x6c\x14\x0a\x44\x7c\xf6\xf2\x8b\x74\x2a\x07\xc1\x1e\x21\x40\xec\x91\xf4\x14\xb5\x4e\x2d\xdd\x88\x15\x31\xf7\x24\xf4\xf4\x11\x5c\x64\x19\x71\x0b\x87\xd6\x3b\xbd\x35\x4f\x34\x3e\xbf\x00\xbc\x4b\x75\x2d\x5f\x2c\x2f\xa2\xf3\xad\x66\x35\x04\xe7\x2b\x8c\xa3\xff\x99\xd6\xb8\x31\x34\xfd\x76\xfc\x5c\xcb\xf7\x52\x63\x90\x47\xfc\x7f\x12\xcc\x81\x7e\xb8\xe6\x27\xa6\x95\x6f\x76\x09\x14\x2f\xef\xf3\xbc\xa0\xfb\x2a\x9f\xc2\xbc\xa1\x98\xfe\x81\xc8\x14\xd3\x3f\x60\xc6\xf3\xbe\x08\x40\x5e\x00\x05\xc4\x1e\x76\xdf\xda\x49\x60\x55\x4e\x5c\xb6\xe2\xf6\x32\x4c\xfa\xbd\xef\x6b\x36\x4a\xdf\xbe\x7a\x77\xf3\xc0\x2a\x02\x50\x9e\xe1\x08\x99\x4d\x73\xc8\xe2\xa9\x8e\x59\xd9\x7c\x0f\x41\x5f\x68\xc5\xb0\xb9\x06\xfd\xf4\x68\xe9\xb8\x65\xb8\x87\xa4\x37\x98\xbc\x83\x72\x7e\xd0\x0d\x3d\x40\xcc\x65\x56\xe2\xd5\xd8\x79\xdd\x77\x2a\xa4\x04\xd7\x43\xbc\xf8\xdd\xcb\x21\x3c\xd5\xda\xd8\xfd\x5e\x8a\xc7\xe7\x8f\x57\x05\xdf\xa9\x3d\x3e\x8a\xcd\x51\x19\xdf\x5d\xdf\x8a\x5f\x4d\x33\x1c\xc9\x43\x81\x7b\x7a\xa7\x7b\x00\xab\xef\xd5\xc0\x22\xf6\x9d\xee\x11\xf6\xcf\x98\x12\x16\xbe\xdc\xd7\x4e\x0d\xf7\xba\x89\xd3\xed\xe6\xf2\x15\x9a\x8f\x74\xa3\x72\xb6\xc3\x55\xe3\x0b\x46\x41\x80\x4f\x8d\xb8\x1c\xbd\x2d\x04\xf8\xc0\x3a\x75\x8f\xbb\x91\xee\x03\x01\xf3\xe7\x4c\xa6\x52\x36\xb9\x1b\x04\x4a\xcf\x24\xbe\x12\xba\x10\xfc\x22\x57\x9f\x6a\x06\x65\x99\xcf\xdd\x69\x5a\x15\x7c\x3c\xdf\xc6\x4b\x3c\x5f\xe8\xb7\x97\x23\xcb\x44\xae\x87\x7a\xbd\x18\xa3\xad\x2c\x51\x40\xd6\xb4\xb5\xb0\x03\xc5\x04\x75\x74\xa5\x98\x97\xc8\xcf\xda\xe7\x84\x5d\xf0\x87\x7b\xc0\x07\x8e\xa7\x1c\xca\x61\x3a\x5e\x69\x3b\x81\x9a\x24\x32\x84\x59\x1f\xc9\x09\x83\x0f\x2c\xf9\xf4\x39\x09\x7d\x29\x0c\xa5\x72\x0c\x95\x47\x5b\x24\xe9\x1e\x77\x55\x96\xc2\xb2\x6e\x4e\xa4\xb0\xb2\x19\x9f\x11\xc6\x08\x0d\x69\x73\x7c\x95\x25\xb8\xbf\x5f\x67\x87\x87\x34\x9b\xa6\x5e\xef\x7c\x48\x1d\x2c\xb2\xf1\xc8\x9a\x2d\xb2\xe5\xc9\x35\xc3\xca\xbe\x8f\xfb\x7e\xdf\x77\xc5\xa6\x9f\x81\xdc\x13\xdf\xcc\x20\xfe\xcc\x31\x33\x33\x20\x0a\xd7\x90\x03\xbd\x7f\x7b\x1d\x00\xa6\xf2\x00\x27\xdb\xcd\xa6\xd3\x46\xd5\x7b\xba\xb0\xf3\x86\x3e\xc5\x2b\xdb\xc6\xfa\x39\xfc\x49\x3d\xd8\x91\x4c\xae\xdb\x2c\x86\xff\x5b\x4c\x04\xe2\x04\xf0\x61\xc4\x79\x30\xd0\x31\x23\x69\xef\x59\x16\x57\x04\x59\x79\x25\xa0\x3b\x71\x18\x50\x0e\x1c\x30\xe9\x20\x9e\x83\x37\x78\x09\xab\x1e\xac\xf5\x75\x2f\x69\x4b\xc0\x74\xba\xd7\xf5\xd6\x5a\x2f\x6e\xa4\xdf\x85\x42\x9d\xdd\xce\x4b\x5c\xdb\xed\x09\x70\x8e\x9c\x4a\xcb\x24\xf4\x81\xd2\xa6\xf3\x08\xbb\x15\xdb\xe6\x76\xd9\x68\xdf\xbe\x58\x1e\x6a\x80\x9a\x4b\x8f\x59\x26\x08\xc3\xbe\xe6\x18\xd0\x35\xcd\x22\x96\x8d\xbd\xf8\x85\x43\x43\xd3\x64\xca\x8b\x9d\x18\x59\xc8\xca\x85\xbb\x2c\xb9\x43\x7f\x91\x90\x7b\x8d\x5f\x33\xa0\x9c\x64\x33\x4a\x01\xc0\x9d\x3a\xd6\x18\x23\x8a\x81\xfe\x5d\x1d\x29\x36\xd4\x02\xe0\x16\xaa\x8b\x60\x5b\x65\xc4\xb7\x8f\x9d\xdb\x3d\xa1\xac\xc7\xdf\xcd\xca\x80\xbe\xbd\x1f\xf7\x74\x4f\x55\xff\xae\xe8\x79\x41\x8c\xd4\x8e\x19\x58\x1b\x28\x03\xe2\x0a\x32\x1e\x2a\xea\x16\x4a\xb9\x2a\x8d\x79\x6f\xd3\xe0\xe5\x26\x8d\xa5\x31\x44\xe8\x82\x32\xa9\xc0\x9c\x48\xe8\x3b\x18\x84\xff\x5b\xfc\x22\x71\x25\xc7\x86\xaf\x60\xd4\x49\x71\x7a\x86\xaf\x62\x04\xf5\x89\x21\xf7\xf2\x53\xb2\xa2\xa0\x81\x84\xec\x30\x53\xc3\x0b\x83\xf7\xf8\x14\xf3\xa0\xda\xba\xd3\x8d\x32\x8e\x9f\x43\xe1\x44\x71\xcd\x89\xd3\x15\xbe\xf3\xbe\xaf\xb7\x88\x3b\xac\x6f\x8c\x31\xf7\x3c\x61\x66\x59\x00\x8d\x0d\x48\x83\x7a\xaf\xb7\xf1\x19\x1e\x16\x09\xd0\x3c\x86\xa4\x10\xaf\x42\x6e\x40\xc0\x37\x09\xeb\x0d\xc8\x95\x40\x78\x3a\x2c\x69\x8e\xe9\x0d\x4e\x96\x39\xaf\x52\x5e\x1c\xad\x76\x9d\xc6\xea\x69\xf0\x81\x59\x1c\xa9\x76\x5d\xbc\xc4\x9f\x52\x73\x15\x28\xa5\xe6\xaa\x5f\x4a\x65\x1e\x90\xf3\xb0\x76\x5d\x3b\xd7\x05\x36\x76\x7b\x7b\x5d\xf2\xca\x94\x9b\xe4\xc3\x6f\x41\xd8\x7f\xd4\x5b\xe7\xb7\x83\x72\x8f\x84\x35\xdd\xf1\xbb\xac\x04\x4f\xa5\x7c\xea\x70\xea\x14\x87\xfb\x6b\xa7\xbd\xfa\xe3\x23\x3c\x0a\x7d\xe4\x75\xbb\x7e\xf4\x5d\xb1\xed\x68\xbc\x7b\x99\xed\x3b\xba\x39\x41\x9f\x68\x89\x55\xa0\x0b\x64\x71\x99\xc3\x2b\x2a\xa4\x23\xb0\x47\x7e\x49\xda\xb0\x21\x24\x59\x30\x6e\x07\xb9\x1c\x18\xda\xb5\xb3\x07\x86\x65\x27\x94\xf8\xc4\x15\x5e\x50\x7e\x1b\xd0\xfc\x82\xc9\xa9\x81\xf4\x20\x4b\x78\xb4\x9b\x6f\x34\x86\xe6\xe1\x3b\xdd\x2f\x0d\x5d\x48\x8e\xab\x44\x77\xc9\xb2\xfc\x0a\xda\x9f\x1b\x93\xa7\xed\x9f\xf1\x96\xd0\x8b\x87\x79\x0c\x2f\x81\x46\xf6\xbe\xd9\xc9\x34\xeb\xaf\x28\x21\xee\xc8\x14\x52\xa4\x81\xa9\xd0\xb1\x63\x08\x85\x1d\xc1\xfb\xb0\xe2\x1a\x3d\x41\x62\x67\x9d\xf2\x49\x71\x2e\x0a\xbd\x85\xbc\xa8\x68\xe7\x85\x43\xe9\x10\x10\x2c\x8e\x7c\x08\xf7\xb1\x38\xf2\x18\xd1\xae\xee\x94\xd9\xe2\xb4\xfb\x0f\xf8\x14\xd7\xf8\x19\x29\x44\x71\x3c\xf0\x30\xc2\x8e\x6c\x05\x84\x14\x3c\x93\xb0\x63\xda\x28\x3e\xab\x6c\xe4\x63\x93\x0b\x45\xaf\xf0\x7b\xb9\x85\x0c\x7b\x72\xb3\xe4\xfc\xc8\xb6\x54\x67\x73\x96\xf5\xeb\xf5\x9b\x09\xe4\xc2\xea\xe6\x9c\x05\x6e\xc0\x39\x0b\x6b\x1f\x8f\x30\x70\xcb\x63\x3d\x1a\x0f\x2f\x70\xcf\xc3\xd5\x12\xe0\x22\x48\xbd\xa1\xcb\xc9\x17\xe2\x19\x14\xc0\x77\xbd\x4d\x4b\x51\x18\x71\xdd\x41\x12\xc8\x92\x3f\x8a\xb3\xfb\x79\x69\x47\x97\x7e\xdf\x25\xf0\xf4\x4c\x22\xc7\xab\x83\xc2\x49\xf2\x24\x3f\xac\x48\x63\xf4\xbd\x5a\x26\x31\x41\xce\x29\x1c\xd9\x34\x9e\x3b\x26\xaf\x4b\x3c\x69\x5c\xc4\x44\x90\xb2\x95\x3d\xb1\x02\x02\xbd\xa4\xef\x12\x08\x0f\xe7\xef\x65\x17\xa1\x5e\x72\xc2\xac\x56\x93\xd7\x69\xf8\x91\xab\x34\x0c\xe4\x34\x9c\x31\x3a\xba\xcc\xb7\x2c\x76\x31\x74\x3f\xd8\x7b\x1d\xbc\x73\x09\xfe\x86\x93\xd2\xb6\x49\xdf\x09\x73\x80\x60\xd4\x69\x13\xb3\x77\x3a\xaa\xcd\x57\xf8\x55\xcc\x2e\xe6\x11\xb0\xa8\x09\x36\xb1\x89\x5b\xe5\xb9\x44\x94\x7d\x9b\x48\x99\x70\xe6\xf8\xfc\x2a\xd2\x86\x8e\x27\x27\x9d\xe9\xf4\x46\xc5\xc3\x4c\xee\xcd\xb5\xde\xa8\x02\x18\xb6\x73\x17\xe2\xa8\xc1\x46\x7e\x2b\xde\x98\xee\x38\xe9\x44\x8e\x8a\x7b\x92\x30\x45\xca\x68\x3c\x61\xce\x08\x43\x09\xcb\x24\x0f\xd0\xbc\x23\x65\xe0\xbc\x25\x4d\x39\xf1\x76\xe0\x5b\x71\x69\x15\x3f\xe7\xa4\x09\x45\x37\xaa\xc5\xd0\x00\x6d\x1d\x4b\x30\x5d\x9f\x85\x1c\x71\x89\x39\x89\x3d\x82\x6e\x11\x1b\x0e\xaa\xc5\x62\xa3\x01\x2a\xb4\x07\xa3\x68\xec\xf4\x76\x87\x0f\xb1\x64\xad\xa2\x60\x1a\x47\xe3\xe5\x27\xf1\x22\xe4\xe7\x18\x40\x50\xc3\xd2\xa0\x46\x39\x16\xd2\xb0\xd4\x35\x26\xe0\x3e\x2e\x85\xd3\x66\xdb\x51\x14\x89\xef\x4e\x16\xaf\x9b\x9d\x1c\x64\xc3\xaf\x76\x45\x44\x57\x29\xb5\xc4\x06\x65\x96\xb1\x85\xd0\x15\x11\x07\xbd\x69\xfe\x2d\xa9\xf9\x18\xbc\xa2\x28\xb8\x6d\x6a\x39\x6c\xf9\x18\xfa\x72\xd8\xe2\x1b\xa1\xae\x40\x8d\x72\x9d\xca\x76\x88\x28\xe9\x4d\xf7\x08\x02\xc7\x97\x97\x72\x68\x7c\x4f\x82\xed\x22\x0b\x25\xf0\x42\x43\x56\xe0\x0a\x2f\x38\x24\x2f\xd8\x85\x22\x18\xea\x2c\x95\xc0\x28\x67\x0f\x16\xe0\xe3\x76\x02\x7f\x7e\xb5\x00\x9c\x2b\x92\x71\x0a\x81\x02\xb9\x38\x85\x00\x8a\x05\xc3\x5c\x28\x84\xe4\xf9\x6d\xdb\xe0\xa2\xbe\x6a\x06\x8a\xd7\x0d\xff\xde\x49\x77\x17\x9d\xd7\x8b\xf3\x88\x90\xe6\x9a\x9d\x6a\xc7\x8e\x34\x0a\xfa\x99\xe0\xd5\x27\x1f\xdc\x20\x70\xf9\x86\x0c\x0c\x08\x61\x47\x17\x22\x42\xc0\xcf\x02\x40\x7d\x52\xcd\x98\x79\x44\xfd\x4a\xdf\xec\x82\x90\xd0\xd8\x70\x8d\x6d\x34\x46\x9b\x2d\xf0\x47\xf2\xf0\x8e\x30\x4b\xaf\x36\x87\xa6\xa3\x22\x1b\x14\xda\x93\xf5\xc7\xea\xc3\x40\x54\xc1\xcd\x3f\x38\xcf\xf3\xe3\xa7\x1d\x19\x66\x26\x9e\xff\x01\x16\xc3\xc2\xb4\x18\x1e\xa4\x8e\xe1\x42\x30\x3e\x0c\x41\x72\xe8\x90\x08\xcf\xee\xeb\x2c\xa5\xc1\x08\xc5\x5a\x55\xa7\x1a\xbc\xbd\x8d\xdc\x16\x3e\xc4\x65\x97\x4a\xb6\xaa\x80\x78\xca\x9f\x05\x8c\x36\x64\x5a\xa0\x2c\xd2\x96\x5e\x52\x1a\xa3\xcc\xae\x33\x04\x73\x1d\x01\x73\xa8\x27\x34\x8d\xdd\x72\xca\x14\x32\xd4\x8c\x40\x97\x5d\x37\xa3\x46\xae\x0b\xe5\x69\xf8\x00\x41\x76\xe7\x24\xeb\xd3\x74\x18\x43\x96\xed\x71\x16\xaf\x66\xad\x8d\x36\x37\x1e\x91\x70\x39\xe3\x73\x3e\xbe\xd5\x07\xa2\xfd\xc7\x10\x9a\x80\x8f\x93\x83\x17\x47\xe6\x39\x59\xc4\x6d\x3b\xc3\x78\x63\x15\x46\xae\xe4\x22\x14\xae\x72\xf6\x52\xd0\x52\xb1\x41\x99\xec\x51\x20\xfa\x2a\xea\xc2\x4b\x4d\x14\x75\xf4\xec\xc3\x0f\x1f\x5d\x08\x3b\x5a\xe0\xfb\xf0\x87\x8f\x80\xf2\xc3\x1f\x3f\x12\x56\x7e\x30\x98\xb1\xa6\x87\x1e\xb3\x12\x3f\x7c\x74\xdf\xbb\xa1\xf9\x7e\x5a\x56\x48\x3f\x01\x83\xcc\xff\x91\x10\xf7\x72\x50\xd9\x23\xf6\x38\x97\x29\x59\x3b\x7e\xe2\x9b\xec\xa5\x67\x6d\x08\xd8\x53\xc5\x87\x13\xb8\x45\xe1\x7b\x42\x56\xea\xe5\x72\x17\x13\xc9\x78\x78\xe8\xd9\xa8\x0b\xf1\x1b\x05\x8a\xe4\x67\xa4\xb2\x02\xdf\xd3\x11\xee\xf7\x54\xf4\x5f\xb0\xa3\x80\xe0\xb7\x8a\xde\xba\x8f\x08\xf8\x65\xfb\xaf\x40\x40\xd1\x29\x13\x86\x10\xad\xf2\xab\x1a\xc1\x61\x38\x53\x33\x28\x41\xb5\x02\x0d\xd5\x5f\x8e\x88\xe8\x31\x89\xc6\xf9\x5b\x98\xb7\xc5\x6b\x95\x39\x42\x7c\x61\xeb\x24\x75\x66\xe8\x88\x48\x5f\x8d\x8d\x49\x35\x45\x17\x29\xf6\xd5\x08\xf1\x2d\xd2\x19\x3e\x7e\xa1\xf4\xeb\x3b\x4b\xc4\x8b\xaf\xc9\x06\xaa\x19\x75\x88\x4f\xd1\xfe\xb3\x8b\x86\x39\x53\xac\x23\xf0\x9f\x80\x9f\x17\xf7\x1f\xd2\xe2\x5e\x44\x17\x16\x37\xc6\xb6\xf5\x72\x9b\xad\x6c\xb9\x2d\x3a\x8b\x4d\xc4\x32\xdc\xcf\xf9\xda\xcf\x11\x86\x6b\xa5\x88\x32\x34\x0e\x71\x7e\x65\xcb\xaa\x0f\xde\xda\xee\x63\x25\xb7\xb0\xc8\xe5\xd6\x56\xc0\xbd\xf8\xe6\x3a\x32\x32\x63\x0f\x15\x7d\xc2\xaf\x1f\x80\x81\xfc\xc0\x51\xec\xc5\x99\xab\x7e\xd8\x63\x02\xbd\x64\x89\x09\x3b\x4c\xd8\xd9\x11\x9f\x27\xfa\xa1\xc5\xcf\x56\x1e\xf1\xeb\x80\x5f\x07\xa5\xee\xa8\x30\xee\x67\x3f\x88\xbd\x35\x7e\x87\x29\x47\xfc\x3e\x2a\xc9\x8f\x1b\x51\xb4\xfc\x0b\x60\x4d\xe1\xe3\xcc\x55\x54\x1d\xa7\x87\x8f\x33\x57\x41\xad\x9c\x4a\x3f\xcf\x5c\xd5\xca\x23\x27\xe1\xaf\x33\x57\x41\xf5\x9c\x44\x3f\xcf\x50\x0c\xf1\xbb\x80\x90\x7e\x9f\xb9\x0a\xda\xc1\x89\xf4\xf3\xcc\x55\x83\x3c\xd4\xa9\x5d\xfc\x0b\x53\x53\xab\xf8\x57\x55\x7d\x68\x07\xdb\xff\x6e\x8d\xfa\x58\x85\xd7\xac\xd3\xa3\xf3\x4f\x07\xdb\x07\xef\x7d\x35\xd0\xf9\x15\x3e\x6c\x88\x8f\x03\x74\x56\xb6\xab\x8a\x03\x20\xd5\xda\xf4\x63\x34\x09\x73\x24\xf5\xc7\x9e\xc1\x52\xc4\x7c\xba\xbe\x7c\xec\xd5\xaa\xc2\xf3\x0b\x6f\x6d\xbd\x46\xe1\x13\x4f\x2e\xd0\x19\xe6\xdb\xbf\xfd\x0d\xe1\xf5\xef\xea\xef\x7f\x17\xaf\x7e\xf9\x4e\xa8\x4f\x8d\x52\xad\x13\x7b\x76\xd0\x0b\x60\x7b\xf9\xe9\x59\x01\xb9\xaa\xf8\x56\x29\x7b\x84\xd1\xad\x52\xac\xbe\xfa\xff\x03\x00\x00\xff\xff\x71\xfb\xbc\x8b\x69\xef\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\x6d\x72\x1c\x39\x92\x28\xf8\x3f\x4e\x81\xd2\x18\x4d\x55\x66\x54\x96\x55\xf7\x9b\xb7\x6b\x65\xc5\xea\x65\x51\xa5\x8f\x19\x4a\xe2\x88\x52\xf7\x9b\x95\xc9\xa2\x90\x11\xc8\x4c\x0c\x23\x81\xe8\x00\x82\xa9\xac\xb6\xbe\xc1\x1e\x60\xcf\xb7\x27\x59\xf3\x0f\x7c\x45\x44\x52\x52\xf7\xbc\x3f\x64\x06\xe0\x70\x00\x0e\xc0\xe1\xee\x70\x38\x64\xdf\xd7\xad\x72\x8d\xb8\x10\x97\xa2\x97\xda\x74\xca\x39\xe1\x54\xb7\x79\xb2\xb3\xce\xab\x56\x3c\xd7\x5e\x38\x35\xdc\xeb\x46\x55\xd5\xce\xee\x95\xb8\x10\x2f\xec\x5e\x55\xad\x74\xbb\xb5\x95\x43\x2b\x2e\xc4\xd3\xf0\xbb\x52\x9f\xfa\xce\x0e\x00\xf4\x2b\xfd\xaa\x76\xaa\xeb\xa1\x8c\xea\xfa\xca\xe9\xad\xa9\xb5\x11\x17\xe2\x56\x6f\x8d\x78\x69\x28\xc5\x8e\x3e\x24\xbd\x19\x3d\xa5\x8d\x7d\x48\x7a\xdf\x57\x83\xda\x6a\xe7\xd5\x20\x2e\xc4\x5b\xfe\x59\x1d\xd4\xda\x69\x0f\x35\xfd\x85\x7e\x55\xf7\x6a\x70\xda\x02\xf6\x3f\xd3\xaf\xaa\x97\x5b\x00\xb8\x91\x5b\x55\x79\xb5\xef\x3b\x89\x05\xde\xf1\xcf\xaa\x93\x66\x3b\x12\xcc\x35\xff\xac\x9a\x41\x49\xaf\x6a\xa3\x0e\xe2\x42\x5c\xe1\xc7\x6a\xb5\xaa\x46\xa7\x86\xba\x1f\xec\x46\x77\xaa\x96\xa6\xad\xf7\xd4\xcd\xf7\x4e\x0d\x82\xd3\x85\x34\xad\x80\x74\xec\x82\x6a\x6b\x6d\x6a\xe9\xb8\x1f\xaa\x15\xda\x08\xe9\x2a\x44\x65\xe4\x3e\x94\x86\x9f\x95\xda\x4b\xdd\x01\xd5\xe0\x7f\xd5\x4b\xe7\x0e\x16\x49\x7b\xc3\x3f\xab\x41\xd5\xfe\xd8\x2b\x24\xc1\x93\x77\xc7\x5e\x55\x8d\xec\x7d\xb3\x93\xd0\x4c\xfa\x55\x55\x83\xea\xad\xd3\xde\x0e\x47\x84\x0b\x1f\x95\x1d\xb6\xd2\xe8\xdf\xa5\x27\xfa\xbc\xc9\x3e\xab\xbd\x1e\x06\x0b\xa4\x7d\x85\x3f\x2a\xa3\x0e\x35\xe0\x11\x17\xe2\xb5\x3a\xe4\x58\x20\x67\xaf\xb7\x03\x51\x11\x32\x5f\xe1\x17\x60\xa1\x3c\xc6\x44\x59\x11\xdb\xc6\x0e\x77\x9c\xfa\x0c\x7e\x4e\x50\xda\x61\xcb\xb9\x65\xbb\xa4\x91\x5b\xc5\xb9\xaf\xf0\xa3\x00\x70\x95\x6c\xf7\xda\xd4\xbd\x34\x0a\x48\x77\x09\x5f\xe2\x06\xbe\x2a\xd9\x34\x76\x34\xbe\x76\xca\x7b\x6d\xb6\x30\x06\x97\x94\x24\x6e\x39\xa9\xca\xf2\x62\xda\xd1\x8e\x71\x94\xc5\x85\xf8\x4f\x3b\x0e\xe2\x86\x3e\x29\x2f\x2b\x84\x99\xb1\x64\x25\x1b\xaf\xef\xb5\xd7\x8a\x2a\x0b\x1f\x55\x3f\x76\x5d\x3d\xa8\xbf\x8e\xca\x79\xc8\xba\x19\xbb\x4e\xbc\xe5\xef\x4a\x3b\x37\x62\x89\x97\xf8\xa3\xaa\x1a\x69\x1a\xec\xce\x15\xfe\xa8\xaa\x0f\xda\x38\x2f\xbb\xee\x63\xc5\x3f\x00\x98\x7e\x11\x9d\xbc\xf6\xd8\x58\x4e\x14\xb7\x5e\xf5\x0e\x08\x2d\x9e\xe9\xc1\xf9\x27\x5e\xef\x95\x78\x3b\x9a\xaa\xb5\xcd\x9d\x1a\x6a\x58\x90\xb8\x94\x5e\x6e\xc4\xd1\x8e\x8f\x07\x25\x86\xd1\x18\x6d\xb6\xe2\xb9\xdd\x3a\xa1\x8d\xd3\xad\x12\x4f\x11\xfa\x5c\xf4\x9d\x92\x4e\x89\x41\xc9\x56\xfc\x24\x85\x97\xc3\x56\xf9\x8b\x47\xf5\xba\x93\xe6\xee\x91\xd8\x0d\x6a\x73\xf1\xe8\xcc\x3d\xfa\xf9\xf9\xa8\x5b\xd5\x69\xa3\xdc\x4f\xdf\xcb\x9f\x45\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\x3a\xde\xfe\xc7\xf5\xb9\xb8\xb1\xce\x6f\x07\x85\xbf\x6f\xff\xe3\x5a\x7b\xf5\xc7\x73\xf1\xea\xf6\xf6\x3f\xae\x85\x1d\xc4\x3b\xfd\xf4\x97\x55\xd5\xae\xeb\x40\x97\xa7\xd2\xcb\x35\x74\x21\x8e\x15\x64\xd2\x52\x8a\x79\xb8\xa0\x80\xe5\x21\x7b\x73\x1e\x17\x29\x2f\xd0\xc5\xe5\xd8\xae\x6b\x5e\xc3\x11\xc7\x6b\x58\xc8\xed\x3a\x11\xf8\x86\x48\x37\x3a\x25\x5e\xbe\x7e\xfd\xe6\xe9\x2f\x42\x99\xad\x36\x4a\x1c\xb4\xdf\x89\xd1\x6f\xfe\xcf\x7a\xab\x8c\x1a\x64\x57\x37\x1a\x68\x33\x38\xe5\xc5\xc6\x0e\xd4\xd3\x55\xe5\x5c\x57\xef\x6d\x0b\xb5\xdc\xde\x5e\x8b\x57\xb6\x55\x55\x2f\xfd\x0e\x1b\xe2\x77\x95\xfb\x6b\x07\xf4\x8a\x15\xbe\xdb\x29\x81\x53\x17\x81\xec\x26\x90\x47\xb4\xdc\xc6\x95\xf8\x69\x3d\xfc\x9c\xb5\x4b\xae\x9d\xed\x46\xcf\x25\x0e\x3b\x65\x70\x9c\x9c\x97\x83\x17\xd2\x05\xd6\xbf\xaa\xd4\x30\xd4\x6a\xdf\xfb\x23\x8c\x0e\xb7\x61\x8a\x9d\x90\x34\xd2\x18\xeb\xc5\x5a\x09\x84\x5f\x55\xc6\xd6\xb4\x52\x81\x6d\xb6\xda\xc9\x75\xa7\x6a\x62\xe9\x43\xe0\x48\xff\x09\x93\x83\x0a\x32\x84\x28\x20\x80\x62\xb0\x4d\x20\x77\x86\x99\x23\x8d\x40\xa4\x82\x97\x7a\xde\xc2\xc0\x17\xe2\xa8\x11\x6b\x88\x09\xb3\x16\x56\x61\x18\xc2\x9c\xb9\xec\xfb\x4e\x37\x54\xf5\x73\xca\x4b\xd3\x07\x36\x4d\x1e\xfb\x1c\x0e\x87\x3f\xe4\x65\x93\x60\xf4\x40\xd2\x41\x14\x3c\x18\xcb\xef\xd4\xa0\xc4\x6e\xdc\xd2\xc6\xd1\xd9\xb1\xfd\x06\x39\x78\xa0\x6f\xe2\x93\xe2\xad\xb5\x9e\xc6\x3c\x02\xa4\x2a\x2e\xbb\x0e\xf7\xe9\x41\xed\xad\x07\xc2\x71\x31\xe0\x45\x07\xdd\x75\xd0\x53\x27\xef\x55\x2b\xbc\xa5\xf5\xd6\xea\x41\x35\x80\x78\x55\x0d\xa3\xa9\x79\xb2\xbf\x1d\x0d\x4d\xf8\x90\x56\xce\x2c\x84\xda\x8f\xce\x8b\x9d\xbc\x57\x40\x78\x10\x16\xbc\x5d\x6c\x27\x76\x69\x18\x0d\x2e\xe1\x55\xd5\xda\xbd\xc4\x8d\xff\x29\xfe\xe0\xef\x1c\xbf\x76\x42\x6e\x36\xaa\xf1\x4e\xdc\xde\xbe\x10\x4d\x67\x8d\x12\xef\xdf\x5e\x3b\x58\x06\xbb\xba\xb7\x03\x0a\x09\xb7\x2f\xc4\x8d\x1d\x7c\x4c\xcb\x08\x0d\x10\x66\xdc\xaf\xd5\x20\x0e\x3b\xdd\xec\x88\xec\x50\x02\x66\xb1\x1a\x84\x76\x62\x74\xda\x6c\xcf\x45\xa7\xa0\x07\xda\xd3\x04\x80\x3e\x84\x59\x07\xe0\x1b\x25\xfd\x38\x28\xdc\xf4\xeb\xf5\xa8\x3b\xaf\x4d\x0d\x15\x32\x1e\x64\x0b\xe2\x17\xca\xc0\x12\xb7\x98\x71\x02\xbe\xee\x6d\x4f\xe2\x0c\xae\xaa\x75\x56\x8e\x11\xc2\x92\x87\x01\xb4\xbd\xa2\xf9\xee\xb8\x49\x30\xe1\x46\xed\x76\x62\x33\xd8\xbd\x70\x47\xe7\xd5\x1e\x0b\xb6\x52\xed\xad\x59\x55\x3b\xef\xfb\x40\x9b\x17\xef\xde\xdd\x10\x71\x62\xea\x43\xd4\x91\xd9\xdc\xc5\x59\xd2\x81\x60\x65\x04\xa0\x85\x69\x3c\x0e\xdd\x64\x86\xbf\x7f\x7b\x1d\x72\x4e\x8c\x1c\x34\xe1\x7b\xf8\x73\x9b\x06\x10\x67\x82\xb3\x7b\x75\xc0\xf9\xae\x8d\x40\x61\x67\x55\x75\x76\x5b\x0f\xd6\xfa\x30\xdd\xaf\xed\x96\xa6\x78\x91\x91\x6a\x7a\x1a\x26\x2d\x10\xe7\x30\x80\xf0\xd7\xd9\x2d\x32\x3c\xa0\xd7\xaa\x52\x06\x59\x4b\x63\x8d\xb3\x9d\x0a\x9c\xf3\x57\x4c\x15\x57\x94\x4a\x4c\x74\x01\x32\x8e\xd2\x4b\xe0\x2c\xad\xc6\x1e\x7b\x4b\xfc\x14\x00\xce\x85\xec\x9c\x15\xfd\xa0\x8d\x87\x8a\x71\x8c\x18\xc3\xaa\xaa\x6c\x0f\x25\x32\x1e\xf2\x86\x13\x12\xe3\xc0\x7e\xc7\x7c\x14\xf5\x70\xe6\xe8\x26\xdb\x9c\xdc\xde\xf7\x35\xef\x44\xb7\xaf\xde\xdd\xd0\x76\x84\xa9\x38\x09\x2e\xc4\xb3\xc1\xee\x53\x42\xa2\xcf\x2b\xc0\x87\x30\xb2\x6d\x07\xe5\xdc\xb9\x78\xfb\xec\x4a\xfc\xeb\x1f\xff\xf0\x87\x95\x78\xe9\x81\xed\x01\x27\xf8\x2f\x58\xc1\x92\x47\x21\x81\xda\x41\xf8\x9d\x12\x8f\x80\x8d\x3d\x12\x3f\x61\xee\xff\xa5\x3e\xc9\x7d\xdf\xa9\x55\x63\xf7\x3f\xc3\x2c\xdd\x4b\xbf\xaa\x20\x47\x0d\x81\x69\xdc\x2a\xd3\xaa\x81\x05\x57\xce\xca\x58\x2f\x67\x67\x62\x2c\xc9\xef\x40\xfb\x8d\x1e\xf6\x69\x80\x82\x64\x0f\x23\x05\x39\x41\x0a\xd4\x5d\x6d\xac\xd7\x9b\x63\x02\xc5\x9e\xbe\x86\x44\x9e\x9a\x15\xaf\x34\xde\xae\x22\x8d\x69\x5d\xe2\x0c\x7c\xe3\x77\x6a\x08\xe4\x76\x89\xde\x76\xb3\x01\xa1\x65\x32\x5b\xde\x50\x2a\xcd\x96\x1c\x24\x4e\x93\xa7\xcc\x30\xae\x9e\xbe\x16\xea\x5e\x19\x98\xd8\xfd\x60\xdb\xb1\xc1\x99\x13\x66\x4c\x27\x06\xe5\xec\x38\x34\x8a\x27\x6a\x64\xc8\xd0\x34\xe0\xfa\x8d\xec\xba\xe3\xaa\x0a\x1b\xe3\x76\x90\xf7\xd2\xcb\x21\xab\xe2\x79\x48\xe2\xd6\xcf\x60\x67\x8d\x8a\x25\xa0\xe7\xcd\xe8\x3c\x70\x0f\x6c\x85\xa3\x46\x51\xb6\x13\x72\x50\x62\xec\x3b\x2b\x5b\xd5\x8a\xf5\x11\x79\xbc\x83\xb9\xd0\xaa\x8d\x1c\x3b\xbf\xaa\x36\xaa\x05\xa6\xa4\xda\x9a\xeb\xea\xac\xbd\xc3\xca\x98\x54\xcf\x02\x80\xb8\x64\xa4\xd7\x08\x71\xaa\x64\x6c\x2c\x97\x8f\x60\xb1\x51\x5c\x83\xb7\x28\xa2\xa4\x7c\xdb\x2b\xc3\xdd\x08\x82\x89\x00\xb9\xa3\x15\xd6\x88\x4e\xaf\xb9\xd3\x89\x96\x13\x21\x23\x50\xe7\x16\xf4\xdb\x3c\x6f\xb1\xc0\x8c\xa8\x38\xe1\xdd\xb4\xec\xb9\xb0\xa6\x3b\xb2\x30\x02\x4b\x8c\x14\xc8\x20\x97\xb8\xc4\x96\xa2\xba\x16\x38\x12\x6b\x6d\x65\x7e\xac\xf6\x2d\x89\xbd\xe2\x5e\x76\xba\x05\x8c\x01\x01\xec\x16\xcb\x6d\x59\x55\x2c\x2b\xd7\xac\x69\xd7\xf7\x1a\xf5\xd8\xb8\xc4\x08\x25\x6b\xdf\x40\xe1\x3f\x03\x00\x28\xc8\x6e\xb1\x6c\x6c\xcd\x1b\xe8\xa4\x8b\x7a\x2c\xcd\x13\xe8\x2e\xd6\x00\xf2\xbb\x3b\x17\xf7\x1a\xc5\x00\x9e\xe4\x48\x97\x35\xc8\x98\x9d\x82\xaa\x9c\x52\x88\x41\x68\xf3\xfd\xd8\x53\x99\x15\x2b\x71\xac\x57\x05\xb9\x1f\xc4\xc1\xd6\x0a\x90\xd2\x50\xd6\x00\x4e\xcb\x64\x9d\xc8\x7d\x62\xd0\xdb\x9d\x17\xc6\x1e\xce\x89\x28\x87\x9d\x55\xb0\xe6\x5f\x3e\xbd\xf8\x81\xda\xb1\x05\xc9\x23\x16\x02\x99\x45\x8e\xde\x02\x7f\xe1\xa5\x47\x4d\x88\xb2\x1f\x42\xce\xd4\x45\x02\x9a\xea\xed\x33\x51\x33\x32\x3a\xe6\x6f\x79\x1e\x33\xb6\x04\x43\xa5\x83\xee\x4f\x15\x13\x23\x65\x5d\xaf\xde\x5a\xd4\x35\x83\x6e\x07\xc2\x54\xe5\x95\xf3\xf5\x56\xfb\x7a\x03\xdc\x16\x10\x3f\x03\x04\x20\xdb\x29\xe7\xc5\xe3\xad\xf6\x8f\x45\x63\xf7\x7b\x69\xda\x1f\xc5\xd9\x3d\xab\x09\x7f\x04\x36\x0a\x4b\x51\x77\x38\x22\xac\xc1\x0e\x8a\xb4\x81\x60\x3d\x69\xad\x72\x48\x78\x37\xf6\x28\x58\x44\x15\x8b\x35\xc1\xd6\x1e\x0c\x30\x0c\xdc\x2e\xec\x66\xa3\x1b\x2d\x3b\xb1\xd6\x46\x0e\xc7\x88\x05\xb7\xa1\x33\x77\x2e\x5e\xbf\x79\x87\x80\x5b\x0b\x72\x4f\x1b\x00\x56\x95\x36\x38\xb1\x41\x9d\xe0\xc1\xcf\x75\xa9\x90\xa4\xa9\x2d\x8d\x1d\x60\xef\xc7\xde\x84\x82\x27\x24\x65\x10\x1c\x48\x11\xd1\xa0\xcb\x22\x2c\x96\x8b\x42\x2d\x90\x61\x2f\x7d\xb3\x63\x91\x17\xa7\x8d\x76\xe6\xb1\xc7\x96\x36\xe3\x30\x28\xe3\x31\xf9\x47\x71\xe6\xc4\x93\x9f\xc5\x99\x8b\xd5\xe6\x3b\x31\xee\xcf\xb0\x1d\x8b\x8d\x56\x5d\x1b\x5a\x9b\xea\x04\xa9\x9b\x76\xba\xed\x7c\xb4\x20\x53\x50\xe6\x48\xeb\xb7\xe8\x5f\xb1\x30\xe2\xf4\x08\xd3\x3e\x23\x50\xde\xc9\x30\x6f\xdc\x48\x33\xfd\x42\xfc\x45\x75\x8d\xdd\xab\x6f\xc4\x5f\x14\xa8\xfa\xdb\x0e\x47\x4e\x7a\xd6\xc7\xad\x53\x38\xab\xce\x69\xa1\x6d\x46\x83\x7b\x86\x97\x77\x0a\x55\xf8\x34\x50\x4b\xe2\xda\x49\x62\x57\x1f\x76\x76\xaf\x3e\x56\x23\x29\x43\xb6\x6b\xa3\x3a\x8d\x4b\xc8\x0e\x24\x7f\x44\xdd\x3a\xc1\xc4\xd5\xe1\x0e\xda\x37\xbb\x3a\x1a\x1a\x81\x90\x5e\x7d\x42\xc1\x08\xb3\x92\xdd\x11\x96\x16\x64\x55\xfb\x23\xce\x0b\xe8\xf8\xab\x63\x9a\x16\x5a\xb9\xca\xed\xec\x01\xad\x76\x11\xe2\x76\x67\x0f\x68\xaf\x2b\x54\xa6\xd5\x6a\x55\x35\xb6\xeb\xe4\xda\xc2\xa8\xdc\x27\xf8\xab\x3c\xb5\x44\xbe\x3f\xd6\x76\xd8\x72\xb5\xa5\x95\x6a\x7f\x64\xc3\x18\xe7\x92\x61\xcc\x55\xc8\x5e\xd9\xa2\x8a\x5c\xf8\xcc\x55\x6c\x0f\x5a\x69\x53\xa3\xb9\x29\xd4\xfc\xd2\x90\x32\x93\xb7\xb3\xaa\x3e\xb0\xb5\xf5\x63\x15\xe0\x8a\x36\x11\x8f\x26\xa2\xbb\xc2\x04\xe8\x26\x36\x40\x57\x39\x25\x07\x5c\x10\xb7\xf8\xa3\xaa\x3e\xc8\xd1\xef\x3e\x66\xd6\xd0\x3a\xcc\xbc\x60\x15\x45\x8b\x1d\xb3\xc9\x24\xd6\xed\x54\x0f\x12\xe0\xde\xe1\x94\xed\x06\x25\xdb\x23\xeb\x8b\x71\xf2\xfe\x89\x36\x20\x6d\x80\x6d\x7f\x53\x39\x0b\x1c\xa4\xfe\x4a\x14\xbf\x68\xd3\x52\xf9\x72\xf3\x26\x33\xed\xbe\xc7\x69\x62\x87\xe1\x78\x5e\x5a\x12\x76\xd2\x89\xb5\x52\x26\x68\x7c\xed\x2a\xd8\x69\x60\x7a\xc9\x86\x98\x00\x9a\x96\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\xd1\xea\x3d\x19\x7a\xe9\x4b\xbc\x52\xd5\xc6\x0e\x5b\x5c\x7b\xb4\x38\x2e\xc4\x33\x4c\x48\xab\x05\x00\x94\xcf\xb7\x1b\x86\x08\x29\x7f\x0a\x86\xf5\xda\xd8\x03\x1a\x5c\x41\xe4\x9a\x0e\xca\xd8\x03\x51\x57\x61\xfb\x22\x49\x08\x85\x70\xa7\x8c\x4f\xa4\xbd\x14\x46\x1d\x44\x0e\xc5\x04\x88\xf4\x05\x78\x60\x73\x3f\xad\x7f\x3e\x73\x3f\x7d\xbf\xfe\x39\xee\x20\xcd\x4e\x35\x77\x34\xa1\xb5\x59\xdb\x4f\x68\xdd\x41\x53\xa0\x12\x06\x16\xf8\x59\x2b\x76\x76\x1c\x58\xc3\x02\x0d\xc4\x2b\xcc\x2d\x46\xb2\x1f\x2c\xf0\xb8\x15\x99\x5e\x15\xad\x98\x34\x4b\xd1\x06\x0b\xf3\x14\xb7\xb9\x30\x51\xfb\xc1\xee\xf4\x5a\x7b\x60\x67\x68\x90\xb8\xc6\xff\x37\x9c\xac\xda\x09\x44\x26\x91\x0c\x91\xf9\x6a\x27\xfa\x58\x00\x1a\x89\xa0\xa9\x7f\x3c\xca\x69\x84\x61\x64\x91\x7e\x9d\xde\x6b\x3f\x9b\xa0\xc0\x8a\x25\x4f\x74\x36\x15\x87\xb1\xc1\x3e\x24\xea\x0e\xaa\x51\xc6\x77\xc7\x38\xa3\x0e\x52\x7b\xf1\x47\xb1\xd7\x66\xf4\xa0\x06\xef\x94\x11\x7e\x38\x0a\x09\x52\xcf\xaa\xda\x49\x57\x8f\x86\x87\x49\xb5\x61\xca\xbe\xd0\xb8\x39\x43\xbd\x61\x61\x65\x50\xa5\x6a\x28\xbe\x8d\x23\xf8\xdd\x8a\x8d\xc6\x58\x0a\x36\x4c\x68\x8f\x06\x3d\x46\x2e\xcd\x05\x3b\x08\xa3\x88\x42\xd8\x7f\x00\x83\x69\x63\x8d\x4a\xc4\xea\x74\x73\x07\x02\x3c\x8c\xef\x7a\xf4\xde\x82\x96\xda\xc1\x1c\xa4\x32\xa1\xcd\x57\x08\x88\x36\x84\x84\xef\x48\xc3\x52\x52\xa9\xc2\x62\x00\xe1\x97\x0b\x7f\x3b\xa8\xef\x52\xf1\xb8\x64\xb0\x04\xa3\xa0\xd2\xd9\x6a\x7a\x8b\x99\x74\x22\x10\xd6\x5c\xd8\x1a\x1b\xb6\xd1\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\x07\x0a\xcd\x13\x9d\x32\xdb\xc2\x20\x8b\xa7\x7b\x38\x45\xfe\xe7\xaa\x32\xd6\xd4\xa8\x7d\x66\x6b\xe6\xb5\x35\x4f\x30\x2d\xaa\x2f\xa1\x34\x5b\xee\x43\x85\x80\x66\xb0\xe3\x76\xc7\xf6\xbd\xea\x03\x50\xed\x63\xc5\x43\xa1\x32\x9c\x3c\x51\x43\x4e\x18\x32\x5a\x8e\x11\x3e\x08\xc1\x7f\x56\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\xac\x59\x7d\xd8\xdb\x56\x76\x1f\xab\x23\x1e\xd6\xfc\xa7\x72\x95\xc1\x03\x32\x5b\xed\x6d\x4b\x85\x5e\xe1\x8f\xaa\xfa\xb0\xb1\xc3\xfe\x63\x05\xbb\xee\xeb\x89\xb6\x00\xdb\x33\xa7\x65\x12\x2b\x66\xfd\x9a\x1f\x00\xc6\x3e\xdf\x2c\x28\x16\x6f\x55\x3a\x07\xc4\x5f\xb1\xf3\xb7\xb7\x2f\xde\x05\xc3\xc7\xed\x0b\x71\xa7\x18\xf7\x0b\xef\x7b\xf7\x1e\xcd\x79\x64\x9b\x7b\xff\xf6\xba\xba\x91\x47\x90\xe2\x29\x99\x3f\x30\xe3\x9d\x92\x7b\x6e\x24\xfc\x24\x14\x97\xa3\xdf\x71\x22\xfc\xb4\x43\x6e\xc8\xae\x50\x34\xfd\xb5\x50\x63\x68\x15\x55\xaf\xd5\xe1\x97\x41\x9a\x26\x14\x06\x99\x61\x8d\x09\x54\xf2\xca\xee\xf7\xda\xdf\x8e\xfb\xbd\xc4\x33\x4b\xfa\x16\x8e\x12\x38\xfb\x95\x72\x8e\x4e\x69\x39\x7b\x4f\x09\x9c\x7d\xb5\xb3\xba\xc9\x72\x1b\xfc\xae\xde\x0d\x4a\x71\xad\xcf\xc2\x99\x48\x85\x72\x22\x09\x31\xf4\xab\x8a\x6a\xaf\xe2\xc3\xcb\xdf\x66\xe7\x03\xbf\x55\xb2\xeb\x77\x12\x25\xd1\x0c\x0c\x4d\xe1\x6b\x56\xd0\x05\x82\xe0\xc2\x1e\xf7\x6a\xd0\x0d\x1a\x51\xa4\xdb\x7d\xfb\xa4\xfe\x0e\xcf\x76\x64\xe3\xd5\xe0\x4a\x64\xad\xf5\xff\x18\x42\xf8\x4d\xab\xf2\x24\x5e\xd7\xfd\xc3\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\x01\xe0\xf7\x6f\xaf\x57\xbf\x55\xda\x34\xdd\xd8\x9e\x6c\x88\x1b\xd7\xce\x0f\xa0\x81\x3d\x3e\x73\x8f\x01\xa5\xb9\x33\xf6\x60\x22\xfc\x7b\xfa\x16\xf8\xfd\x63\x38\xac\xaf\xb5\x61\x5d\x36\x1d\xdb\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\xe4\x60\x50\x83\x1c\x56\x83\x2a\x67\x72\xdd\x0b\x36\xa2\x20\x6d\xa0\xa4\x86\x10\x2b\x3a\x59\x9a\x97\x9b\x70\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x66\x7e\xea\x75\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\xd1\x23\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\xd7\xf7\x8a\x2d\x2c\xd1\xb0\x84\x79\xab\xaa\x93\xce\x83\xd2\x4c\xbd\x22\x75\xc7\xde\xc3\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\x3e\x13\x52\x78\xa7\xfd\x11\xd4\xf7\x91\x2c\xb9\x94\x9d\x21\x42\x37\x06\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\x4f\x48\x7f\xd2\x7e\x55\x81\x92\x9e\x0c\x4b\xb0\x33\x2b\xe3\xc3\x71\x1d\xa5\x93\x39\xc6\x79\xdd\x75\x40\xe9\xe0\xda\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\xae\x3c\x27\x6a\x26\x55\x17\xab\xce\x37\x08\x1c\xbb\x6c\xa0\xca\xaa\xe9\x1c\x17\x8f\x2b\xb0\x0d\x48\xd5\x84\xc9\x85\x36\xc0\x34\x9b\x91\x00\x4f\x2e\x8b\x53\xf9\x45\x3a\x6c\x0a\xab\x0b\xd5\x8f\x33\xed\x33\xfd\xae\xc8\x55\xa6\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\x7f\x59\x6d\x6a\x3c\xdb\xf8\x37\xab\x0d\x1e\x84\x54\xc5\xf1\xff\xc4\x24\xc4\x4e\x4a\x47\xf4\x4b\x58\x77\xba\x09\x9e\x4a\xc7\x6a\x63\x71\x3d\xa1\xc5\xe8\x59\xf8\x5d\x39\x2f\x81\x4d\xf0\xe1\x35\xfc\x2a\x4c\x50\x54\x88\xec\x93\xcf\xc2\x6f\x4e\x8d\x49\xd5\x68\x62\xca\x7b\xfe\x59\x55\x20\x25\xaf\x90\xff\x82\x60\x8f\x67\x61\x19\xd7\x85\x4d\x15\xe6\x7f\xc8\x5b\x65\xf0\xbd\xf4\x5e\x0d\x86\xcc\xd9\xc4\x04\xf2\xa2\x9c\x1d\x51\xe0\xc2\x25\x30\xa0\x6d\xf0\xe0\xfa\x58\x25\x3f\xaf\xe0\xe2\xb5\x64\xc7\x8f\xe4\xa7\xd3\xad\x8a\x57\xb5\x63\x21\xfb\xdf\xd5\xd1\xb1\x05\x0b\x39\x06\xfe\x60\x63\x03\xba\x8a\x84\xd3\x73\x57\x1e\xa6\xa3\x41\x6e\x6e\x87\x5b\x34\xe4\xf1\x44\xbb\x10\x4f\xe9\x47\xb0\x65\x8c\x1a\x3b\xae\xdb\xaa\xea\x71\x34\x33\xd7\x35\x1e\xde\xd8\x33\xf6\x5c\xcc\xad\x19\xa5\x96\xaf\x9d\x20\x24\x28\x62\x84\x53\x4a\xdc\x50\x37\x76\x40\xb6\x19\x8f\x5c\x54\x87\xe7\x71\x26\x3b\x81\x75\xe7\x58\x0e\xc0\x0e\x6a\x1d\x8e\xe5\x92\x3f\xc3\x5e\xb6\x4a\xdc\x6b\x19\x4d\x5f\x99\xa0\x13\x77\xe2\x60\x2f\x2b\x34\x51\xd4\x71\xc8\x96\x19\xe4\x9c\x30\xea\xde\x06\xbd\xd4\xef\x94\xa6\x53\x31\x83\x32\xd0\x66\xec\xba\xb0\x51\x3e\x1b\xbb\x8e\xbc\x73\xe6\x3e\xa3\x50\x05\x9f\x0e\x5e\xf3\xcf\x6a\xec\x5b\xd0\x48\x13\x2d\xdf\x63\x42\xa4\x65\x99\x9f\x69\x9a\x48\xd5\x50\x2c\xda\xc1\x08\xbc\xcd\x54\xcf\xee\xb8\x0a\x8b\x7b\xc1\x17\x94\xd7\x79\x3b\x05\x49\x56\x23\x64\x5c\xdc\x71\x1c\x28\x72\xbf\x40\xd2\x1e\xe4\x51\xec\xec\x41\x74\xda\xdc\x39\x1e\x29\xa0\x53\xae\x75\xa3\x75\xcf\x6b\x33\x2a\xd6\x83\xe0\xe7\xdc\xf3\x90\x8f\x6b\xf9\xf0\x76\x7d\x0c\xb6\x14\x3a\xde\xe5\xf5\x20\xd6\x47\x81\xaa\xde\xe9\x73\xe2\xe9\x01\x71\x38\x1f\x0e\xe7\x9e\x78\x3c\x9d\xd8\xdc\x7b\xa7\xc4\x15\x1d\x59\xf3\x92\x6b\x76\xd6\x3a\x36\x42\x27\x66\x08\x69\x68\x4d\x62\x5e\xc8\xc3\x92\xf0\xd0\xa8\x5d\x86\xa3\x73\x5c\xf6\xbc\x96\x6a\x3e\xe4\x49\xd0\xbc\xb4\xae\xf8\xf0\xe7\x32\xe0\xa4\xa3\xf1\xd0\x27\x64\x39\xb5\xde\x93\x36\xfa\x3e\x1c\x9c\xe3\x80\x47\x2d\x02\xb3\x57\x65\x7b\xa6\xb3\x84\xeb\x0d\xa7\x38\x9f\x99\x2c\x61\x2a\xe4\x67\x89\x34\xfc\x91\x4d\xd9\xae\x90\xe1\x42\x3f\x62\x3e\x10\x2f\xcb\x7f\x8d\xa7\xbe\xd1\x68\x02\x6b\xac\x9e\x80\xb0\x9d\xa1\x80\x5c\x14\x95\x43\x5d\x27\xc5\xe4\x49\xeb\x67\x2b\x26\x94\x3b\x48\x57\x74\x9c\xe7\x78\xbb\x0a\xee\x81\xc2\xd8\x03\x1d\x21\xa3\x1f\x17\xf9\xb2\x19\x3c\x7f\x26\x14\x19\x53\xe1\x4a\xff\x59\x96\x92\x30\x93\x9e\xe1\xa2\x7a\x71\x49\x8c\x53\xb9\xe0\xa9\x1c\xf3\xd9\x59\xb9\xe0\xaf\x2a\xb8\xff\xe4\x1c\xb8\x1f\x34\xda\x3d\x4a\x4e\x3c\xe3\xbd\x05\x9f\x45\x36\x6b\xd1\x99\x25\xb1\xd7\x55\x15\x50\xc1\x66\x86\xbf\x42\x4a\xb4\xac\xdd\x2a\xf4\xe8\xe4\xe4\xb0\x10\x42\x2e\xcd\xff\xd8\xc6\x4e\x31\x57\xa4\xbe\x3e\xe5\x84\x49\x7e\xe8\x0c\x65\x87\x01\x59\xe8\xcd\x00\xa2\xbd\x8a\x1b\x87\x36\xe4\x4b\x14\x4f\x8a\x0b\xee\x24\x9e\x22\xbb\x12\x07\x49\x07\x08\x81\x59\xfd\x69\x5a\x7b\x9a\x47\xbf\x96\x47\x0f\xd4\xb7\x72\x15\x7d\x53\xc9\xb6\xc5\x39\x9e\xce\xdb\x5b\x9c\x3c\xa5\x99\x11\xa0\x72\x08\x32\x64\xc5\xd4\xba\x38\x18\x71\x64\x4b\xfa\xf2\xc3\x10\x10\x4a\xfe\x1b\xce\x41\x8a\xaa\xd2\x39\x48\x6c\xe4\x64\x85\xcd\x7a\x39\x5f\x6a\xb2\x6d\x51\x3e\xe2\xb9\x9c\x49\x39\x3c\x9b\xa3\xb0\x03\xb5\x90\x5a\x03\xe4\xf9\x77\x75\x44\x91\x88\x67\x02\x6e\x4d\xda\x09\x89\xde\x84\xe8\x82\x4c\x3a\x8e\x03\xe5\x06\xa4\x23\x18\x17\xf4\x7f\x2e\xc7\xfc\x12\x95\x38\xa7\x18\x16\xc5\x45\x69\x8e\x20\xfe\x87\xb5\xae\xf6\x40\x07\xf2\xe6\x88\xbe\xa7\xb3\x63\xd1\x73\xd6\x9c\x76\x7a\xbb\xeb\x8e\x42\xef\x7b\x3b\x78\x9c\x49\xe1\xd0\x3b\x29\xb6\xf0\x35\xa8\xc6\x6e\x8d\xfe\x1d\x09\xbb\x27\x67\xd3\x68\x81\xff\xc9\xf9\xc1\x9a\xed\xcf\x4f\x2d\x68\x9c\x77\xc0\x7e\x76\xf6\xf0\xa7\x9f\xbe\xe7\x74\x71\x85\x43\x68\x47\x2f\x9e\x6b\xff\x62\x5c\x3f\x76\x62\x3b\xea\x16\xb7\xdc\x9f\x64\xe6\x1d\xcf\xee\x2b\xe4\x09\x7c\x30\x91\x2c\xe8\x2b\x6f\x07\xe1\x6c\x77\xaf\x26\x45\xec\x7e\x4f\xc3\xbb\xee\xd4\x9e\x20\xb1\xfd\xe8\xf1\xa2\x0c\x52\x4e\x0d\x4c\x9f\xdb\xdb\x17\xab\x38\xc5\xd3\xf8\xf0\xb0\x05\xb1\xb5\x30\x93\xb0\x8c\x08\xc0\x0d\xdb\x45\xd3\x46\x84\x36\x92\x50\x0a\xe5\x8f\x79\x29\x1c\x47\x07\x32\xcb\xcc\x40\x83\xba\x0c\xa0\x08\xc5\xc5\x05\xb4\x83\xe4\x30\x48\x6b\x66\x96\x58\x9e\x58\xd9\xe4\x85\xbd\x27\x58\xb2\x51\x9c\x8f\xcd\xc3\xe9\x3a\x59\xdf\xcc\xd1\xa8\xef\xcc\xcf\x42\x07\x32\x8e\xc6\x14\x49\x3c\x6d\x0a\x53\x70\x35\x45\x3c\x2d\xb4\x22\xe7\x66\xe4\xdc\x47\x1c\x8d\x26\xa4\x72\xc8\xaf\xbf\x90\x9b\xcd\xea\x4d\x1d\x0f\xd5\x7d\x01\x47\xc3\x3e\x5d\x22\x39\xac\x21\xa3\x0a\x0f\xd4\x35\x9b\x50\x30\xc3\xd8\x3a\x53\xfe\x5e\x5b\x3e\x49\x14\x21\x11\xc7\xc4\x79\x90\x58\xf2\xa5\x0c\x8d\x40\xb7\x69\x72\xfb\x42\xab\xcc\xff\x21\x5a\x79\x74\x95\xb7\x77\xca\x2c\x14\xc1\xf4\x53\x85\x22\x7f\x09\x1a\x13\x73\x97\xcb\xc4\x1c\xa6\x3a\x14\xbb\x07\x9c\x64\x30\x19\x5f\x61\xac\xd1\xf5\x8e\x4c\x4a\x78\xdf\x44\xac\xb5\x69\x89\x8f\x30\x1b\x60\xff\xb2\xb8\xfe\x57\xd5\x68\x00\x08\xb5\x54\xf8\xc1\xdf\xf9\xb0\x14\xf8\xb3\xc5\x62\xd6\x76\x34\x19\xfb\xa4\xe9\x50\x13\x29\x62\x27\x6f\xd4\xe0\xd0\x23\xf8\x92\x10\xbe\x83\x6c\xc7\x97\x0f\xd8\xcb\x22\x14\x79\xce\x89\xb8\x06\x10\x90\x08\xee\x22\x21\xf0\x2b\x59\x43\x02\x16\xf6\xee\x61\x67\x5f\x1c\x03\x6f\x23\xc3\xdc\x91\xb7\x8f\xb8\xbc\x79\xe9\x56\x55\xac\x30\x20\xfd\x55\x36\x3b\x1e\xc0\x03\x99\x42\xd0\x27\xa8\xeb\xa6\x1c\x37\x6a\x12\x54\x9c\x17\x38\xb6\x89\x96\x78\xec\xd4\xac\x43\xd4\x99\x32\x9f\x68\xac\x5c\x66\x1e\xa2\xda\xb0\x25\xd3\xbd\x2a\x76\xf5\x1b\xf1\x2a\x19\x29\x61\x69\xf5\x47\xe0\xfe\x99\x4b\xa0\x24\x0a\x1d\x90\x7f\x4f\x7c\x11\xb5\xa7\x53\x72\x01\x4b\x78\x88\xfc\x23\x34\x98\x39\x48\x3e\x94\x39\x1b\x59\x1c\xcc\xc4\x54\x16\x8b\x2d\x71\x96\x3e\xe0\x29\xfb\xfc\x39\x3e\x03\x13\x3f\x59\x13\x1e\xe0\x32\x79\xaf\xb2\xa9\x7c\xb3\x58\x6d\x9c\xd1\x54\xf5\x84\xdf\x08\xda\x06\xc9\xd3\x04\xdd\x73\x49\xc5\xa2\x19\x91\x5d\x14\x90\x4e\x1c\x54\xd7\xad\x2a\x34\x72\xac\x0c\xec\xe2\xe4\xd4\x19\xc5\x6d\xb6\xd2\x61\x3f\xcc\xb1\x30\xc3\xb9\x15\x15\x43\xe3\x5e\x74\xcb\xbc\x66\x53\x5f\x76\x43\x30\x83\xca\xfc\x46\xe9\x2e\x83\x75\xf9\x0d\x15\x22\x61\x66\x17\x43\x1f\x37\x25\xf7\x4e\xc8\x0d\xec\xa1\x40\xbb\x4e\x6d\xd8\x7e\x9e\x1b\x86\x4f\x53\x96\x8c\x35\xd4\x80\xd0\xc0\x3c\x6d\xd2\xf4\x64\x3e\x2d\x80\x3e\xd3\xf2\xc9\x79\x41\xd9\xda\x07\x1a\x97\x57\x51\x48\x83\xb4\xa6\xb1\xaf\x19\x5e\xdc\x5d\xcb\xcd\x25\xcc\x9c\x74\x92\xcf\xd3\xb6\xf0\xa7\x61\xa0\xcc\x36\xa1\x92\x5e\x42\x3d\xca\x6d\xb3\x01\x59\xaf\x86\xbd\x34\xe8\xca\x42\x86\xa3\x20\x69\x5d\x5d\xbe\x7e\xfd\xe6\x5d\x12\xb0\x80\x87\x99\xd6\x1a\xf5\x4d\xf4\xa8\x9d\xb5\x2b\xf8\xd5\xc6\xc5\x57\x42\x24\xcf\x5e\x2e\x71\x0a\x2e\xdf\x62\x32\x57\x9f\xad\xc5\x7d\xc3\x42\x5b\xc2\x3e\x5c\xb4\xbf\x3d\x39\x43\x3e\x00\x89\x3f\x56\xe1\x84\xe3\x0d\xfc\xaf\xf2\x43\xa2\xec\x70\x0d\xd9\x66\x3a\x83\x4b\xb7\xbb\xc4\xd6\xda\x76\x76\x68\x84\x1b\xec\x28\x51\x4d\xb6\xfb\xde\xe2\x3e\xbf\x11\xe8\x04\x72\x0e\xab\xcb\x0e\xc8\xec\x80\xb8\xa3\xd1\x7f\x1d\x51\xb4\x46\xdf\x8d\x55\x75\xaf\x9d\x5e\xeb\x8e\x84\x81\x3f\xc7\x0f\x4a\x87\x5f\x93\xfb\x3d\x59\xe5\xda\x89\x9f\x5c\x2f\x8d\x68\x3a\xe9\xdc\xc5\xa3\x51\x8b\x01\xf6\x18\xf5\xc9\x3f\xfa\xf9\x66\x40\x6f\x8e\x9f\xbe\x07\x88\x9f\x67\xe8\xea\x8d\x1d\x1a\xb2\x26\x47\xd7\x28\xe4\x39\x9c\x0e\xcb\x14\x74\x95\x62\xa9\x12\xe1\xff\x81\x3a\x37\x76\xb8\x4b\xfd\xf8\x96\x2d\x26\x76\x43\x7c\xf7\x5e\x76\x63\x69\x3e\x83\xda\xa1\x8c\xfb\xae\xc2\xcb\x4b\xa9\x2c\xba\xca\xe1\x45\x76\xc8\xd0\x66\xfb\x27\x24\x9a\x7f\xf8\x42\xec\x0b\xd5\xf5\x20\xb4\x7f\x53\x61\x4b\xf8\xd4\x61\x7a\x03\x1a\xf3\xc2\xcd\x1e\xc8\xc3\xeb\x3d\x98\xba\x30\x1a\xd9\x3d\x49\xd9\x79\x3a\x71\x10\xd9\x68\x02\x3b\xc5\x4e\xe4\x96\xfa\x23\x9f\xed\xc6\xdd\xc7\x35\x83\xc6\xdb\x49\x94\xde\x49\x34\xe0\xc7\x2b\xf0\x98\xb8\xd5\x5e\x6f\x8d\x1d\x32\x32\xdc\xaa\x0e\xe8\xb4\x8a\x59\x22\x5c\xaa\x77\x55\xa7\x1b\x65\x1c\x72\x3b\xfa\x15\x52\x66\xc5\x41\x72\x23\x58\xb4\xa6\x82\xba\xc0\x4b\x01\x7e\xf0\xf7\x42\x29\x06\x0c\x55\x56\x72\xf4\xb6\xd6\x46\x7b\xf4\x8f\xd5\x5e\xcb\x8e\xb4\xb8\x72\xbe\x92\x8e\x82\x48\xd8\x52\x17\xb8\x3f\xe3\x61\x17\x57\x1e\x1e\xf6\x6d\xcd\x06\x88\x6f\xc2\xf0\x39\x0e\xd2\x0f\x13\x04\x39\xb6\xf0\xfd\xf9\xba\x1f\x46\x43\x67\x09\xa3\x51\x45\x62\xa0\x7b\x26\x8c\xd2\x4d\xcd\x27\x7e\x90\xcd\x1d\x30\x97\x41\x6d\xd4\xa0\x4c\x83\x1e\x7c\x12\x64\x17\xd1\x59\xb3\x55\x03\xe9\x51\xc1\x3d\x8e\x8a\x05\xe4\x1a\xb4\xbf\x7b\x92\xa2\xe9\xe6\xfd\xcb\x90\xf2\xed\xce\x8e\xc3\x77\x01\x30\x28\xfd\x11\x8e\x4d\x57\x93\xfc\xd0\x4e\x3e\xff\x65\x07\x08\x61\x14\x6c\x0a\x72\xa0\xcb\x41\xa2\x19\x54\xab\x0c\x50\xdb\x09\xb6\x55\x04\xbf\x8a\x80\x0f\x95\x10\x77\x34\x4d\x52\x43\x6e\xf1\xab\x3a\x48\xdf\xec\xe8\x8c\xe9\x2f\xfc\x13\x8f\x98\xb6\xf2\x77\x4a\xbd\x8d\x1f\xb8\x04\x1c\x2f\x0a\xc7\xe7\x45\x83\x92\xcd\x8e\x9d\x28\xed\xa6\xa6\xdb\xc0\x28\x8e\xbd\x8b\xe7\xde\xc0\x4f\x10\x4e\xb5\x62\x2f\x3f\xe9\xfd\xb8\x17\x11\x10\x8b\xc2\x2a\x39\x2b\x4f\xb2\x56\xcb\xe7\x51\x53\xdf\x87\xaf\x3f\x96\x9a\x62\x78\xf8\x74\xca\x28\xd5\xd6\x72\x44\xff\x7a\x64\x3a\x85\xb3\x55\xc5\xc1\x17\xc2\xed\xf5\x18\x7d\x81\xae\xaf\xe7\xb9\xa7\xf9\x77\xb0\x2e\xca\x92\xa5\xa2\x63\xfd\xba\x1b\xd5\xa3\x9f\x69\x14\x03\x3f\x0d\x58\x79\x7d\xbc\xe2\xf8\x0f\xd9\x02\x61\x88\x15\x31\xcd\x34\xd9\xae\xf0\x06\x68\x9a\x6b\x0b\x50\xc5\x96\xcb\x2a\x8b\xcc\x6e\x91\x7e\xff\xfc\xe5\x3b\xf4\xc7\x79\xa0\x78\x4d\x26\x1e\xf2\x65\x24\x16\xf9\x78\x50\x74\x59\x33\xb3\xea\x86\xc0\x15\x32\x27\xc6\xfa\x48\x17\xf0\xc2\x45\xdc\x5e\xfa\x5d\xaa\x0b\x36\x79\xed\x1c\x09\xee\x46\xe3\x78\x16\x42\x6c\xc2\x4e\x6d\x60\x64\xe5\xc4\x0a\xd8\xd2\x3d\x8a\x46\x76\xe1\x12\xc5\x4b\x4a\xe4\x82\x90\x88\xf6\xab\xf2\x48\x38\xb8\x8b\xca\xfc\xde\x76\x40\x1b\x4f\xff\xd3\x6c\xc8\x0f\xfe\x79\x49\xf2\x06\xc3\x11\x3a\xec\xa6\xa2\x3d\x22\xa4\xf3\x8e\x01\x5f\x15\x68\x51\x75\xa7\xcd\x1d\x4a\x56\xfd\x31\x25\x64\x82\xe4\x95\xed\xb5\x6a\xbf\xc9\xf2\x82\xdf\xd3\x0d\x8e\xfe\xff\xf7\xff\xfc\xbf\x4f\xae\xa0\xdd\x57\x7e\xe8\x9e\x5c\x05\xed\x0c\xe0\x89\x8e\x84\x40\xbc\xf9\xf7\x6a\x34\x07\x76\x72\x7a\x4f\xbf\xaa\xf0\x8d\x2c\xa2\x1a\x8d\xe3\x03\x1d\xfc\x51\xf1\x17\x70\x8a\x8a\x23\x8b\x00\x8b\xa8\x2a\x13\x77\xb8\xd7\xb6\xd8\xe4\xfe\x3a\xea\xe6\xae\x26\xbb\xdc\x85\xf8\x0f\xf8\x12\x18\xad\x82\xf7\x79\xd8\x32\x22\xff\xc7\x49\x3b\xd9\x44\xf2\x6b\x10\xb8\x39\xf2\xed\xaa\xb4\x5f\xc8\x52\x6e\x39\x06\x8e\x1d\x00\x3b\x6d\x54\xd5\x8f\x6e\x47\x3e\x00\xa1\xb6\x9b\xd1\xed\xf0\x2e\xee\x27\xba\xeb\x9d\x63\xc0\xa1\x99\xe1\x58\xcb\x41\xd5\xfb\xe8\x10\x39\x5d\xdd\x71\xe2\xb0\x5b\x77\xb2\xec\x1d\x95\x5f\x55\x15\xed\x7f\xe4\x11\xe9\xaa\xb8\xa5\xf1\x56\xe6\x07\x85\x48\x07\xa5\x00\xd2\xab\x21\x78\x2f\x48\xd3\xd6\x5e\x6e\xa9\x24\xc8\x1d\x5c\xd4\x0e\xc2\xcb\x2d\x23\x42\xcc\xbf\xf0\xcf\xca\x4b\x3c\xdf\x7e\x27\xb7\xf3\x30\x27\xfd\xd8\x75\xf3\x60\x28\x9d\x5c\x2b\x4c\xbe\xc6\x1f\xd5\x1e\x1a\xe9\xad\x51\xb4\x75\x85\x8f\xaa\x41\x3f\x4f\x17\x3d\x3e\x5d\xb5\xd5\x61\x7f\x2e\xdb\xc0\x97\xdb\xe8\x44\x9d\x7e\x22\x09\xea\x41\x1e\x20\x4d\x1e\xe8\x73\xa7\x1d\x07\xcd\x79\x41\xbf\x28\x19\xaf\xe8\x10\x28\xde\xd0\x89\xf0\x28\xfe\xf3\x1a\xb9\x09\xbf\x29\xcb\x5b\x10\xa8\x86\x34\x3a\xe1\x70\xd0\x5b\x2b\x28\x83\x24\x5a\xb7\xb3\x07\x53\xdd\xeb\x56\x59\xdc\x33\xf8\xbe\x1d\x85\x0d\x5a\x0f\xf6\xe0\x82\xc4\x07\xd4\xa6\x4f\x18\x5e\x50\xc1\xc3\xdd\xbc\x17\xef\x5e\x5d\xff\xab\x40\x1c\x30\x0e\xab\x2a\x8e\xc4\xca\xde\xab\x81\x6f\x7f\xbe\xe1\x9f\x29\x93\x6f\x4c\x64\x24\x43\x3f\x10\x95\x28\x17\x41\x9d\x97\x5d\x01\x79\x0b\x09\x0b\x80\x14\x9a\xe6\xb2\xeb\x16\xf2\xf8\x58\xb3\x5e\x1f\xe3\xc1\x6c\x2b\xce\x3e\xfc\xf0\xd1\x01\x0b\x3e\xfb\xf0\x87\x8f\x19\x70\x38\xb9\x9b\xca\x5d\x2c\xc0\x4f\xc4\xaf\x4a\xb5\x30\xf5\x57\x18\x68\x88\xce\xeb\x5f\xab\x03\xc9\x96\x9c\x45\xa7\xb8\x75\x3c\xcd\x47\x57\xe7\x1c\x00\xfe\x85\xec\x5f\x5b\xed\x8b\xcc\x7e\x50\x38\x0f\xa8\x59\x8e\x58\x1c\x52\x96\x1a\xe4\x02\x20\xc9\xe5\x35\x22\x33\xd6\xd4\xb0\xa5\xd6\x61\xc1\x5d\x91\xd0\x0e\x99\xc2\x58\xf3\x04\xf7\x5b\xcc\x2c\x1a\x81\xac\x28\x6f\x89\x0f\x53\x28\x80\xed\x47\xe7\xeb\xb5\xaa\xad\xa9\x65\xa2\xcd\x7f\x06\xa7\xa4\x35\x7a\xad\xcb\xb0\x3e\x61\xe3\x93\x77\xe4\xc5\x38\x58\xd0\x12\x45\xe8\x47\x88\x05\x92\x23\x47\xb5\x83\xe2\xf5\x60\x3f\x72\xcc\xc8\x6b\xa7\xd2\x35\xc7\xf6\x01\xd8\xe0\xb9\x97\xe3\x0b\xc6\xa7\xac\x57\xb9\xed\x6b\xd6\x2f\xe0\x5a\x35\x86\x76\x60\x13\x6a\xde\x00\x64\x69\x14\xf7\x21\xd9\x47\xbe\xaa\x77\xe4\x01\x83\x4d\x4a\x5b\x19\x3a\x87\x97\xa7\x0b\xcb\xd6\xf6\x30\xd1\x40\xd8\xc3\xbb\x46\x61\xba\xb1\xa3\xe5\x80\x95\xad\x56\xab\xbc\xbe\xa8\xcb\xa3\x79\x14\x44\xe5\xb4\x89\x9f\x53\x2c\x06\x94\xe6\xb4\x47\xad\xa4\xc7\xdd\xf3\xfb\x15\xc0\x06\xf3\x5f\x5e\x60\x6b\x83\x51\x68\xad\xb6\x9a\xa2\x36\xa1\x46\xab\xf8\x0a\x6a\x42\xb2\x96\xcd\x9d\xeb\x25\x06\xef\xa1\xf6\xe0\xfe\x6c\x87\x6c\xbe\x36\xaa\xab\xd1\xd3\x4b\x5c\x08\xfa\x8c\x99\xc8\x59\xb3\x49\xcf\xce\xf5\x93\x39\x2f\xdb\xb6\xf6\xfb\x3e\x1c\x96\x3e\x3e\x73\xdf\xff\x14\xba\xfd\xf3\xe3\x0c\x2a\x01\x3c\x4e\xcb\xb2\xa5\x48\x62\xec\xa9\x91\xe7\x4d\x5d\x9e\xf2\x3c\x6e\x1a\x6f\x82\x31\x7e\x5d\x8b\x37\xa6\x42\x18\x0e\xa1\x3e\x79\x65\x5a\xd5\x8a\x36\x49\x02\xd9\xd8\x30\x12\x22\x6d\x77\xac\xbd\xa5\x59\x9a\xb8\x0d\xf5\x37\x00\x04\xb2\xb3\x9d\x2a\x88\xcd\x04\xfe\x04\xba\xfb\x08\x2f\x49\x45\xbb\x15\x66\xa4\xea\x92\x00\x91\x6a\x08\xa2\x43\xb0\x7d\x99\x78\x39\x22\xe1\xd9\x60\x5c\x0e\xf4\xb1\xc5\xf6\x60\x30\x15\x8a\xce\x24\x60\x17\x0d\xf7\xc5\x56\x39\x1f\x0c\x2e\x87\xe8\x53\xc5\x22\x51\x79\xf1\x22\xa7\xc4\xc4\xef\x67\x3a\x79\x99\xad\xad\x15\x45\x57\xe2\x15\x83\xca\xcc\x2c\x90\x12\x97\x0d\x42\x03\x9d\x05\x92\xc8\x93\xf6\x65\x5a\x6c\xc5\x41\xa1\x8b\x91\xc0\x72\xa3\x45\x98\x0b\x61\xfa\xd7\xda\xd5\x32\x72\x47\xe3\x83\xdd\x92\xd5\xd0\x5e\xb2\x1b\x0a\x5d\x47\x96\xb4\xf3\x4e\x04\xe7\x87\x2a\x42\xfe\x80\x75\xb8\xe3\x9e\x77\xf7\x18\x52\x2b\x28\x6c\x52\x84\xcc\x70\xce\xc2\x24\xc0\x8b\x40\x9a\xa5\x68\xf2\xc5\x52\x6b\xc1\xa8\x67\x54\xc5\x6a\x52\xab\x52\x45\x85\x9e\x99\x8b\x86\x5f\xde\x05\xe6\xc6\xb5\xb1\x35\x59\x11\xd2\x08\x94\xdd\x39\xb2\x32\x13\xd8\xf7\xc4\xec\x10\x15\xfc\x53\x15\xb1\x7f\x4e\x7d\xd8\x65\xd5\x06\x96\x3a\x3b\x52\x66\x68\xe1\xb4\x69\x54\x0a\x33\xa6\xda\x50\xff\xea\x61\x7b\x5a\xba\x0e\x87\x47\xe1\x7c\x8a\x73\x80\x51\xc0\xad\xa1\xa8\xc4\x0e\x71\x59\x11\x3b\x0c\xeb\x67\x2b\xb5\x49\xcb\xcb\x5b\x74\x74\xa6\x5d\xc5\xef\xb2\x1d\xa4\xec\xe9\x6c\x2a\x5f\x12\x19\xd1\xba\x94\x86\xec\xcb\x27\xb5\xb1\x81\xb7\x02\xeb\x01\x59\x90\x46\x07\x34\x57\x54\x2f\xf3\x9d\x0c\xb2\x53\x7b\x30\x88\x90\xad\xd9\xbf\x8c\x97\xc3\x33\x52\x03\xe3\xa1\xcc\xf7\xec\x70\x90\x06\x1b\x9b\x4a\xb7\x51\x40\x33\xcc\x18\xb8\x1b\xd7\xad\x1e\x98\x87\xd2\x07\x6b\x99\x89\x4b\xb0\x6b\x3b\xd6\x1b\xa5\x29\x37\xa9\x38\x0a\x56\x2e\xf8\xba\x9c\xa8\x35\xc7\x01\x38\xa9\xfa\xf7\x0b\x08\xaa\x20\xed\x07\x8e\x9d\x44\x75\xe6\xd0\x41\x62\x2f\xe1\x72\xed\x20\xe4\x4c\x2e\xb9\xf3\x94\x48\xf9\x1b\x3a\xfd\x7d\xa6\x4d\x1b\xd3\x24\x1a\x60\xe2\xb5\xb7\x98\x9e\x54\x30\xbe\x9d\x16\x73\x78\x53\x7b\x8a\xb6\x45\x4e\x0b\xb1\x0d\xde\xc0\xff\x98\x6a\xd4\x81\xcd\xcb\x07\x35\xc4\xbb\xff\x14\x79\x14\xf8\x35\x2a\x4b\x59\xf2\x6a\xaa\x20\x65\x59\xb0\xd6\x21\x91\xb4\x5f\xcc\xcf\xb3\x9b\x4e\xc9\xa1\x8e\xe5\xaf\xe0\x53\x74\x33\x2c\x51\xe3\xca\x15\xae\x49\x35\x39\xcc\x6b\xbb\x0c\x46\xd5\xe5\x90\x54\xe3\x7e\x09\xd8\xf6\xca\x14\xb0\x6f\x7a\x65\x72\x7d\xaf\x40\x6c\x9d\x6a\x27\x98\xf1\xec\x63\x19\x5e\x3a\x8c\x59\x83\xa7\x3f\xfc\x73\xde\xce\x0c\x88\x9a\x29\x17\x40\x8d\xcd\xe1\x5e\xdb\x19\x10\x2f\xb8\xb8\xaf\x4f\x47\x2f\x8d\x8f\x3a\xcc\x06\x88\x32\xeb\xbe\x93\x8d\x8a\x91\x30\x10\x28\x6e\xd7\x45\x35\x11\x19\x57\x56\xe0\x23\x5c\xd1\x36\xbf\x8a\xe7\x90\xb0\xba\x24\x88\x87\xad\xda\xe0\x75\x01\xa7\xd0\x18\x5a\x4e\x84\x69\x71\x6d\x36\x36\x67\x4e\x78\xf9\xc6\x1c\xb9\x14\x1a\x16\xa2\x83\x66\x71\x9b\xfb\x51\xec\xe9\xa3\x70\xb3\x5b\xae\x6d\x11\xce\x87\xae\x77\x50\x28\xca\x69\xc3\xf8\x16\xf8\x89\x56\x2d\x1c\x2b\x20\x49\x9c\xf2\xa7\x8a\x8c\x8e\xfd\xac\x89\x2b\x7f\x16\x3e\x70\xda\x5c\x7b\x4c\xec\x0e\x79\x15\xe1\x88\xb1\x85\x23\xb7\xa5\x60\x2c\x84\x16\xe7\xb7\x97\x6b\x71\x21\xce\x5a\x9c\xdc\x71\x2c\x61\xea\xa6\x2c\x9a\xc9\x21\x93\x0d\x30\x61\xa0\x8b\x11\xce\xf3\x60\x9b\xa7\xf3\x0d\x9a\x97\xf1\xac\xa3\x5b\x28\xf1\xe0\x02\x9f\xc2\x9c\xc4\x3c\x5b\xc6\x5c\xf2\x81\xd5\x96\x20\xb6\xda\xa8\xd3\xa8\x4f\x94\x63\x8b\x37\xda\xb9\xe7\x39\x2b\xd9\x75\x75\xb4\x31\x5d\x76\x9d\xa0\x8f\x45\x50\xc7\xc1\x99\xbd\x05\x2d\x2e\x35\xb5\x65\xe7\x96\xa5\x42\x34\x5b\xdb\x7a\x7d\xe4\x32\xb4\xec\x30\x64\xda\x89\x22\x7b\x65\x40\xe5\x00\x39\x8c\x8a\xbc\x8a\x09\x0b\x45\x1c\x87\xb7\xb4\x83\x5f\xc8\x59\xe1\x7c\xf4\xbc\x55\xb8\x45\x10\x60\x1a\x08\xf2\x06\x7f\x2c\x81\x90\xcb\x57\x54\xbb\xde\x72\x2c\x89\xe0\x74\xbe\x58\xb1\x92\x2e\x95\xb8\xc6\x2b\x59\xc3\x17\x94\xdb\x5b\xe7\x61\x9b\x23\x0f\xbf\x57\x16\x6f\xce\xe2\xe7\x03\xf5\xa4\x02\x54\xd1\xac\x04\xac\xa4\x60\x45\xa2\xdf\xc9\x88\x94\x5c\x27\x3f\xfc\xe1\xa3\x7b\xf4\xf3\xd9\x87\x3f\x7e\x44\x9f\xc9\x59\xe1\x7a\x23\xef\xd4\x02\x06\x32\x43\x31\x34\x5a\x7d\xec\x18\xcd\x3d\x76\xcc\xf6\x95\x4f\x34\x14\x9f\x7c\xb9\xc4\x63\xe0\xc7\xc9\x0a\x6f\x63\x56\xb9\xc2\xcd\xb8\xaf\xb9\x8f\x8e\x38\x40\xf8\x8a\xc5\x03\x05\x6a\x09\x55\xfe\x16\xbf\x53\x77\xff\x05\x44\xe3\x33\xec\xe9\x6f\xa1\x58\xb8\xe4\x40\xd0\x59\xa8\xc5\x4b\x76\x7a\x8d\xde\xaf\xc1\x67\xa1\xcd\xac\x32\x5c\xec\x4f\xb1\x99\x36\x73\xd6\xa4\x5d\x00\x0f\xae\x4a\xd3\x72\xc1\xd2\xf0\x23\xf4\xb7\xcc\x0a\x8d\x8a\x20\x3c\xe8\x78\xb1\x39\x07\x1f\x14\x52\x35\xc0\xbd\xc5\xcf\x49\xe6\x43\xc8\x86\xa2\x00\x6f\x9b\x69\x8a\x31\xe8\x64\xa0\x98\xcc\x24\x52\xfc\x24\x85\x6e\x61\x42\xfd\xf0\xd1\x3d\x8a\xe4\xc6\xaf\x9f\x71\xb2\x14\x44\xa7\xfa\x22\x8e\xf0\xf9\x95\x58\x58\xca\x1d\xd4\x26\xe2\xe1\xa3\xe1\x96\x46\x87\xba\xca\x97\x62\x59\xa9\xf9\xba\x2a\x7a\xcb\xb1\xf4\x6f\xf0\x47\xaa\x39\x44\xb7\x42\x79\xf7\x2a\xfb\x8c\xd3\xbc\xf0\x63\xe1\xc4\x10\x2e\x30\xc4\x51\x60\x83\x43\xe1\xca\xcc\xf1\x9e\x82\xde\xf6\x5f\x36\x68\x46\x8d\x35\xf7\x6a\x70\x7c\x07\x97\x31\xb2\xe5\xf1\xd7\x56\xa7\xe1\x99\x18\x29\x42\xdd\xe4\x7a\x75\x2b\xef\xd5\x64\x13\x0f\x22\x4f\x14\xa1\xca\xfc\xc6\x76\x36\x89\x58\xf8\x35\x05\x20\xdf\xa2\xb3\x76\x51\x3a\x4a\x53\x93\x57\x2e\xc6\xa6\x2c\x77\x1d\x82\x5c\xe8\x0c\x65\x4c\x4c\x5c\x65\x66\x8c\x2a\x42\x0d\xc4\xd8\x22\x21\xd6\xe9\x1c\x0b\x5f\x60\x43\xd0\xe8\xdc\xb4\x08\xb6\x7c\x63\x83\x64\x8c\xdc\xe7\x50\xa3\xf6\x9a\x6e\x69\x68\x53\xb8\x21\x32\xee\xd3\xee\x67\xcb\x95\x27\xa3\x2b\xb5\xf5\x33\x06\xd7\x8c\x4d\xf6\x72\xf0\xba\xd1\xbd\x8c\xac\xf2\x26\x4b\x09\x90\xd2\x7b\xd9\xec\x60\x59\xe7\x42\xd7\x6f\x64\x38\x60\x7b\x01\xcc\x47\xec\x0e\x9e\xd8\x79\xb9\xfe\x6d\xa1\x74\x8c\x71\x98\x97\x8e\x89\x80\xe2\xb7\x8a\x0e\xb1\x32\x75\x2d\x3f\xcc\xe2\xcc\xc6\xee\x7b\x39\xa8\xd2\x8c\x0a\x29\xd1\x8e\xba\x08\x17\x46\x29\x00\xfb\x83\x15\xf1\x04\x06\x1f\x99\x80\x1d\xac\x34\x00\xa2\xa5\x30\xda\x2e\x4a\xb4\x18\x52\xf1\x02\x2f\x65\x4e\x2b\xe4\x1a\x2e\x04\xff\xe2\xfc\xe2\xf4\x6f\x7a\xea\x17\x7a\x6e\xeb\x41\xb9\xb1\xc3\x11\x41\x8f\x72\xfa\xd8\x90\x2f\x74\x00\xc2\x48\xff\x20\x6d\xa5\xba\xb2\x4d\x84\xde\x01\xe0\xfb\x2d\x90\xbb\x56\x8d\x04\x41\x1d\xdb\x0c\x7d\xdd\x29\xd9\x66\xbd\x1f\x14\x86\xdb\x0d\xf8\x77\xd2\xd5\xf9\x13\x0b\x30\x62\x11\x7d\x30\xc7\x4c\x28\xb5\x56\xfe\x80\xf1\x23\xf0\xc2\x09\x10\x97\x8c\x4e\xee\xc7\x5c\x8a\xf8\xe1\xa3\xfb\x1e\xeb\xf8\x1e\x44\x89\x96\x39\xe9\xbf\xe0\x07\xf1\x53\x26\xe5\x44\xef\x5b\x98\x06\xc8\x8d\xc2\xa0\x1e\x70\x0e\x7b\x2b\xf6\x6a\xd8\x2a\x14\x3f\xda\x60\x8a\x20\xbe\xfe\x53\x63\x5b\x15\x18\x37\xfe\x16\xda\x78\x1b\xd3\xff\x18\xd3\x19\x3f\x62\x62\x29\x23\x54\x43\x69\xff\x1c\x7a\x71\xf6\xe1\x7f\x7c\x0c\x73\xd4\xcb\x75\x9d\xb3\x6b\x72\xbc\x8c\x9f\x05\xd4\xd4\x02\x93\xf2\x8a\x03\xe8\x60\xad\xe3\x7c\xde\xd4\xbd\xad\x89\x34\xd1\x15\x89\x32\xd8\x5f\x3a\x1f\x49\x6f\x45\xaf\x06\x60\x53\x4c\xcd\xe8\x7a\xba\x2a\x48\x83\xe2\xf7\x90\x6a\x82\x59\x13\x73\xde\xcd\xd0\x46\xbe\xc4\x30\x25\x5b\x22\x14\xad\xf4\xb2\x5e\x0f\xc1\x59\x5c\x7a\x19\x5d\x0b\x97\x71\x31\x6c\x3b\xa6\xa0\x09\x40\x45\xbb\xa1\x93\xb5\x8c\xdb\x86\xb6\x6b\x57\xe3\x15\x31\x32\xaa\xbe\xe3\x7b\x5f\x9d\x6e\xbc\x88\xe9\xda\x71\xd4\x02\x0a\x3f\xbd\xa5\x60\xde\xf1\xd1\x8e\xcd\xa0\xdc\x0e\x43\xed\x02\xc0\x46\x1d\xc4\xde\xa2\x84\x19\x59\x84\x34\x35\x7a\xd2\x61\x57\x0b\x7f\x9c\xa2\x1b\xec\x9c\xc3\x04\x99\x04\xd0\x8d\xa8\xd0\xf7\xe9\xcb\xb0\x91\x3f\xfe\x12\xbe\xc8\x02\x7c\x34\x87\x86\x7e\xbb\xd3\x75\x4d\x5f\xdd\xa0\xf9\xb0\x97\x86\x7c\x64\xb5\x11\x76\x68\xd5\xc0\x91\xd4\xf0\xb6\x95\xdf\x2d\x60\x26\x6c\x13\x96\x82\x93\x67\x69\x65\xe3\x84\x1d\x0d\x2f\x40\x2c\x15\x4d\xc4\xbf\xb1\x51\xe4\xb1\x8f\x93\x94\x27\x72\x72\x90\x2e\xbb\x9a\xb3\x2c\x43\x22\x45\x41\xb6\x6f\xff\xe5\xac\xfd\x8e\xdf\x02\x90\x7b\x35\x77\x73\x84\x44\xea\x78\xbe\x79\x03\x17\xd5\x0e\x43\x05\xc2\x94\x81\x8d\x02\x80\xb4\xd9\xae\x02\x13\x63\x8d\x21\xf3\x71\x44\xe1\xe4\x97\x9c\xdf\x17\x30\x18\xd0\xc3\xa8\x43\xb6\xd8\xf9\x74\x27\x9d\x88\x84\x5d\x3d\x74\x52\xd3\x6a\xa0\xbb\x92\x54\x8a\xfc\xd9\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\xd7\x16\x97\x2d\x7c\x4d\x5b\x10\xf4\xbd\x29\xe6\xa8\xfc\x94\x1d\xaa\xdd\xb8\x86\x0d\x8d\xe2\xfb\xd1\x86\x91\xb9\xb9\x78\x1b\x2e\x1f\xf0\x89\x32\x8b\x26\x05\xfa\xc9\x7e\xb3\x48\x9c\x20\xff\x62\x3c\xb8\x3c\x63\xc1\x07\x38\xcf\x4d\x7d\x7e\x3a\x2a\xb4\x61\x8b\x6f\xc3\x91\xea\x77\x65\x27\x15\xdd\xc3\x87\xff\x79\x46\x8c\xeb\xcc\xa8\x6a\x9a\x87\x8c\x11\x91\x73\x4a\x0a\x19\x7c\x1e\x7d\x17\x1e\x1f\x8f\xc7\xe3\x93\xfd\xfe\x49\xdb\x3e\x5e\xe8\x75\x26\x41\xc6\x6e\x4f\xce\xee\xd9\x54\x33\xe1\xd9\x19\xa6\x4c\x20\x5f\xa6\x1d\x3a\x62\xe4\xe3\xf4\x1e\xad\x93\x6b\xe5\x61\xae\x66\xc7\xc9\xb4\x92\xd2\xe8\x39\xd8\x8d\x6c\xdf\xa9\x74\xdf\x08\xd8\x0b\x5d\xa5\xcc\xfb\x32\x51\x66\xb2\xac\x49\x34\xc1\x07\x1b\x18\x7d\xf1\x58\xb8\xb4\x9b\xd4\x98\x09\x51\xe8\xf5\x97\x93\x24\xc9\x94\x88\x44\xd6\xa8\x48\x2c\x00\x2e\xab\x11\xa9\xf6\xff\x4e\x55\x62\xa9\xfa\xa5\x69\xf0\x19\x65\xa2\x3a\xe8\x3b\x2d\x2e\xc4\x5f\xf4\x9d\xc6\xdf\x2b\x8e\xff\x98\xc5\x7b\xf4\x16\xb3\xbf\x29\xf2\x43\x5f\x21\x07\xfd\xb8\x76\x4a\xa0\x9d\x5e\xd0\x83\x26\x74\xbf\x6c\xec\x5a\xd1\xe9\x3b\xda\xdb\x6d\x33\xa2\x95\xe1\xc8\x01\x41\xfe\x0b\xa3\x73\xd8\xad\xc2\x6b\xfb\x51\x80\xd7\x9e\x27\xd5\x8a\x2a\xe4\x39\x8e\xf1\x83\x6a\x7e\xbb\x8e\x17\x39\x39\x78\x0c\xce\xe3\x5e\x4e\xe0\xf9\xeb\x76\x98\xc0\x42\x3b\xa7\xb3\xc8\x9e\xe0\x29\xbe\x43\x8e\xf5\x35\xc7\xfe\xa7\xfc\xe0\x70\x55\xfa\x57\x40\xcf\xc9\xe7\x06\xa4\x75\x25\xe4\xda\x8e\xec\x96\xc4\x76\xc1\xc4\x20\xb8\x1f\x18\xf5\x9c\x6b\x02\xd5\x3c\xab\x03\x5d\xc3\xb9\x02\x3e\x57\x38\x73\x78\xfe\x1b\xec\x1b\x58\xee\xcc\x11\x38\xce\x74\x48\xa9\xf9\xfc\x80\x15\xe9\xa2\x3f\x29\x6f\xda\x1f\xba\x9a\x54\x80\xf0\xc6\xb6\x0c\x65\xac\xd7\x8d\xaa\x7f\x08\x32\x4b\x7e\x7d\x89\x3c\x0c\xb6\x8a\xc5\x64\xd0\x01\x59\x4a\x8e\xb1\x78\x61\xbd\xab\xc1\x63\xe0\xdd\x38\x42\xf3\xa3\x63\x9c\x48\x88\x6a\x72\x7f\xba\x3c\x3d\xce\x70\x38\x1e\x66\x97\x11\x31\x44\x0a\x09\xf7\x7c\x83\x53\x9d\xab\x16\x5f\xb6\x0b\x69\x2b\x1a\x2c\x17\x1f\xa8\xc9\xb2\xb2\xa8\xe7\x2c\xde\x67\xdf\x27\xc0\x56\x74\x89\x87\xc3\x7e\x9e\x02\xa2\xf3\x75\x9e\x49\xa7\x80\xf0\x89\x39\xba\x07\x72\x0a\x64\x34\xe1\x80\xe8\x42\xbc\x0f\xbf\x13\xf0\x92\x0b\x68\xcc\xfc\xdc\x3d\x8e\x13\x80\x49\x88\x55\xe1\x51\x94\xe0\x48\x43\xf6\x2b\xa7\x5b\x8c\x83\x87\x27\x5e\xa0\xb5\x3e\x0a\xf9\xa8\x91\xdb\x56\x05\x69\xe7\xbc\x90\xe6\x38\x92\x87\xc1\x77\x66\x82\x07\x44\x6a\xc5\xc4\x3b\x6a\x9a\x31\x71\x8f\xcc\x38\xe2\xd3\xb2\x91\x41\x29\xc9\x64\xc5\x07\xa3\xcd\x7c\x93\x6a\xea\x07\xeb\xf1\x54\x26\x77\xff\xbc\x09\x89\x0b\x24\x9e\x17\x88\x77\x4a\x28\x27\xe9\xf1\x28\xc4\xe2\xb5\x2f\xd1\x8f\x6e\x87\xaf\x72\xc9\xa6\xd1\xad\x32\x5e\x76\x49\x3d\xc2\x60\x54\x3b\xed\x15\x5e\xf7\xce\xa8\x89\x81\x3f\xb3\x79\x42\x31\x82\x64\xee\x2e\x8a\x11\x82\x82\x2b\xe4\x6a\xb5\x9a\x4e\x94\x9a\xdb\x4b\xb3\x9d\xc5\xd7\x9b\x98\xf6\x00\xf8\xe4\xaa\x0c\x55\x2e\x38\x5f\x84\x25\x06\xe3\xcf\xcd\x89\x21\xb4\x57\x33\x6a\x4d\xfc\xce\x02\xa5\x70\xd0\xd6\x93\xa9\xb9\x50\x24\x6e\xc5\xfc\x4a\x4d\xa2\x29\xdb\x8a\xfa\x41\xdd\xc3\x66\x84\x14\x0f\x74\x5d\x68\x46\xb0\xdf\x4e\x54\x9f\xf0\x66\x4c\xa1\x88\x68\xe3\x3c\xac\x56\xf2\x14\x09\x23\xf8\x65\x38\xe3\x5d\x73\x7a\x93\x06\xfb\x49\x14\xcb\xdf\x61\x2b\x31\x47\x77\x4e\x1e\xcb\x60\x58\x88\x81\x00\xd7\xdc\x65\xba\xec\x6e\x28\x3e\x8e\xb1\xe6\x49\x9c\x92\x61\x24\x70\xf7\x25\xad\xb3\x44\x1a\x23\x5a\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\xd7\x95\xbd\xcd\x96\x83\xdd\xe4\x74\x9a\x11\x09\x1f\x7e\x00\x79\x2b\x95\xa0\xdb\x3f\xc7\x5e\xba\xf8\xae\xe6\x44\x33\xdf\xa9\xe6\xee\xc1\x5e\x17\xcf\x4a\xfc\xa3\x9d\x25\x57\x9c\x88\x8b\x1d\x72\xf0\xf3\xa1\x62\x44\x03\x0a\x0a\x4b\xeb\x8b\xde\xb2\xe3\x90\x8f\xec\x0a\xbb\xff\x27\x5a\x14\x6a\xe0\x16\xe1\xe7\x8c\xf7\x86\xd2\x33\xde\x7b\xb3\xc0\x01\xf2\x29\xf6\xa5\x9c\x77\x67\xed\x1d\x3d\xde\xb2\xc6\x9f\x29\x67\xab\x7d\xc8\x7c\xae\xbd\x78\x51\xe6\xae\xa5\xd3\x4d\xfe\x48\xed\x2f\x90\xb0\x20\x05\xf0\xb5\xa0\x0c\x92\xaf\x06\xce\x41\xdd\xd1\x34\xe9\x69\xdf\xdb\xa3\x69\xc4\x6b\x7b\x98\xa3\x02\x30\x6d\xea\x60\x84\x4a\x28\x21\x27\x3e\x55\xf3\x79\x23\x15\x09\x98\x92\x9f\x34\xc8\xa6\x22\x87\xee\x7b\x13\x9e\x1c\xba\xd5\x0b\xdb\x62\xd6\x23\x76\x2b\x9e\xf7\x88\x2f\x18\xc0\x8e\xf8\x65\x81\xf5\x96\x02\xea\x4d\xfd\x22\x23\x76\xd9\xde\x83\x5a\xd7\x16\x8f\x0f\x73\xda\x42\x63\x40\xa2\x9b\xb0\x44\xd4\x54\xe8\xb1\xc7\xac\x7f\x4e\xd1\x8d\x4f\x23\xbb\x9a\x75\x19\x50\x4c\xc3\x73\x92\x90\x94\x35\xa2\xeb\xec\xa1\xe6\xa8\x90\x79\x15\x97\x18\x59\x29\x44\x7a\x8c\x6e\xf4\x88\x10\x9f\x7f\x2d\xaf\x7a\xf7\x74\xb9\xba\x6c\x86\xfa\x34\x6f\x46\x48\x9b\xb4\xa3\x00\xe5\x27\x25\x7f\x0d\xa0\x28\x08\xbf\x7f\x7b\xfd\x00\x78\x68\xf6\x9f\x8b\x97\xc5\xd6\x40\x7a\xe2\x7c\xc4\xc6\xdf\xbf\xbd\xa6\xd6\xfb\x9d\x3a\x96\x4e\x48\x5e\xae\xb3\xc1\x21\x6d\x73\x42\x6f\x3a\x52\xc5\xcb\xb8\x6a\x38\x41\x71\x84\xa9\x19\x66\x42\xfa\x4e\x6f\x77\xfe\xa0\x30\xea\xc8\x09\x5c\xc5\x78\x94\x8d\x38\x31\x22\x7c\xb8\xf8\xd5\x63\xb2\xd4\xd0\x38\x38\x27\x5a\x17\x0b\x73\xce\x74\xa0\xd0\x95\x4d\xbc\x63\x9c\xcb\x23\x96\x15\xfd\xef\x1e\xb4\x1c\x75\xb4\x26\x9d\x6e\x9c\x78\x86\x30\xf3\xf2\x44\x1a\xe7\x8f\xe4\x40\xbe\x8c\xe0\xb5\xdc\x63\x38\x2d\x80\xfa\xf1\x41\x1c\xab\x10\x3a\xff\x42\xbc\xa6\x5f\x0f\x83\x63\xc8\xfd\x54\xe6\x32\xfb\x7c\xa8\xaf\x79\x84\x10\xd8\xd7\x46\xc7\xf6\x07\xf6\x13\x24\x7d\xf4\x6f\xb0\x77\xfe\x5d\xfc\x0d\xa6\xca\xdf\xc5\xdf\xb4\x69\xd5\xa7\xbf\x87\x63\x9c\xf8\x62\x20\xb0\xbb\xf3\x59\x28\x09\xb2\x0f\x03\x11\xb0\x58\xbe\xfb\x8f\x5d\x37\x5d\x2d\xa5\x0e\xc3\xb1\x85\x7a\x1f\x66\x70\x63\x8d\x1f\xf4\x7a\x9c\xe8\x96\xad\x44\x47\xf4\xdf\xc9\xf5\xec\x29\x7e\x89\xff\xdb\x9a\x5c\x1b\x24\x9b\x3e\xde\x41\xf2\xb6\x06\xbd\x38\xc6\x06\xcf\xe2\x1e\xe0\x69\x49\x71\x8b\x17\x56\x8b\x77\xc2\x0e\x7a\xab\x61\x40\xb1\x50\xd6\x0b\x7c\x64\x1e\x43\xa7\xef\xa4\x23\xbc\x31\x04\x34\x85\x10\xa5\x6a\x64\x7c\x6b\xca\x95\x15\x94\x7a\xfa\x6a\x22\xf6\x47\x71\x13\x23\xcf\x66\x9a\xab\xb9\x57\x83\x8f\xc7\x64\x5e\xbc\xb3\xe2\xad\xda\x8e\x9d\x1c\xf2\xeb\xd3\xd3\x02\xd3\xf1\x0e\x78\xd8\xc4\x86\x5b\x2a\x50\x5d\x0c\x8c\x2b\xdb\x85\xe2\x45\x6a\xb6\xc0\x83\xe8\x3f\x50\x24\xb7\x69\x2d\x64\xeb\x70\x68\xec\x78\xc2\xb1\xb0\xcb\xb8\x2d\x45\xc5\x19\x35\xb8\x0d\x78\x66\xb8\xd4\x0a\x72\xe5\x89\x6d\xa0\xf0\x2d\x0b\x2d\x48\x6e\x49\x21\x80\x0b\x9f\x27\x4e\xac\x0d\x04\x4d\x11\xa2\x26\x57\xea\x93\xd5\x97\xa0\xc2\x5b\x43\xd4\x24\x74\x1a\x2c\x23\xa9\xe6\xeb\x8c\x42\x76\x5f\xc0\xca\xa7\x9f\x6f\x42\xd0\xef\x39\x58\xb4\x02\xa4\x48\xdf\x25\x51\x32\xb5\x03\x57\x1a\x0f\x52\x19\x65\x9e\x65\x71\x7a\x9a\x9a\xaf\xe8\xa2\xf9\x04\x23\x56\xb9\x85\xe6\x4d\x86\x69\x31\x4a\x90\xde\x64\x73\x18\x6f\xa8\x68\xd3\xea\x7b\xdd\x8e\xb2\xc3\xc6\x3c\x84\xf7\x0f\x25\xde\xc6\x1a\xbc\x0a\x7f\x12\xf7\xa4\x43\xc8\x3a\xf0\x49\xa8\xc7\x03\x7b\xf3\x6e\xd2\x1b\x04\x8b\x3d\x02\xae\x16\xfd\x73\x78\x25\xe1\x5b\x02\x22\x45\x13\xcf\xed\xc5\x64\x0c\xc6\xf9\x41\xd1\x13\xc3\x2c\xfd\x71\x26\x44\xb1\x43\xcd\xaf\x03\xe0\x44\xe9\xe2\xa9\xf4\x72\x11\x2c\x0c\xe8\x9b\x70\x17\x45\x61\x21\x94\x68\x5a\xe9\x65\x3a\x91\x33\x96\x23\x00\xad\x65\x73\xb7\x68\xeb\x5b\xc4\xbf\xb0\xbe\x72\x73\x22\x10\x2e\xe8\xba\x78\x57\x08\x2a\x06\x3e\x7d\x36\x97\x0d\x67\x46\xef\xb7\x39\x6b\x0a\x0d\x4e\x77\x60\xb0\x2b\xd3\x18\xc2\x99\x79\xab\xbc\x5a\x87\x4d\x5b\xe2\x47\x27\x08\x15\x3a\x50\xbc\x07\xf0\x8f\x50\xeb\x34\xa1\x12\x23\xfa\x6c\x58\xa8\xd3\xf8\xfe\x70\x92\xb1\x65\xc1\x9b\x72\xeb\x2e\xf0\xca\x23\xf9\xa3\xcc\x8d\x66\xe7\x1c\x0f\x05\x72\x41\xf1\x02\x92\x9f\xb3\x90\x76\x1e\xfd\x36\x29\x06\x7a\x16\xa3\x2d\x77\xaa\x73\xa7\xdb\x8a\x7b\x1e\x11\xe0\x32\x44\x21\x0a\x52\x13\x9e\x4c\xc0\xc6\xdc\x2b\xd3\xa2\x73\xe3\x86\xce\xa1\x66\x96\x9c\x87\x67\xca\x67\xce\x47\x4e\x29\x52\xcb\xc8\x82\x82\xfb\x99\xc0\xd5\xf3\xd5\x1f\x36\xf4\xd7\xea\xc0\x6e\x84\x49\x91\x94\x77\x28\xb8\x06\xbe\x8c\xb1\xfd\x02\xc3\x5d\x40\xb5\xb8\x23\xa4\x87\x1b\x62\xd3\x42\x81\xe1\x74\xf3\xca\xd0\x62\x4b\x21\xc5\x32\xf5\xae\xad\x27\xae\x92\x97\x6d\x8b\xfd\x29\x5c\x26\x4f\x16\x98\xc4\x37\x2d\x70\x95\xf1\x4d\xe7\xf3\x65\x52\x71\x08\x72\x3a\x37\x96\xdb\x21\xf7\x0c\xcc\x1b\xb6\xd0\xa5\xc5\x62\x85\xf3\x06\xbd\xac\x0c\xf3\x31\x5d\x11\xdc\xd1\xf3\xb5\xf9\x91\x41\x1e\xb6\xae\xdc\x1e\x27\x73\xf6\x81\xa0\xa8\xa1\x51\x74\x7a\x78\x8a\x72\x57\x8b\x54\xe3\xa8\x85\xb9\xcd\x20\xd9\x99\x26\x97\x6b\x32\x93\x53\x61\x1a\xc6\x67\x8c\x52\x08\x1f\x90\x44\xd7\x33\xc2\x17\xaf\x1a\x95\x51\x7c\xd8\x1a\x49\x01\x6a\x51\x90\xcc\xcb\xae\xca\x79\x71\x20\xfb\x0e\xcf\x21\xb6\xf6\x4c\xcc\x40\xf1\xfc\x91\x6d\x41\xe8\x10\xb3\x1f\x9b\x1d\x9d\x37\xa2\xc9\x07\x43\xe6\x88\x9b\x37\xb7\xef\x04\x19\x7b\xfd\xa0\xb7\x5b\xd8\x80\xc5\x5f\x76\xca\xe0\x83\xd8\xce\xee\x15\x73\xb7\xa6\x19\xc9\x30\x48\x2f\xff\x1e\x54\x88\xf6\x69\x5a\xde\x8e\xf2\x90\xe3\xc1\xda\x41\x4e\x72\x62\x67\x1d\x05\x50\x75\xbd\x6a\xf4\xe6\xb8\x12\xd7\x4a\x0e\x86\x1e\xd2\x0d\x7e\xbd\x0f\x5e\xe4\x8c\x3d\xc1\x20\x2c\x3f\x7d\x2f\x73\xab\x38\x93\x24\x9f\xbe\xbc\x51\xcd\xc8\x33\x05\x5d\x0a\xaf\x19\x28\xfc\xd0\x89\x34\x32\x6d\xda\x9a\x35\xec\x01\x82\xef\x18\x7e\xc9\x34\x9d\xb5\x21\x7f\x79\x99\xaa\xfe\x52\xc6\xcb\xa8\x56\x9e\x8c\xe4\xdc\x96\x0b\xf1\x4e\x39\x8c\x59\x88\xdf\x9f\x01\x0f\x24\xb8\xa5\xc7\x36\xf1\xa6\x03\x1a\x42\x69\x5a\x44\xac\xe1\xb1\x70\x94\xa8\x02\x8d\xdc\xdc\x38\xb5\x58\x47\xea\x22\x36\xed\x30\xed\x27\xcd\x7d\x72\x72\xa3\xea\xfe\x3a\xaa\x51\xad\xc4\x4b\x2f\xf6\xf2\x48\x8f\x4b\x6f\xd4\x41\x38\xd5\x58\xd3\xba\x10\x45\x42\x7b\xbc\xe9\xea\xc4\xd8\x87\x9b\xc7\xb3\x21\x99\xb7\x6d\x50\x19\xad\xde\xc6\x8f\x87\x00\xb3\x1e\xbc\x80\x96\x7b\xe9\xee\x26\x1e\x13\xa0\x09\x7e\x65\x2f\x52\x40\xd4\x58\xc2\x79\xe9\x47\x5c\x69\x0f\xb5\x3f\x3f\x6a\x51\xce\x2f\x81\xb8\xde\x52\x74\xbd\xb7\xfc\x73\x0e\x44\xee\x2a\xd8\x27\xfa\x35\x07\xe9\xf9\x99\xc7\xf8\xe0\xe3\x1c\x64\x6d\x5b\xa0\xe3\x2f\xb6\x3d\xce\x8d\xce\x61\x76\x45\xcb\x33\xf2\xa2\xde\x1e\xf0\x00\x74\x7d\xc4\x0c\xed\x9d\xea\x36\xf4\x4e\x12\xe8\xaf\x2a\x04\x54\x41\x81\x28\x46\xb9\x11\xc4\x02\x78\x9c\xf1\x70\x02\x2f\xfc\xe5\x3e\x9d\xf4\x34\x48\xf1\xce\xc1\xb4\x4d\x14\x6e\x85\xdb\xf5\x92\x74\x0f\x9c\x8d\x68\x6d\xa6\x38\x37\xe7\xa0\xbb\xf7\xd9\x95\xf4\x60\x8f\xea\xe9\x55\x5e\xd5\x22\x0f\xc3\xb7\xc7\x02\x08\x29\x6f\x14\xf1\x20\x0b\x15\x99\x44\x76\xed\xb0\x9e\x85\x16\x71\x68\x4f\x9c\x59\x18\xd4\x73\x06\x91\xae\xd3\x20\x50\x08\x80\x3e\x15\xc1\x18\x3c\x99\xb2\x5f\x14\xec\x2f\xdb\x40\xe2\xc0\xd8\x2d\xcb\x8d\xfc\xda\x2e\x19\x87\x60\x63\x08\xb6\xa0\xcc\x75\x16\x68\xf5\xfe\xed\x75\xce\xcc\xcf\x85\x84\xed\x9d\x2c\x1e\x83\xda\xca\xa1\x0d\x71\x5d\x78\x63\xd9\x49\x4f\x1b\x48\xfe\x2e\x07\x06\x5b\x63\x14\x74\x23\xff\x4e\x1b\x8c\x47\x8a\xaa\x09\x1b\xed\x40\x4b\x4c\x5e\x32\xb0\x97\x8c\x3d\x6c\x2f\xb4\x57\x85\x7a\xb0\xcb\xdf\xfe\xdb\xed\x9b\xd7\xe7\xe2\xd3\x93\xc3\xe1\xf0\x04\x8a\x3f\x19\x87\x4e\x19\xe8\x42\x7b\x2e\xfe\xd7\xab\xeb\x73\xa1\x7c\xf3\xdd\x4a\xbc\xa2\x5d\x27\x31\x73\x76\x54\x45\x27\x74\xf4\xfa\x1c\x87\x7f\x62\x37\xe2\x15\xc3\x06\xd1\xfc\x99\xd4\x5c\x76\x84\xd1\x0b\x57\x14\xc3\x0b\xa3\x78\x55\x31\x93\x43\x9a\x41\xe1\x0d\x3f\xfc\x31\xcd\x48\x6c\x1b\xc1\xc2\xfc\xc4\x57\x23\xa4\x13\xb7\x2f\x2e\xff\xf0\xaf\xff\x53\xbc\x78\x75\x79\x25\x76\xea\x93\x68\xf5\x56\xd1\xf1\x5f\x58\xd1\xf7\x3a\x8c\xf5\xff\x7a\x02\x93\xe0\xc9\xad\xde\x1a\xe9\xc7\x41\x85\x71\x27\xf6\x90\x8b\x46\x9d\x6c\xee\x96\x1e\x20\x9a\x82\xe8\xc6\x1a\x26\xc0\xcb\xc6\x9a\xb2\xf7\x04\x12\xae\xd3\x5c\xe1\x45\x9a\x64\x1c\x86\x29\x13\xe5\x97\x9d\x32\xc0\xdf\xc7\xae\x2d\xb7\xe6\xb5\x0a\x53\x40\xb5\x7f\x9a\x16\xc6\x98\x69\xd6\x74\xc0\x94\xfe\x0d\xa3\xe5\xec\x82\x0b\x0e\x64\x85\xde\x21\xf0\x6a\x5a\x18\xdf\x81\xce\xd4\xba\x0b\xf1\x92\x1e\xa4\x0e\x6a\x65\xca\x8b\xaa\xe5\x0c\x09\x5b\xf9\x2e\xc4\xb5\xf2\x62\x1f\xad\x7e\x38\xcb\x09\xdd\xbc\x48\xe9\xa2\xb9\x9c\x1d\xe8\xf2\x4b\x1e\x49\x2d\xb8\x2f\xce\x69\x58\x5e\x16\x5a\xcc\x5e\xc6\xc8\x52\xc7\xb4\x48\x1e\x3a\x6f\x21\x2b\x05\x2d\x4d\x01\xe9\x30\x48\xe0\xd2\x00\x71\x24\xbb\xc5\xb1\xcb\xb6\x8c\x70\x22\x9b\x9b\x0e\xa6\x65\xa6\x91\xe2\x16\xb3\x23\xbf\x47\xa3\x35\xdd\xb3\x3b\xa7\xdb\x83\xed\xb9\x08\x37\xef\xce\xd9\xaf\xec\x3c\x5c\xd5\x6f\xcf\xc5\x68\xd2\x6f\xba\xf5\xc4\x8a\x6b\xf8\x44\xbf\x56\xf8\x8c\x6e\x87\xed\x39\x3d\x30\x98\x12\x66\xe3\x4d\x56\xfe\x74\xb7\x90\xda\x15\x6e\x18\x3e\x04\x5c\xf6\x24\x60\xe0\x49\x90\x3a\x10\x5f\x38\x9c\xd7\x3d\x71\xd7\x28\x7c\xd4\x1f\x00\x8d\x1e\x2c\xf9\xe1\xff\xff\x7e\x4a\xe6\x64\xc4\x6e\xb9\xa3\x69\x76\x83\x35\xfa\xf7\x85\xbe\x71\xf8\xbe\x14\xbd\xef\x04\x40\x9a\xac\x04\x8f\x47\x11\xe8\x0d\x82\x17\xbd\x96\x8f\x69\x29\xe0\x5d\x88\x7c\x37\xcd\x48\xf7\x09\x9e\x2a\x8f\xef\x3a\x2d\xed\x86\x64\xcc\x8d\xdc\x2b\xed\x5f\x81\x83\xb3\x24\x48\xaa\x20\xc5\xc4\x2f\xf6\x6f\xdc\xbc\x4b\x83\xc0\xb2\x38\x3d\xf3\x0c\xcb\x74\x47\x96\x0e\x66\xfa\x11\x03\x4e\xea\x98\xa9\x25\x3c\x6e\x73\x6b\x43\xaa\xe1\x94\x06\x46\x57\xc1\x83\x66\x10\x1e\x9c\xc4\x87\x45\x9e\xc6\xb4\x52\x9f\x0d\xfb\x24\x4a\x3e\xe5\x26\x89\xb1\x68\x70\x3f\xc9\x65\x1a\xd0\x8c\xcb\xcb\xa4\x00\x82\x57\x49\xb5\xf1\x2a\x04\x3d\x9d\xbd\x05\x74\x9c\x90\xba\xd5\xae\xc1\xe7\xf5\x1f\xc2\xfd\x94\x80\xbe\x0e\x3b\xb5\x39\xbc\x1b\x41\xef\x5b\x4c\x32\x5b\xbb\x97\xe8\x26\xf9\x14\x7f\xcc\xf6\xcf\x9d\x34\x86\x5c\xc2\xe9\x57\x3e\x16\x7d\x67\x8f\xe1\x31\xa6\xa7\xf8\xc5\xaf\x4e\x2e\x80\x64\x4f\x17\xad\x7f\xbe\xa2\x07\x84\x9e\x5b\xdf\xec\xe4\x37\x3f\x7d\xbf\xfe\x19\x24\x64\xb6\xd5\x77\xd6\xde\x85\xdb\x20\xb2\xc5\x79\x1d\x9f\xa2\xe8\xe3\x13\x3f\xc9\x4d\x43\xb6\x2d\xf9\xd6\x68\x43\xa4\xc8\xe8\x06\x94\x8b\x2f\xba\x72\xab\x26\x82\x14\x8e\x40\x6c\x27\x93\x3e\xf5\x66\xa9\x33\x49\x9d\x47\x28\xa4\xc0\x8e\x5e\x52\x90\xed\x13\x94\x09\xc8\xe0\xb4\x12\xef\x76\xea\x18\xc3\xf2\xe2\x0b\x93\x78\xae\x59\xbe\xae\x81\xcd\x0b\xef\x2e\xe5\xc7\x83\xb6\x2e\x89\x1c\x5e\x49\xc0\x40\x27\x64\xc7\x31\x47\xd1\xa6\x66\xe4\x86\xcd\xe2\xa2\xc5\x52\x2f\xe6\x0f\x1d\x45\xa8\xe9\x83\x4c\xa9\xa7\x27\x1f\x64\xca\x8b\xe6\xaf\x32\x65\x45\x51\x76\x8f\x44\x58\xf4\x2c\x2e\x86\x65\xfe\xe6\x52\xea\xea\x17\x3c\xbb\xb4\x3c\x72\x53\xe3\xcd\x67\x87\xfa\xa1\x8b\x05\x6d\xde\xb9\x2f\x78\x80\x69\x1a\x74\xeb\x0b\xec\x38\x4b\x6d\xc9\x7d\x6a\x63\x03\x3e\x77\xcd\xa0\xd5\x9b\xcd\x8a\xe2\xb5\xd6\xce\x8e\x43\xa3\x50\x22\x83\x6f\x71\x8b\xdf\x04\xc2\xd1\xea\x2e\x38\x6c\x1d\x25\xf2\x7d\xfe\x0b\xf6\x71\xa5\x44\xbc\x69\x88\x26\xc9\x7b\xa9\x3b\x54\x3f\x2f\xc4\x53\xbd\xd9\xd0\xad\xc3\xd7\x16\x9f\xab\xa4\x9c\x15\x15\x71\x3b\x7b\xa8\xe1\x17\xbe\xcf\x84\xfe\x6c\x3b\x7b\xa0\x42\xb7\x90\x92\x81\xb9\xbe\xd3\xbe\xe6\x50\xb1\xb7\xf0\x81\xc1\x6e\x33\x88\xd1\x60\x60\xbb\x00\xf3\x9e\x3e\x73\x28\x40\x19\x2f\xfe\x87\x33\x9a\xb3\x36\x46\x63\x43\xf5\x3f\x9d\xde\xe0\x0c\x0d\x70\x67\x2d\xf2\x1f\xd4\xef\x13\x48\xfe\x26\xc8\x59\x1b\x2d\xc7\x09\x82\x09\x8d\x4c\xf5\x97\x97\xaf\xe9\x13\x03\xb5\x72\xa4\x1e\x8c\xd8\xfb\x4c\x77\x4c\x6f\x7e\xab\xb5\xc7\x68\x70\xaa\x0d\x51\xea\x20\x4f\x64\xc9\xd9\x5d\xb5\x3c\x66\x2f\xe1\xf0\xd6\xd6\x7b\x69\x8e\xf1\x16\xeb\xad\xdd\x2b\xb6\x6d\x1c\x54\x78\x84\x7f\x67\x0f\xd9\xc5\x3e\x6b\x05\x14\x61\xa8\x40\x90\x60\x27\x05\xb4\x55\x08\x53\xbc\x5a\x0a\x57\x1c\xf2\x28\xf6\x74\x90\x87\x60\x95\x06\x99\x28\x40\xb4\x83\xdc\xe0\x3d\x2b\xf8\x1f\x53\xfb\x41\xa5\x62\x37\x83\x7a\x32\x2d\xc6\xf7\xa1\xe0\x5f\x4c\x93\x3b\xf2\xc5\x4f\x23\x90\x46\x26\x5c\xdd\xf3\x56\x9c\x39\x0e\xe6\xc7\x0b\xae\x44\x4c\xb3\xbf\x46\x9f\xed\x0b\x9e\xfb\xe2\xca\xb6\xaa\xe8\x53\x7e\xd1\xea\x86\xe4\x36\x11\xe9\x80\x9e\x1d\xf4\x6c\x54\x3f\xd8\x76\x6c\xfc\xaa\x68\x77\x51\x9a\x04\x35\x15\x66\x9d\xe8\xec\x16\xad\x01\x18\x7d\x95\x3c\x4d\x47\xd3\xaa\xc1\x79\x72\x2a\x97\x19\x77\xd5\xfb\x7e\xa0\xa3\x83\x80\xde\xcb\x6d\x7c\xd6\x4a\x6e\x29\x84\x44\xca\x43\x4b\x78\x78\xc8\xbb\x28\x13\x37\xe0\xe0\x7f\x9e\x85\x70\xf4\x72\x8b\x42\x6f\x93\x07\x0d\x07\x1d\xcd\x9a\x20\xb3\x66\x0d\x28\x76\x96\x90\x3a\xdf\x4d\x42\x4e\x79\xc7\x22\x1b\x7e\x5e\xb6\x1c\xb5\x38\xe6\x74\x56\xb6\xa4\x14\x5f\xd3\xaf\xd5\x6a\xb5\x30\x6b\xe6\x0f\xaf\xf5\x83\x7a\x32\x1d\xeb\x0c\x3e\x12\xe0\x2f\xea\x71\xd7\x89\xde\x6a\xe3\x05\xdd\x19\x92\xbe\x98\x29\xe1\xe4\x84\x87\x56\x5b\xf3\x04\xb7\xa9\xd4\x8c\xe9\x4d\xb9\x58\x1d\x4f\x94\x34\x65\xa6\xb3\x1a\xef\x20\x85\x15\x81\x97\x90\xca\x65\x81\xb3\x27\x2d\x0c\xbc\x0d\x38\x5b\x50\x24\x06\x27\xa8\xf2\xc4\x7c\x01\x98\xb6\xbc\xa0\x86\xc4\x93\xb6\x29\xcc\xf2\x2e\x17\xea\x99\xde\x3a\xc2\x77\x74\x5d\x6f\x4d\x3c\x7c\xf6\x72\xfb\xe0\xd3\x4f\x93\xda\xf2\x13\x5c\xaa\xe2\x33\x9b\xd8\x74\x0d\x94\x77\x98\x32\x3c\x2c\x6a\x00\xa7\xe4\x35\x32\x13\x35\x66\xb8\xf8\xce\x67\xb6\xae\xc2\x3c\xc0\xf4\x54\x22\xc4\xdb\xc0\x0d\x38\xfc\xae\xaa\x0f\x76\xd8\x7e\xc4\x17\xfd\x29\xb6\x72\x8c\xad\x98\x9f\xc9\xa1\xdd\x15\x60\xe2\x43\xe0\x27\x00\xd3\xe3\xe0\x09\x63\x98\xc0\xcf\x61\x99\x96\xfe\x2e\x00\x40\x56\x6f\x7c\x68\x89\x6f\x13\xf0\x5b\x4b\xab\xf0\x4e\x80\x1d\xb6\xe9\x92\x5d\x5e\x1d\x3d\xad\x93\xae\x6e\x71\x28\xf4\x8a\xbd\xfc\x2f\xc4\x0d\xfe\xa8\xb4\xb9\xd7\x1e\xe4\x87\xbd\x22\x87\xb9\x97\x98\x80\xfb\x8d\x35\xaa\x2a\xfc\xe0\x2b\x8c\xe0\x5c\x07\x1f\xf8\x8b\xe0\x0d\xcf\xe9\xc5\x63\x4a\x17\xe5\xfb\xfd\x59\x58\x62\x40\x59\xde\x0c\x04\xe4\x48\x95\x85\x3b\xc3\x00\x1d\xd9\x23\x94\x44\x12\x62\xea\x43\xd0\xc5\x43\x46\xc0\x1d\xc6\x10\x8c\x0f\x71\x61\x50\x0c\x43\x0a\x17\x4e\x2a\xc0\xac\x4d\x11\x25\xc8\xad\x52\x35\x19\xaf\xd9\xd1\x85\xe2\x54\x0c\x84\x43\x74\x25\xff\x13\xc1\x17\x8f\x79\xb0\x41\x52\xd2\x43\x64\x94\x2c\x3a\x75\xaf\xba\xc2\x42\x89\x88\x40\x13\xf8\x53\xb5\xfc\x3e\xcc\x9b\xe9\xdc\xf8\x07\x5e\x88\x99\xe3\x78\xf0\x8d\x18\x44\x97\x08\x9a\x35\x06\xc7\xe1\x44\x23\xa2\xa0\xfb\xb5\x77\x02\x97\x1f\xd2\xcf\x8f\x8d\x26\x2f\xea\xc7\xac\xa5\xa7\xf5\x4f\x39\x99\x3c\xe4\xad\x5f\x82\x66\xcc\xac\x20\x5c\xc4\xf4\xa5\x1e\x29\x7c\x09\xc0\x0e\xdb\x7f\xee\x0e\x40\xf1\x58\xe0\xac\xd5\xb3\xd7\xdf\x8b\x46\x7f\xdd\x2b\xf0\x27\x3d\xb8\x0a\x0e\x33\x35\xe2\xcc\x9e\xef\xc3\x0e\x3e\x58\xa4\x7c\xcc\x2f\x6f\x70\x3c\x38\xcb\x3c\xa8\xd8\xe9\x82\x9e\xf1\xa3\xc3\xff\xcf\xbf\xe5\x77\xc2\xf3\xe6\xa1\x47\xfd\xa6\xad\x04\xce\x14\x43\xee\xe5\x8d\x7c\xb0\x44\x2e\xcd\xd8\x89\x17\xc7\x3f\xfe\xd0\xdf\xb2\xc7\xc6\x65\xdb\x06\x6b\x1e\xbf\xeb\x15\xe8\x97\x2c\x86\x9b\x2c\x50\xf5\xf4\x95\xca\x44\x39\x94\x5b\xf9\xaa\x5c\x31\xdf\x2a\xe6\xf5\x2b\xfe\xbf\xd3\x7d\x5d\x3c\xee\xf7\x2a\xa6\x67\xef\xfc\xfd\x18\x8b\xb1\xa5\x27\xbc\xea\x3c\x49\x4f\xfc\x15\xef\xab\x87\x8b\x07\x11\x88\xbe\xe9\xcd\xf9\xa5\x9c\x69\xf9\xb2\x0e\xfa\x5f\x0f\xb6\x53\xb1\xa1\xe2\xad\xed\x54\x6a\x5e\x19\x70\xae\x2c\x18\xcb\xc4\x74\x36\x0b\x84\x97\xd6\x62\x7a\xf9\x42\x67\x48\xe5\x3d\x36\x7f\x3e\x00\xe5\x71\xc6\x8e\xea\xcd\x8f\x53\x68\x83\x71\xba\x79\x37\x7e\x6d\x0f\x15\x6d\xc5\x2b\x8c\x68\x77\x21\xfe\xcd\x6a\xc3\x29\x65\xa5\x94\x06\x92\x51\x7a\xd8\xe2\x2d\xe8\x58\xf4\x7a\xec\x3c\x7f\xf2\x80\x17\xee\x44\xf1\xe9\x2e\x7e\xc4\x16\x05\x7b\x8e\x9b\x68\xc8\xad\xa5\x7c\x7a\x8a\xb0\x4e\xde\xd3\xa0\xdb\xfc\x45\xbd\x39\xc4\x97\x54\x8c\x37\xb5\xa7\xd5\x9d\x07\x13\x37\xda\xdd\xe2\xe5\x3b\xb5\x0f\xed\x40\x57\xe7\xd4\x0e\xbc\x30\x5e\xb6\x23\x87\xf8\x92\x76\x40\x2d\x18\xa3\x2b\x5c\x01\x38\xd9\x1e\xd9\xb6\x82\xbc\xb3\x0b\x8f\xcc\x69\x13\xd3\x13\x52\xef\xb2\xfd\x1f\xbd\x5a\xdb\x89\x3c\xe3\x56\x4b\x5b\x2a\xe5\x90\x13\xe2\x82\xc8\x41\x1e\xe6\x8b\xcf\x2a\x7f\x9e\x09\x60\x30\x34\x28\x19\x41\x33\xdf\xf1\x22\xa4\xfd\x7c\x5f\xa2\x76\x25\x11\x11\x65\x05\xe6\x0d\x9c\xf9\xf9\x2d\x99\xe0\xc2\x9b\x2e\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\x67\x50\xc5\x8d\xd0\x00\xb5\x97\xc7\xe9\xfb\xba\x20\x62\x97\xab\xe6\xb4\x62\x35\x6f\x4a\xda\xd7\x9f\xeb\x7b\x65\xd2\x84\x39\xa9\x5c\xad\xf2\xa5\x3e\x9f\x20\x69\xda\x6d\x07\x8c\x13\x17\xc6\x1a\x98\x45\x36\x15\x10\xe1\x8f\xb1\x97\x8d\x34\x53\x6e\x80\x1e\x7b\x4a\xee\x1f\x3f\xc4\x14\xbe\xa2\x01\xc8\x36\x1e\x6e\x01\xb2\x05\x8a\x4c\x6a\xda\x9c\x05\x3c\xd4\x10\x5a\xf3\x5f\xd1\x10\xe4\x1b\x5f\xd8\x90\xf3\xd0\x0a\x92\x4e\x80\x0b\x2c\xad\xff\x87\xda\x37\x51\x9f\x70\x72\xbe\xcd\x75\xa8\xc0\x0c\xd0\xd1\x14\xf5\xbb\x45\x47\xd3\xcc\x1c\xbd\x5a\x4d\x57\x49\xe6\x29\x9b\xad\x94\xcc\x29\x3f\xb4\x05\x7d\x62\xf9\xf2\x12\xef\x72\x09\x95\xb1\x06\xb5\x6e\x3a\x19\x8d\x17\x9c\x32\xe4\x7c\xf6\xe3\x87\x23\x4b\x3a\xf8\x1e\x51\xf1\xd8\x60\x3c\xf0\x61\x23\x15\x3a\x6f\x0d\xce\xaf\xaa\xea\x03\x8e\xd5\xc7\xaa\x95\x6e\xb7\xb6\x72\xc0\x73\x87\xf0\xbb\x2a\xee\x85\x57\xc5\x83\xde\x13\x09\xcd\x55\x13\xa2\x16\xf4\x94\xa3\xdf\x81\x12\x18\xb5\x87\xcb\x22\xc1\xd1\x3b\xd0\xdb\x20\x22\x6e\x47\x8e\x4f\xc2\xbe\xf4\x78\x47\xd9\x79\xb5\x17\xaf\x29\xa1\xda\x5b\xa3\xc9\x6d\xf7\x15\xfd\xd2\x66\x5b\x15\x41\x76\x9e\xc1\x47\x85\x61\x55\x38\xe5\x5a\x3a\x5f\x79\xeb\xf1\x45\xc9\x77\xf0\xff\x47\x71\xd6\x56\xa9\xeb\x68\xf3\xd6\xce\xa3\xf0\x74\x1b\x7e\xbb\x0c\x20\x79\xad\x51\x8c\x30\xfe\xc8\x51\x60\x3b\x6b\x76\x12\x8c\xed\xe6\x56\x22\xd6\xd1\x2d\x55\x19\x42\xe7\xa0\xbb\x57\x2b\xbd\x5c\x07\xa3\xce\x4f\x6b\xb4\xd5\xae\x7f\x26\x83\xe7\x79\x96\x50\x8c\x48\x9e\x51\x9c\xf6\xa5\xe4\x72\x2f\x4d\xe9\xf4\x86\x6b\x91\xe4\xbc\x2c\xeb\x92\xcd\xac\x96\x70\x40\x93\xa7\x85\xeb\x13\x29\x25\x5c\xa4\x28\xb0\x5b\xbc\xee\xcd\xaa\x41\x91\x45\x37\x86\x8a\x24\xba\x9d\x36\xe9\x09\x99\x93\xf3\xb4\xce\x6e\xb5\x11\x64\xa2\x2e\xbb\xc7\x02\x7b\x89\x33\x84\xa0\x2a\x50\x60\x5c\xe0\x3c\x65\x17\x9c\x49\x8b\x54\x5c\xa0\x79\x02\x7b\x89\xce\x00\x53\x00\x5a\xb7\x5a\x9a\x48\x41\x0f\x8f\x93\x89\x94\xf1\x25\x48\x77\xd0\xf4\x86\xe6\x2d\xfe\x58\x84\x19\x46\x34\x56\x8e\x26\xcb\x6d\x3a\x25\x4d\x3d\x9a\xb5\x36\x6d\x6d\xf9\x25\xda\x2b\x48\x14\xa3\x59\xa3\x4f\xdd\x1b\x5c\x8f\xee\xc1\x42\xd9\xc6\x78\xd9\x75\x82\xb2\x42\xc9\xec\xa6\xd2\xf2\x0e\x99\x30\xf3\x5e\xcb\x8e\x9c\x32\x29\x88\x2e\x89\x1e\x12\x83\x5f\xb2\x3b\x47\xc8\xfe\x22\x1c\x93\x56\x26\x88\x88\xe6\xeb\x9b\x8a\x1b\x00\x30\x7c\x7d\xaf\x26\x8d\x2c\x98\x5e\x00\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\x66\xe1\xc3\x28\x4f\xb5\xfa\x41\x9c\x5f\xd1\x8d\xad\xf6\xf5\xb6\x49\xcd\xb7\x62\x2b\x87\x35\x70\x6e\xd8\xdd\x39\xa2\x8f\x35\xa5\xad\x73\xb9\xf8\x43\x04\xc6\x06\xb5\x20\x4c\x2d\xa0\x3f\xd5\xb6\x41\x61\x24\x0c\xd9\x75\xb5\x73\x3b\xf6\x28\x78\xab\xe8\x74\xe6\xf1\xca\xb9\xdd\xf7\x92\x1f\x75\x56\x78\xf6\xee\x1e\xd3\xb3\x21\xdf\x36\x12\x2f\x4d\xff\x88\x71\x6b\x90\xb5\x63\xe9\x20\xda\x02\xb5\xbe\x7b\xb0\xa2\x49\x5f\x32\xbe\x9e\xd1\x76\xc0\xa6\x78\xf5\x45\x3d\x08\xa1\x46\xde\x62\x12\x9f\xfc\x34\x0a\x7d\xaa\x99\x8b\xa1\xa8\x67\x9d\x0f\x19\xec\xd7\x6d\x37\xb3\x39\xff\x40\x15\x0f\x8c\xc2\xe3\xaf\xa9\x35\xef\x26\x3f\x40\x7e\xba\x97\xda\x68\x3f\x5b\x0a\x6f\x31\x99\xdf\x92\xff\x87\x16\xc4\x12\xe2\x7f\x76\x41\x0c\x59\xab\xa6\x5d\xca\x05\x04\x7c\xc5\xba\x1e\x7b\xaf\x71\xa3\xb8\xa5\x57\xad\xdf\xe3\x77\xce\xb0\xc7\x61\x00\x21\x71\x6b\x07\x3b\x7a\x4d\xcf\x28\x51\x9a\x78\x1e\xd2\xdc\x42\x01\x3c\xea\x38\xd6\x23\x07\x06\x0c\x65\x5e\x61\xb2\x78\x8f\xef\x60\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\xf6\xc6\xc0\x6f\x38\x25\x83\xc5\x03\x46\x35\xd4\x9d\xb5\x77\x63\x5f\x43\x57\x31\x14\x0f\x25\x8b\x6b\x4c\x16\xef\x20\x79\x5e\x43\x68\x55\x2c\x36\x69\xd4\xa9\x72\x9b\x41\xcd\xca\x3c\x1b\xd4\x1c\x3e\x50\x6e\xa7\x64\x3f\xa3\xdb\x0b\x25\xfb\x19\xd5\x10\x72\x4e\x00\x84\x3d\x4d\x85\xbc\x94\x6e\x51\x8f\xce\x4b\xbc\x6c\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\x4b\x35\xde\x05\xe8\x37\xf4\x99\x41\xad\xad\xf5\xce\x0f\xb2\x07\x51\x18\x7d\xd2\x89\x4c\xbf\x84\x74\x10\x85\x9b\xbb\x19\xa5\x08\x7a\x4e\x2a\x82\x3e\x4d\xab\xbd\xeb\xa5\xa9\x9d\x1f\xc6\xc6\x8f\x83\x72\xb1\xc2\x57\xb7\xbd\x34\xe2\x36\x66\xcc\x6a\x9c\x95\xcc\x67\xe8\xb4\xf0\x52\xcd\x8d\x6c\x76\x6a\xb1\xea\x2b\xc8\x79\xb0\xee\x59\xd9\xbc\xf2\x59\xf1\xa5\x95\x32\xd8\x8d\xee\x80\x29\xad\xc7\xe6\x4e\xf9\x7a\x27\xdd\xae\xf6\xf8\xb0\x5f\x86\xeb\x26\x80\x89\x5f\x10\x4c\xbc\x90\x6e\x27\xde\xa1\xd1\x6d\x01\xeb\xb6\xa9\xf7\xca\x4b\xf4\x52\xca\xb0\x3c\xbf\x12\xaf\x38\x79\xa9\x14\x1a\xe3\x6a\xd6\x80\x78\x15\x82\x50\x9a\x61\x78\x83\xf6\x3a\x56\x8a\x2e\x23\xc8\x12\x36\xa3\x3e\xf1\x96\xde\x1c\x1b\x7e\x03\xfa\x93\x87\x36\xbc\xa5\x94\x0c\x16\xd5\xbc\x6d\x53\x07\x1e\x89\x0e\x2c\x18\x43\xf3\xf9\x15\x2e\xdf\x19\x07\x4b\xc0\xc4\xb8\x9e\x5f\x89\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\x6d\xd6\xbd\x34\x72\xab\xea\x5e\x92\xdf\x28\x68\xdd\xe2\x15\xa6\x89\x1b\x48\x63\x58\xa3\x0e\xf9\xa1\x4a\x3a\xdd\xbd\xa4\xc4\x00\x46\x9a\x05\xea\x13\x94\x12\x64\xe1\x36\xb8\x48\x23\x8b\xe6\xbc\x22\xe6\x27\xa5\xa5\x0d\xb4\xb7\x8e\xd3\x42\x2c\xe6\xf8\x5e\x16\xa7\xe3\xbd\x8c\x41\x6d\xb5\xf3\x1c\x8a\x02\x63\x1e\xe3\xa5\xc5\xb7\x98\x1c\xf4\x9b\xfc\x1a\xea\x3b\x8b\xbd\xcc\x3a\x56\x7a\x2d\x86\x6e\x7e\x3e\x1e\xf4\x8a\x71\xe4\x6f\xb3\x70\xcf\x50\x79\x09\x6e\x7b\xa5\xe5\x21\xb8\xef\x11\x24\x4c\xc7\x8e\xcf\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\xef\x9e\xa1\xb5\x1d\x7d\x87\x47\xc3\xce\x63\xa1\xf5\x29\x18\x1d\xfb\xb6\x45\x11\x83\x09\xc1\x39\x9f\x3b\x57\x4c\xb4\xc8\x66\x0a\x3a\xc4\x94\x73\x64\x2f\x3f\x91\x72\x82\x24\xe5\x70\xd1\xf2\x93\xde\x8f\xb9\xa9\x8a\x86\x1a\x3b\xab\xf7\xfa\x64\xd9\x60\xe6\xfb\xf6\x56\x79\xf1\xe4\x07\xbc\x3c\xe9\x94\xd8\x76\x76\x8d\xe1\x3f\x29\x86\x69\x07\x28\xbe\x63\x1c\xda\xd5\xf9\xa4\x44\x03\x61\x68\x30\xfe\x2c\x27\x69\x3f\xd8\x9d\x5e\x6b\x4f\x03\xb2\x50\x20\x00\x84\xe7\xfc\xb6\x71\x2e\x43\x4d\x3c\xc5\x8b\x42\x18\x18\x08\x32\x68\x86\xda\x21\x73\x1f\x08\x73\x9e\x22\x7d\x81\x8a\xc1\xbe\xf3\x33\x0c\x59\x99\xec\x25\x44\x10\xfb\x28\xd6\x5f\x8e\x47\xef\x7b\x3b\x40\x17\x68\xb2\x7d\x0e\x17\x81\x0b\x02\x2f\x64\xef\xa5\x29\x93\x4c\xfc\x61\xc6\x10\xeb\x0f\x93\xf3\xc1\x13\xe4\x72\x6e\xe0\x1b\x14\xb5\x3d\x98\x64\x78\xcc\x5a\x4a\x2f\x54\x40\x7b\x53\x78\x06\x0b\x92\x29\xc8\xbc\xf8\xd4\x1b\x28\x59\x79\xb0\x8d\x18\x1f\x27\xbd\x4d\x66\x87\x18\xc9\x81\x1c\xd1\xd9\x2c\x99\x37\x60\x27\x1d\x3b\xdf\x9c\xa8\x3f\x1d\x93\xe2\xd5\x90\xbc\xfa\xdc\x3e\x56\x36\x80\x8e\xf2\xe2\x1d\x9c\xd9\xf1\x8a\x2b\x9b\xb2\xe0\x77\x75\x99\x0d\xd9\x43\xce\xc3\x76\xe0\x08\x04\x13\xee\x5e\x9c\x6f\x17\x5c\x1e\x4b\xe4\xdc\x1b\x13\x4a\xff\x20\x4c\x4a\x67\x3f\xe1\xd8\x87\xac\xb0\xc8\xb8\xa7\xf5\x65\xcb\xb9\xa8\x8d\x4a\x94\xa7\xb2\x94\x96\x37\x81\x52\xe6\xa7\xc3\x94\xce\xf6\x43\x71\x21\xfe\x42\xbf\x38\x1d\x8d\x88\x24\xbd\x0d\x21\x6d\x7a\x1b\x8c\x21\x41\x37\x83\x9d\xfb\x77\x55\xa1\xb9\x98\x39\xef\xa4\x13\x13\xde\x5b\x74\x84\x4a\xd1\x0b\x13\x21\x7c\x07\xb3\x77\xce\xca\xfa\x43\x29\xf9\x13\x94\x94\xa2\x30\x20\x5a\x1b\x43\xa3\xb5\x9c\x3e\xf7\xef\xca\x1a\xc9\x68\x26\x8d\xcb\xb0\x22\xd4\xf2\xf6\x91\xb5\xc6\xa9\x66\x1c\xb4\x3f\x62\x2c\x52\xdb\xd8\x8e\x6e\x8f\x62\x1a\x86\x21\x85\x34\x86\x9d\x5e\x3e\xa1\x54\x8c\xe3\x70\x21\x5e\x58\xe7\x39\xa5\xa7\x47\x28\x6f\xec\x10\x52\xd0\xa2\xd7\xa2\x8b\xb5\x36\xad\x78\xfa\x3a\x4f\x0f\x7b\x57\xc8\xbd\xe1\xef\x25\x98\xcc\x53\x4b\x0e\x46\x9b\xed\x8f\xfc\x2a\x4c\xc0\x81\xef\xd8\xd8\x81\x5c\xa3\xfb\x0e\xda\xeb\xd5\x27\x8f\xa7\x71\xc6\x7a\x7e\x21\x76\xa7\xb7\x3b\x74\x43\xd0\x9d\xda\x92\xd7\x3f\xac\xab\x55\x20\x3c\x08\x46\xfc\xd8\x15\x0a\x44\x7c\xf6\xf2\x8b\x74\x2a\x07\xc1\x1e\x21\x40\xec\x91\xf4\x14\xb5\x4e\x2d\xdd\x88\x15\x31\xf7\x24\xf4\xf4\xe9\x5e\x64\x19\x71\x0b\x87\xd6\x3b\xbd\x35\x4f\x34\x3e\x1a\x01\xbc\x4b\x75\x2d\x5f\x2c\x2f\xa2\xf3\xad\x66\x35\x04\xe7\x2b\x8c\xfe\xff\x99\xd6\xb8\x31\x34\xfd\x76\xfc\x5c\xcb\xf7\x52\x63\x90\x47\xfc\x7f\x12\xcc\x81\x7e\xb8\xe6\x87\xb1\x95\x6f\x76\x09\x14\x2f\xef\xf3\xbc\xa0\xfb\x2a\x9f\xc2\xbc\xa1\x97\x08\x02\x91\xe9\x25\x82\x80\x19\xcf\xfb\x22\x00\x79\x01\x14\x10\x7b\xd8\x7d\x6b\x27\x81\x55\x39\x71\xd9\x8a\xdb\xcb\x30\xe9\xf7\xbe\xaf\xd9\x28\x7d\xfb\xea\xdd\xcd\x03\xab\x08\x40\x79\x86\x23\x64\x36\xcd\x21\x8b\xa7\x3a\x66\x65\xf3\x3d\x04\x7d\xa1\x15\xe3\x42\x74\x4e\xd5\xf2\xd2\x71\xcb\x70\x0f\x49\x6f\x30\x79\x07\xe5\xfc\xa0\x1b\x7a\x36\x99\xcb\xac\xc4\xab\xb1\xf3\xba\xef\x54\x48\x09\xae\x87\x78\xf1\xbb\x97\x43\x78\x60\xb6\xb1\xfb\xbd\x14\x8f\xcf\x1f\xaf\x0a\xbe\x53\x7b\x7c\xca\x9b\xa3\x32\xbe\xbb\xbe\x15\xbf\x9a\x66\x38\x92\x87\x02\xf7\xf4\x4e\xf7\x00\x56\xdf\xab\x81\x45\xec\x3b\xdd\x23\xec\x9f\x31\x25\x2c\x7c\xb9\xaf\x9d\x1a\xee\x75\x13\xa7\xdb\xcd\xe5\x2b\x34\x1f\xe9\x46\xe5\x6c\x87\xab\xc6\x77\x97\x82\x00\x9f\x1a\x71\x39\x7a\x5b\x08\xf0\x81\x75\xea\x1e\x77\x23\xdd\x07\x02\xe6\x8f\xb0\x4c\xa5\x6c\x72\x37\x08\x94\x9e\x49\x7c\x25\x74\x21\xf8\x45\xae\x3e\xd5\x0c\xca\x32\x9f\xbb\xd3\xb4\x2a\xf8\x78\xbe\x8d\x97\x78\xbe\xd0\x6f\x2f\x47\x96\x89\x5c\x0f\xf5\x7a\x31\x46\x5b\x59\xa2\x80\xac\x69\x6b\x61\x07\x8a\x09\xea\xe8\x4a\x31\x2f\x91\x9f\xb5\xcf\x09\xbb\xe0\x0f\xf7\x80\x0f\x1c\x4f\x39\x94\xc3\x74\xbc\xd2\x76\x02\x35\x49\x64\x08\xb3\x3e\x92\x13\x06\x1f\x58\xf2\xe9\x73\x12\xfa\x52\x18\x4a\xe5\x18\x2a\x8f\xb6\x48\xd2\x3d\xee\xaa\x2c\x85\x65\xdd\x9c\x48\x61\x65\x33\x3e\x23\x8c\x11\x1a\xd2\xe6\xf8\x2a\x4b\x70\x7f\xbf\xce\x0e\x0f\x69\x36\x4d\xbd\xde\xf9\x90\x3a\x58\x64\xe3\x91\x35\x5b\x64\xcb\x93\x6b\x86\x95\x7d\x1f\xf7\xfd\xbe\xef\x8a\x4d\x3f\x03\xb9\x27\xbe\x99\x41\xfc\x99\x63\x66\x66\x40\x14\xae\x21\x07\x7a\xff\xf6\x3a\x00\x4c\xe5\x01\x4e\xb6\x9b\x4d\xa7\x8d\xaa\xf7\x74\x61\xe7\x0d\x7d\x8a\x57\xb6\x8d\xf5\x73\xf8\x93\x7a\xb0\x23\x99\x5c\xb7\xd9\xcb\x03\x6f\x31\x11\x88\x13\xc0\x87\x11\xe7\xc1\x40\xc7\x8c\xa4\xbd\x67\x59\x5c\x11\x64\xe5\x95\x80\xee\xc4\x61\x40\x39\x70\xc0\xa4\x83\x78\x0e\xde\xe0\x25\xac\x7a\xb0\xd6\xd7\xbd\xa4\x2d\x01\xd3\xe9\x5e\xd7\x5b\x6b\xbd\xb8\x91\x7e\x17\x0a\x75\x76\x3b\x2f\x71\x6d\xb7\x27\xc0\x39\x72\x2a\x2d\x93\xd0\x07\x4a\x9b\xce\x23\xec\x56\x6c\x9b\xdb\x65\xa3\x7d\xfb\x62\x79\xa8\x01\x6a\x2e\x3d\x66\x99\x20\x0c\xfb\x9a\x03\x4c\xd7\x34\x8b\x58\x36\xf6\xe2\x17\x8e\x3b\x4d\x93\x29\x2f\x76\x62\x64\x21\x2b\x17\xee\xb2\xe4\x0e\xfd\x45\x42\xee\x35\x7e\xcd\x80\x72\x92\xcd\x28\x05\x00\x77\xea\x58\x63\x8c\x28\x06\xfa\x77\x75\xa4\xd8\x50\x0b\x80\x5b\xa8\x2e\x82\x6d\x95\x11\xdf\x3e\x76\x6e\xf7\x84\xb2\x1e\x7f\x37\x2b\x03\xfa\xf6\x7e\xdc\xd3\x3d\x55\xfd\xbb\xa2\x47\x11\x31\xbe\x3c\x66\x60\x6d\xa0\x0c\x88\x2b\xc8\x78\xa8\xa8\x5b\x28\xe5\xaa\x34\xe6\xbd\x4d\x83\x97\x9b\x34\x96\xc6\x10\xa1\x0b\xca\xa4\x02\x73\x22\xa1\xef\x60\x10\xfe\x6f\xf1\x8b\xc4\x95\x1c\x1b\xbe\xdd\x51\x27\xc5\xe9\x19\xbe\xe5\x11\xd4\x27\x86\xdc\xcb\x4f\xc9\x8a\x82\x06\x12\xb2\xc3\x4c\x0d\x2f\x0c\xde\xe3\x03\xd2\x83\x6a\xeb\x4e\x37\xca\x38\x7e\xc4\x85\x13\xc5\x35\x27\x4e\x57\xf8\xce\xfb\xbe\xde\x22\xee\xb0\xbe\x31\xc6\xdc\xf3\x84\x99\x65\x01\x34\x36\x20\x0d\xea\xbd\xde\xc6\xc7\x83\x58\x24\x40\xf3\x18\x92\x42\xbc\x0a\xb9\x01\x01\xdf\x24\xac\x37\x20\x57\x02\xe1\xe9\xb0\xa4\x39\xa6\x97\x43\x59\xe6\xbc\x4a\x79\x71\xb4\xda\x75\x1a\xab\xa7\xc1\x07\x66\x71\xa4\xda\x75\x9d\x2b\x6f\x29\x35\x57\x81\x52\x6a\xae\xfa\xa5\x54\xe6\x01\x39\x0f\x6b\xd7\xb5\x73\x5d\x60\x63\xb7\xb7\xd7\x25\xaf\x4c\xb9\x49\x3e\xfc\x16\x84\xfd\x47\xbd\x75\x7e\x3b\x28\xf7\x48\x58\xd3\x1d\xbf\xcb\x4a\xf0\x54\xca\xa7\x0e\xa7\x4e\x71\xb8\xbf\x76\xda\xab\x3f\x3e\xc2\xa3\xd0\x47\x5e\xb7\xeb\x47\xdf\x15\xdb\x8e\xc6\xbb\x97\xd9\xbe\xa3\x9b\x13\xf4\x89\x96\x58\x05\xba\x40\x16\x97\x39\xbc\xfd\x42\x3a\x02\x7b\xe4\x97\xa4\x0d\x1b\x42\x92\x05\xe3\x76\x90\xcb\x81\xa1\x5d\x3b\x7b\x60\x58\x76\x42\x89\x0f\x73\xe1\x05\xe5\xb7\x01\xcd\x2f\x98\x9c\x1a\x48\xcf\xc8\x84\xa7\xc6\xf9\x46\x63\x68\x1e\xbe\x2e\xfe\xd2\xd0\x85\xe4\xb8\x4a\x74\x97\x2c\xcb\xaf\xa0\xfd\xb9\x31\x79\xda\xfe\x19\x6f\x09\xbd\x78\x98\xc7\xf0\x12\x68\x64\xef\x9b\x9d\x4c\xb3\xfe\x8a\x12\xe2\x8e\x4c\x21\x45\x1a\x98\x0a\x1d\x3b\x86\x50\xd8\x11\xbc\x0f\x2b\xae\xd1\x13\x24\x76\xd6\x29\x9f\x14\xe7\xa2\xd0\x5b\xc8\x8b\x8a\x76\x5e\x38\x94\x0e\x01\xc1\xe2\xc8\x87\x70\x1f\x8b\x23\x8f\x11\xed\xea\x4e\x99\x2d\x4e\xbb\xff\x80\x4f\x71\x8d\x9f\x91\x42\x14\xc7\x03\x0f\x23\xec\xc8\x56\x40\x48\xc1\x33\x09\x3b\xa6\x8d\xe2\xb3\xca\x46\x3e\x36\xb9\x50\xf4\x0a\xbf\x97\x5b\xc8\xb0\x27\x37\x4b\xce\x8f\x6c\x4b\x75\x36\x67\x59\xbf\x5e\xbf\x99\x40\x2e\xac\x6e\xce\x59\xe0\x06\x9c\xb3\xb0\xf6\xf1\x08\x03\xb7\x3c\xd6\xa3\xf1\xf0\x02\xf7\x3c\x5c\x2d\x01\x2e\x82\xd4\x1b\xba\x9c\x7c\x21\x9e\x41\x01\x7c\x8d\xdc\xb4\x14\x85\x11\xd7\x1d\x24\x81\x2c\xf9\xa3\x38\xbb\x9f\x97\x76\x74\xe9\xf7\x5d\x02\x4f\x8f\x3b\x72\xbc\x3a\x28\x9c\x24\x4f\xf2\xc3\x8a\x34\x46\xdf\xab\x65\x12\x13\xe4\x9c\xc2\x91\x4d\xe3\xb9\x63\xf2\xba\xc4\x93\xc6\x45\x4c\x04\x29\x5b\xd9\x13\x2b\x20\xd0\x4b\xfa\x2e\x81\xf0\x70\xfe\x5e\x76\x11\xea\x25\x27\xcc\x6a\x35\x79\x9d\x86\x9f\xe6\x4a\xc3\x40\x4e\xc3\x19\xa3\xa3\xcb\x7c\xcb\x62\x17\x43\xf7\x83\xbd\xd7\xc1\x3b\x97\xe0\x6f\x38\x29\x6d\x9b\xf4\x9d\x30\x07\x08\x46\x9d\x36\x31\x7b\xa7\xa3\xda\x7c\x85\x5f\xc5\xec\x62\x1e\x01\x8b\x9a\x60\x13\x9b\xb8\x55\x9e\x4b\x44\xd9\xb7\x89\x94\x09\x67\x8e\xcf\xaf\x22\x6d\xe8\x78\x72\xd2\x99\x4e\x6f\x54\x3c\xcc\xe4\xde\x5c\xeb\x8d\x2a\x80\x61\x3b\x77\x21\x8e\x1a\x6c\xe4\xb7\xe2\x8d\xe9\x8e\x93\x4e\xe4\xa8\xb8\x27\x09\x53\xa4\x8c\xc6\x13\xe6\x8c\x30\x94\xb0\x4c\xf2\x00\xcd\x3b\x52\x06\xce\x5b\xd2\x94\x13\x6f\x07\xbe\x15\x97\x56\xf1\x73\x4e\x9a\x50\x74\xa3\x5a\x0c\x0d\xd0\xd6\xb1\x04\xd3\xf5\x59\xc8\x11\x97\x98\x93\xd8\x23\xe8\x16\xb1\xe1\xa0\x5a\x2c\x36\x1a\xa0\x42\x7b\x30\x8a\xc6\x4e\x6f\x77\xf8\xca\x4b\xd6\x2a\x0a\xa6\x71\x34\x5e\x7e\x12\x2f\x42\x7e\x8e\x01\x04\x35\x2c\x0d\x6a\x94\x63\x21\x0d\x4b\x5d\x63\x02\xee\xe3\x52\x38\x6d\xb6\x1d\x45\x91\xf8\xee\x64\xf1\xba\xd9\xc9\x41\x36\xfc\xd6\x58\x44\x74\x95\x52\x4b\x6c\x50\x66\x19\x5b\x08\x5d\x11\x71\xd0\x4b\xec\xdf\x92\x9a\x8f\xc1\x2b\x8a\x82\xdb\xa6\x96\xc3\x96\x8f\xa1\x2f\x87\x2d\xbe\x6c\xea\x0a\xd4\x28\xd7\xa9\x6c\x87\x88\x92\xde\x74\x8f\x20\x70\x7c\x2f\x2a\x87\xc6\xf7\x24\xd8\x2e\xb2\x50\x02\x2f\x34\x64\x05\xae\xf0\x82\x43\xf2\x82\x5d\x28\x82\xa1\xce\x52\x09\x8c\x72\xf6\x60\x01\x3e\x6e\x27\xf0\xe7\x57\x0b\xc0\xb9\x22\x19\xa7\x10\x28\x90\x8b\x53\x08\xa0\x58\x30\xcc\x85\x42\x48\x9e\xdf\xb6\x0d\x2e\xea\xab\x66\xa0\x78\xdd\xf0\xef\x9d\x74\x77\xd1\x79\xbd\x38\x8f\x08\x69\xae\xd9\xa9\x76\xec\x48\xa3\xa0\x9f\x09\x5e\x7d\xf2\xc1\x0d\x02\x97\x6f\xc8\xc0\x80\x10\x76\x74\x21\x22\x04\xfc\x2c\x00\xd4\x27\xd5\x8c\x99\x47\xd4\xaf\xf4\xcd\x2e\x08\x09\x8d\x0d\xd7\xd8\x46\x63\xb4\xd9\x02\x7f\x24\x0f\xef\x08\xb3\xf4\xd6\x74\x68\x3a\x2a\xb2\x41\xa1\x3d\x59\x7f\xac\x3e\x0c\x44\x15\xdc\xfc\x83\xf3\x3c\x3f\xd9\xda\x91\x61\x66\xe2\xf9\x1f\x60\x31\x2c\x4c\x8b\xe1\x41\xea\x18\x2e\x04\xe3\xc3\x10\x24\x87\x0e\x89\xf0\xec\xbe\xce\x52\x1a\x8c\x50\xac\x55\x75\xaa\xc1\xdb\xdb\xc8\x6d\xe1\x43\x5c\x76\xa9\x64\xab\x0a\x88\xa7\xfc\x59\xc0\x68\x43\xa6\x05\xca\x22\x6d\xe9\x25\xa5\x31\xca\xec\x3a\x43\x30\xd7\x11\x30\x87\x7a\x42\xd3\xd8\x2d\xa7\x4c\x21\x43\xcd\x08\x74\xd9\x75\x33\x6a\xe4\xba\x50\x9e\x86\x0f\x10\x64\x77\x4e\xb2\x3e\x4d\x87\x31\x64\xd9\x1e\x67\xf1\x6a\xd6\xda\x68\x73\xe3\x11\x09\x97\x33\x3e\xe7\xe3\x5b\x7d\x20\xda\x7f\x0c\xa1\x09\xf8\x38\x39\x78\x71\x64\x9e\x93\x45\xdc\xb6\x33\x8c\x37\x56\x61\xe4\x4a\x2e\x42\xe1\x2a\x67\x2f\x05\x2d\x15\x1b\x94\xc9\x1e\x05\xa2\xaf\xa2\x2e\xbc\xd4\x44\x51\x47\xcf\x3e\xfc\xf0\xd1\x85\xb0\xa3\x05\xbe\x0f\x7f\xf8\x08\x28\x3f\xfc\xf1\x23\x61\xe5\x67\x8e\x19\x6b\x7a\x9e\x32\x2b\xf1\xc3\x47\xf7\xbd\x1b\x9a\xef\xa7\x65\x85\xf4\x13\x30\xc8\xfc\x1f\x09\x71\x2f\x07\x95\x3d\xbd\x8f\x73\x99\x92\xb5\xe3\x87\xc9\xc9\x5e\x7a\xd6\x86\x80\x3d\x55\x7c\x38\x81\x5b\x14\xbe\x27\x64\xa5\x5e\x2e\x77\x31\x91\x8c\x87\x87\x9e\x8d\xba\x10\xbf\x51\xa0\x48\x7e\x46\x2a\x2b\xf0\x3d\x1d\xe1\x7e\x4f\x45\xff\x05\x3b\x0a\x08\x7e\xab\xe8\x85\xfe\x88\x80\xdf\xe3\xff\x0a\x04\x14\x9d\x32\x61\x08\xd1\x2a\xbf\xaa\x11\x1c\x86\x33\x35\x83\x12\x54\x2b\xd0\x50\xfd\xe5\x88\x88\x1e\x93\x68\x9c\xbf\x85\x79\x5b\xbc\xb1\x99\x23\xc4\x17\xb6\x4e\x52\x67\x86\x8e\x88\xf4\xd5\xd8\x98\x54\x53\x74\x91\x62\x5f\x8d\x10\x5f\x50\x9d\xe1\xe3\x77\x55\xbf\xbe\xb3\x44\xbc\xf8\x06\x6e\xa0\x9a\x51\x87\xf8\x80\xee\x3f\xbb\x68\x98\x33\xc5\x3a\x02\xff\x09\xf8\x79\x71\xff\x21\x2d\xee\x45\x74\x61\x71\x63\x6c\x5b\x2f\xb7\xd9\xca\x96\xdb\xa2\xb3\xd8\x44\x2c\xc3\xfd\x9c\xaf\xfd\x1c\x61\xb8\x56\x8a\x28\x43\xe3\x10\xe7\x57\xb6\xac\xfa\xe0\xad\xed\x3e\x56\x72\x0b\x8b\x5c\x6e\x6d\x05\xdc\x8b\x6f\xae\x23\x23\x33\xf6\x50\xd1\x27\xfc\xfa\x01\x18\xc8\x0f\x1c\xc5\x5e\x9c\xb9\xea\x87\x3d\x26\xd0\xfb\x9b\x98\xb0\xc3\x84\x9d\x1d\xf1\x79\xa2\x1f\x5a\xfc\x6c\xe5\x11\xbf\x0e\xf8\x75\x50\xea\x8e\x0a\xe3\x7e\xf6\x83\xd8\x5b\xe3\x77\x98\x72\xc4\xef\xa3\x92\xfc\xb8\x11\x45\xcb\xbf\x00\xd6\x14\x3e\xce\x5c\x45\xd5\x71\x7a\xf8\x38\x73\x15\xd4\xca\xa9\xf4\xf3\xcc\x55\xad\x3c\x72\x12\xfe\x3a\x73\x15\x54\xcf\x49\xf4\xf3\x0c\xc5\x10\xbf\x0b\x08\xe9\xf7\x99\xab\xa0\x1d\x9c\x48\x3f\xcf\x5c\x35\xc8\x43\x9d\xda\xc5\xbf\x30\x35\xb5\x8a\x7f\x55\xd5\x87\x76\xb0\xfd\xef\xd6\xa8\x8f\x55\x78\x83\x3b\x3d\x95\xff\x74\xb0\x7d\xf0\xde\x57\x03\x9d\x5f\xe1\xc3\x86\xf8\x38\x40\x67\x65\xbb\xaa\x38\x00\x52\xad\x4d\x3f\x46\x93\x30\x47\x52\x7f\xec\x19\x2c\x45\xcc\xa7\xeb\xcb\xc7\x5e\xad\x2a\x3c\xbf\xf0\xd6\xd6\x6b\x14\x3e\xf1\xe4\x02\x9d\x61\xbe\xfd\xdb\xdf\x10\x5e\xff\xae\xfe\xfe\x77\xf1\xea\x97\xef\x84\xfa\xd4\x28\xd5\x3a\xb1\x67\x07\xbd\x00\xb6\x97\x9f\x9e\x15\x90\xab\x8a\x6f\x95\xb2\x47\x18\xdd\x2a\xc5\xea\xab\xff\x3f\x00\x00\xff\xff\x7b\xbc\xe5\x3a\x1f\xf0\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: 61289, mode: os.FileMode(420), modTime: time.Unix(1490293430, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 61471, mode: os.FileMode(420), modTime: time.Unix(1490381500, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/context/repo.go b/modules/context/repo.go index 7c20d18529..338289a45a 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -126,13 +126,24 @@ func earlyResponseForGoGetMeta(ctx *Context) { }))) } -func RepoAssignment() macaron.Handler { +// [0]: issues, [1]: wiki +func RepoAssignment(pages ...bool) macaron.Handler { return func(ctx *Context) { var ( - owner *models.User - err error + owner *models.User + err error + isIssuesPage bool + isWikiPage bool ) + if len(pages) > 0 { + isIssuesPage = pages[0] + } + if len(pages) > 1 { + isWikiPage = pages[1] + } + _, _ = isIssuesPage, isWikiPage + ownerName := ctx.Params(":username") repoName := strings.TrimSuffix(ctx.Params(":reponame"), ".git") refName := ctx.Params(":branchname") @@ -174,20 +185,20 @@ func RepoAssignment() macaron.Handler { ctx.Handle(500, "GetRepositoryByName", err) } return - } else if err = repo.GetOwner(); err != nil { - ctx.Handle(500, "GetOwner", err) - return } + ctx.Repo.Repository = repo + ctx.Data["RepoName"] = ctx.Repo.Repository.Name + ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare + ctx.Repo.RepoLink = repo.Link() + ctx.Data["RepoLink"] = ctx.Repo.RepoLink + ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name + // Admin has super access. if ctx.IsSigned && ctx.User.IsAdmin { ctx.Repo.AccessMode = models.ACCESS_MODE_OWNER } else { - var userID int64 - if ctx.IsSigned { - userID = ctx.User.ID - } - mode, err := models.AccessLevel(userID, repo) + mode, err := models.AccessLevel(ctx.UserID(), repo) if err != nil { ctx.Handle(500, "AccessLevel", err) return @@ -195,16 +206,40 @@ func RepoAssignment() macaron.Handler { ctx.Repo.AccessMode = mode } - // Check access. + // Check access if ctx.Repo.AccessMode == models.ACCESS_MODE_NONE { if ctx.Query("go-get") == "1" { earlyResponseForGoGetMeta(ctx) return } - ctx.NotFound() - return + + // Redirect to any accessible page if not yet on it + if repo.IsPartialPublic() && + (!(isIssuesPage || isWikiPage) || + (isIssuesPage && !repo.CanGuestViewIssues()) || + (isWikiPage && !repo.CanGuestViewWiki())) { + switch { + case repo.CanGuestViewIssues(): + ctx.Redirect(repo.Link() + "/issues") + case repo.CanGuestViewWiki(): + ctx.Redirect(repo.Link() + "/wiki") + default: + ctx.NotFound() + } + return + } + + // Response 404 if user is on completely private repository or possible accessible page but owner doesn't enabled + if !repo.IsPartialPublic() || + (isIssuesPage && !repo.CanGuestViewIssues()) || + (isWikiPage && !repo.CanGuestViewWiki()) { + ctx.NotFound() + return + } + + ctx.Repo.Repository.EnableIssues = repo.CanGuestViewIssues() + ctx.Repo.Repository.EnableWiki = repo.CanGuestViewWiki() } - ctx.Data["HasAccess"] = true if repo.IsMirror { ctx.Repo.Mirror, err = models.GetMirrorByRepoID(repo.ID) @@ -217,19 +252,12 @@ func RepoAssignment() macaron.Handler { ctx.Data["Mirror"] = ctx.Repo.Mirror } - ctx.Repo.Repository = repo - ctx.Data["RepoName"] = ctx.Repo.Repository.Name - ctx.Data["IsBareRepo"] = ctx.Repo.Repository.IsBare - gitRepo, err := git.OpenRepository(models.RepoPath(ownerName, repoName)) if err != nil { ctx.Handle(500, "RepoAssignment Invalid repo "+models.RepoPath(ownerName, repoName), err) return } ctx.Repo.GitRepo = gitRepo - ctx.Repo.RepoLink = repo.Link() - ctx.Data["RepoLink"] = ctx.Repo.RepoLink - ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name tags, err := ctx.Repo.GitRepo.GetTags() if err != nil { @@ -288,6 +316,8 @@ func RepoAssignment() macaron.Handler { ctx.Data["GoDocDirectory"] = prefix + "{/dir}" ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}" } + + ctx.Data["IsGuest"] = !ctx.Repo.HasAccess() } } diff --git a/modules/form/repo.go b/modules/form/repo.go index 5348698934..4c01d3f8bc 100644 --- a/modules/form/repo.go +++ b/modules/form/repo.go @@ -92,9 +92,11 @@ type RepoSetting struct { // Advanced settings EnableWiki bool + AllowPublicWiki bool EnableExternalWiki bool ExternalWikiURL string EnableIssues bool + AllowPublicIssues bool EnableExternalTracker bool ExternalTrackerURL string TrackerURLFormat string diff --git a/public/css/gogs.css b/public/css/gogs.css index c7a19c19a2..ad6b682bbb 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2321,6 +2321,9 @@ footer .ui.language .menu { .repository.wiki.view > .markdown h6:first-of-type { margin-top: 0; } +.repository.settings.options .box.field { + padding-left: 27px; +} .repository.settings.collaboration .collaborator.list { padding: 0; } diff --git a/public/js/gogs.js b/public/js/gogs.js index 17c7b53db0..659bc741f7 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -265,11 +265,8 @@ function initRepository() { } }); $('.enable-system-radio').change(function () { - if (this.value == 'false') { - $($(this).data('target')).addClass('disabled'); - } else if (this.value == 'true') { - $($(this).data('target')).removeClass('disabled'); - } + $($(this).data('enable')).removeClass('disabled'); + $($(this).data('disable')).addClass('disabled'); }); } @@ -1289,7 +1286,7 @@ $(document).ready(function () { $this.data('url', url); $this.removeClass('disabled'); } else { - $this.remove(); + $this.remove(); } }); }); diff --git a/public/less/_repository.less b/public/less/_repository.less index efda68f3c2..7d2c284769 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1325,6 +1325,12 @@ } &.settings { + &.options { + .box.field { + padding-left: 27px; + } + } + &.collaboration { .collaborator.list { padding: 0; diff --git a/routers/repo/issue.go b/routers/repo/issue.go index bd60890ad0..d2d95bfc16 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -89,8 +89,7 @@ func RetrieveLabels(ctx *context.Context) { ctx.Data["NumLabels"] = len(labels) } -func Issues(ctx *context.Context) { - isPullList := ctx.Params(":type") == "pulls" +func issues(ctx *context.Context, isPullList bool) { if isPullList { MustAllowPulls(ctx) if ctx.Written() { @@ -247,6 +246,14 @@ func Issues(ctx *context.Context) { ctx.HTML(200, ISSUES) } +func Issues(ctx *context.Context) { + issues(ctx, false) +} + +func Pulls(ctx *context.Context) { + issues(ctx, true) +} + func renderAttachmentSettings(ctx *context.Context) { ctx.Data["RequireDropzone"] = true ctx.Data["IsAttachmentEnabled"] = setting.AttachmentEnabled @@ -492,7 +499,7 @@ func UploadIssueAttachment(ctx *context.Context) { uploadAttachment(ctx, strings.Split(setting.AttachmentAllowedTypes, ",")) } -func ViewIssue(ctx *context.Context) { +func viewIssue(ctx *context.Context, isPullList bool) { ctx.Data["RequireHighlightJS"] = true ctx.Data["RequireDropzone"] = true renderAttachmentSettings(ctx) @@ -511,10 +518,10 @@ func ViewIssue(ctx *context.Context) { ctx.Data["Title"] = issue.Title // Make sure type and URL matches. - if ctx.Params(":type") == "issues" && issue.IsPull { + if !isPullList && issue.IsPull { ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(issue.Index)) return - } else if ctx.Params(":type") == "pulls" && !issue.IsPull { + } else if isPullList && !issue.IsPull { ctx.Redirect(ctx.Repo.RepoLink + "/issues/" + com.ToStr(issue.Index)) return } @@ -652,12 +659,27 @@ func ViewIssue(ctx *context.Context) { ctx.HTML(200, ISSUE_VIEW) } +func ViewIssue(ctx *context.Context) { + viewIssue(ctx, false) +} + +func ViewPull(ctx *context.Context) { + viewIssue(ctx, true) +} + func getActionIssue(ctx *context.Context) *models.Issue { issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index")) if err != nil { ctx.NotFoundOrServerError("GetIssueByIndex", errors.IsIssueNotExist, err) return nil } + + // Prevent guests accessing pull requests + if !ctx.Repo.HasAccess() && issue.IsPull { + ctx.NotFound() + return nil + } + return issue } @@ -803,9 +825,8 @@ func UpdateIssueAssignee(ctx *context.Context) { } func NewComment(ctx *context.Context, f form.CreateComment) { - issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index")) - if err != nil { - ctx.NotFoundOrServerError("GetIssueByIndex", errors.IsIssueNotExist, err) + issue := getActionIssue(ctx) + if ctx.Written() { return } @@ -820,6 +841,7 @@ func NewComment(ctx *context.Context, f form.CreateComment) { return } + var err error var comment *models.Comment defer func() { // Check if issue admin/poster changes the status of issue. @@ -895,8 +917,8 @@ func UpdateCommentContent(ctx *context.Context) { return } - if !ctx.IsSigned || (ctx.User.ID != comment.PosterID && !ctx.Repo.IsAdmin()) { - ctx.Error(403) + if ctx.UserID() != comment.PosterID && !ctx.Repo.IsAdmin() { + ctx.Error(404) return } else if comment.Type != models.COMMENT_TYPE_COMMENT { ctx.Error(204) @@ -928,8 +950,8 @@ func DeleteComment(ctx *context.Context) { return } - if !ctx.IsSigned || (ctx.User.ID != comment.PosterID && !ctx.Repo.IsAdmin()) { - ctx.Error(403) + if ctx.UserID() != comment.PosterID && !ctx.Repo.IsAdmin() { + ctx.Error(404) return } else if comment.Type != models.COMMENT_TYPE_COMMENT { ctx.Error(204) diff --git a/routers/repo/setting.go b/routers/repo/setting.go index eb1394765a..3a0df7134e 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -138,9 +138,11 @@ func SettingsPost(ctx *context.Context, f form.RepoSetting) { case "advanced": repo.EnableWiki = f.EnableWiki + repo.AllowPublicWiki = f.AllowPublicWiki repo.EnableExternalWiki = f.EnableExternalWiki repo.ExternalWikiURL = f.ExternalWikiURL repo.EnableIssues = f.EnableIssues + repo.AllowPublicIssues = f.AllowPublicIssues repo.EnableExternalTracker = f.EnableExternalTracker repo.ExternalTrackerURL = f.ExternalTrackerURL repo.ExternalTrackerFormat = f.TrackerURLFormat diff --git a/templates/.VERSION b/templates/.VERSION index f50cab2803..5ce571bf52 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.10.29.0324 \ No newline at end of file +0.10.30.0324 \ No newline at end of file diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index 2193d0a54e..15f6025dc5 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -13,34 +13,36 @@ {{if .IsFork}}
{{$.i18n.Tr "repo.forked_from"}} {{SubStr .BaseRepo.RelLink 1 -1}}
{{end}} -
- - - {{if .CanBeForked}} + {{if not $.IsGuest}} + + + {{if .CanBeForked}} + + {{end}} +
+ {{end}} @@ -49,15 +51,17 @@ {{if not .IsDiffCompare}}