diff --git a/README.md b/README.md index 012c0aaf00..da7d01596e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true) -##### Current version: 0.8.58 +##### Current version: 0.8.59 | Web | UI | Preview | |:-------------:|:-------:|:-------:| diff --git a/cmd/web.go b/cmd/web.go index a7aea19256..5092fc2b63 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -334,7 +334,7 @@ func runWeb(ctx *cli.Context) { } reqRepoAdmin := middleware.RequireRepoAdmin() - reqRepoPusher := middleware.RequireRepoPusher() + reqRepoWriter := middleware.RequireRepoWriter() // ***** START: Organization ***** m.Group("/org", func() { @@ -448,7 +448,7 @@ func runWeb(ctx *cli.Context) { m.Post("/label", repo.UpdateIssueLabel) m.Post("/milestone", repo.UpdateIssueMilestone) m.Post("/assignee", repo.UpdateIssueAssignee) - }, reqRepoAdmin) + }, reqRepoWriter) m.Group("/:index", func() { m.Post("/title", repo.UpdateIssueTitle) @@ -460,7 +460,7 @@ func runWeb(ctx *cli.Context) { m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel) m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel) m.Post("/delete", repo.DeleteLabel) - }, reqRepoAdmin, middleware.RepoRef()) + }, reqRepoWriter, middleware.RepoRef()) m.Group("/milestones", func() { m.Combo("/new").Get(repo.NewMilestone). Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost) @@ -468,7 +468,7 @@ func runWeb(ctx *cli.Context) { m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost) m.Get("/:id/:action", repo.ChangeMilestonStatus) m.Post("/delete", repo.DeleteMilestone) - }, reqRepoAdmin, middleware.RepoRef()) + }, reqRepoWriter, middleware.RepoRef()) m.Group("/releases", func() { m.Get("/new", repo.NewRelease) @@ -476,7 +476,7 @@ func runWeb(ctx *cli.Context) { m.Get("/edit/:tagname", repo.EditRelease) m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost) m.Post("/delete", repo.DeleteRelease) - }, reqRepoAdmin, middleware.RepoRef()) + }, reqRepoWriter, middleware.RepoRef()) m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest). Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost) @@ -503,7 +503,7 @@ func runWeb(ctx *cli.Context) { m.Combo("/:page/_edit").Get(repo.EditWiki). Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost) m.Post("/:page/delete", repo.DeleteWikiPagePost) - }, reqSignIn, reqRepoPusher) + }, reqSignIn, reqRepoWriter) }, repo.MustEnableWiki, middleware.RepoRef()) m.Get("/archive/*", repo.Download) @@ -511,7 +511,7 @@ func runWeb(ctx *cli.Context) { m.Group("/pulls/:index", func() { m.Get("/commits", middleware.RepoRef(), repo.ViewPullCommits) m.Get("/files", middleware.RepoRef(), repo.ViewPullFiles) - m.Post("/merge", reqRepoAdmin, repo.MergePullRequest) + m.Post("/merge", reqRepoWriter, repo.MergePullRequest) }, repo.MustAllowPulls) m.Group("", func() { diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index b89a423ed1..95576ad2c2 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -476,7 +476,7 @@ issues.closed_at = `closed %[2]s` issues.reopened_at = `reopened %[2]s` issues.commit_ref_at = `referenced this issue from a commit %[2]s` issues.poster = Poster -issues.admin = Admin +issues.collaborator = Collaborator issues.owner = Owner issues.sign_up_for_free = Sign up for free issues.sign_in_require_desc = to join this conversation. Already have an account? Sign in to comment diff --git a/gogs.go b/gogs.go index 6cf28b0f93..d6b119d207 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.8.58.0305" +const APP_VER = "0.8.59.0305" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/issue.go b/models/issue.go index 0cda7150a1..7f1889b361 100644 --- a/models/issue.go +++ b/models/issue.go @@ -298,16 +298,18 @@ func newIssue(e *xorm.Session, repo *Repository, issue *Issue, labelIDs []int64, return err } - // During the session, SQLite3 dirver cannot handle retrieve objects after update something. - // So we have to get all needed labels first. - labels := make([]*Label, 0, len(labelIDs)) - if err = e.In("id", labelIDs).Find(&labels); err != nil { - return fmt.Errorf("find all labels: %v", err) - } + if len(labelIDs) > 0 { + // During the session, SQLite3 dirver cannot handle retrieve objects after update something. + // So we have to get all needed labels first. + labels := make([]*Label, 0, len(labelIDs)) + if err = e.In("id", labelIDs).Find(&labels); err != nil { + return fmt.Errorf("find all labels: %v", err) + } - for _, label := range labels { - if err = issue.addLabel(e, label); err != nil { - return fmt.Errorf("addLabel: %v", err) + for _, label := range labels { + if err = issue.addLabel(e, label); err != nil { + return fmt.Errorf("addLabel: %v", err) + } } } diff --git a/models/issue_comment.go b/models/issue_comment.go index e1230d8136..e63b39085b 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -39,7 +39,7 @@ type CommentTag int const ( COMMENT_TAG_NONE CommentTag = iota COMMENT_TAG_POSTER - COMMENT_TAG_ADMIN + COMMENT_TAG_WRITER COMMENT_TAG_OWNER ) diff --git a/models/user.go b/models/user.go index 3c87c4a64b..bd4cace44d 100644 --- a/models/user.go +++ b/models/user.go @@ -348,19 +348,15 @@ func (u *User) UploadAvatar(data []byte) error { // IsAdminOfRepo returns true if user has admin or higher access of repository. func (u *User) IsAdminOfRepo(repo *Repository) bool { - if repo.MustOwner().IsOrganization() { - has, err := HasAccess(u, repo, ACCESS_MODE_ADMIN) - if err != nil { - log.Error(3, "HasAccess: %v", err) - } - return has + has, err := HasAccess(u, repo, ACCESS_MODE_ADMIN) + if err != nil { + log.Error(3, "HasAccess: %v", err) } - - return repo.IsOwnedBy(u.Id) + return has } -// CanWriteTo returns true if user has write access to given repository. -func (u *User) CanWriteTo(repo *Repository) bool { +// IsWriterOfRepo returns true if user has write access to given repository. +func (u *User) IsWriterOfRepo(repo *Repository) bool { has, err := HasAccess(u, repo, ACCESS_MODE_WRITE) if err != nil { log.Error(3, "HasAccess: %v", err) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 531f6155ef..12b8fec7f8 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4322,7 +4322,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x84\xc3\x76\x84\x5c\x8e\xee\x3e\xff\xff\x6e\x74\xb4\xdd\x2b\x4b\xed\xcb\x19\xcb\xd2\x48\x72\xf7\xce\x76\x38\xd8\xac\x22\x55\xc5\x71\x15\x59\x43\xb2\x24\x6b\x26\xe6\x0d\xf6\x01\xf6\xf9\xf6\x49\x16\xf8\x01\xc8\x0b\xc9\x92\xec\x9e\xe3\x0f\x16\x2b\x13\x79\x43\x22\x91\x00\x12\x89\xcc\xb7\xdb\xac\x28\xbb\x45\xfa\x3c\x3d\x4c\xb7\x79\x55\xaf\xcb\xae\x4b\xbb\x72\x7d\xf5\x74\xd5\x74\x7d\x59\xa4\xaf\xab\x9e\x7e\xb7\xd7\xd5\xa2\x4c\x92\x55\xb3\x29\x09\xf4\x0d\xfd\x49\x8a\xbc\x5b\xcd\x9b\xbc\x2d\x28\xe1\xd8\xbe\x93\xf2\xf3\x76\xdd\xb4\x0c\xf4\xb3\x7c\x25\xab\x72\xbd\xe5\x32\xf4\x27\xe9\xaa\x65\x9d\x55\x35\xfd\xbc\xa0\xaf\xf4\x6d\x2d\x29\xcd\xae\xb7\xa4\xd3\x5d\x2f\x69\xbb\xad\x25\x7d\xd8\x26\x6d\xb9\xac\xa8\x37\x2d\x25\x9d\xeb\x67\x72\x53\xce\xbb\xaa\xe7\x96\x7e\x95\xaf\xe4\xba\x6c\xbb\xaa\xe1\xda\x7f\x91\xaf\x64\x9b\x2f\x19\xe0\x8c\xfe\x24\x7d\xb9\xd9\xae\x73\x14\xb8\xd4\xcf\x64\x9d\xd7\xcb\x9d\xc0\xbc\xd3\xcf\x64\xd1\x96\x94\x95\xd5\xe5\x0d\xa5\x1e\xe1\xc7\x6c\x36\x4b\x76\x84\x84\x6c\xdb\x36\x57\xd5\xba\xcc\xf2\xba\xc8\x36\x32\xcc\x0f\x94\x9e\x6a\x7a\x4a\xe9\x29\xa7\x63\x08\x65\x41\x43\xcd\xf2\x4e\xc7\x41\xb8\xa4\x91\xe7\x5d\x82\xaa\xea\x7c\x63\xa5\xf9\x33\x29\x37\x79\xb5\x66\xac\xf1\x5f\xea\x77\xd7\xdd\x34\x40\xed\x99\x7e\x12\x0e\xb2\xfe\x76\x5b\x02\x05\x4f\x2f\xe9\x2b\x59\xe4\xdb\x7e\xb1\xca\xb9\x9b\xf2\x95\x10\xd0\xb6\x21\x5c\x34\xed\x2d\xe0\xec\x47\xd2\xb4\xcb\xbc\xae\xfe\x91\xf7\x82\x9f\xd3\xe0\x67\xb2\xa9\xda\xb6\x61\xd4\x9e\xe0\x23\xa1\x91\x67\x5c\x0f\xa5\xbc\x27\x24\x04\xb5\x70\xce\xa6\x5a\xb6\x82\x45\xce\x3c\xc1\x2f\xae\x45\xf2\xb4\x26\xc9\x72\xb5\x5d\x35\xed\x27\x4d\x7d\xc5\x9f\x83\x2a\xa9\x73\x9a\x1b\xf7\x2b\xaf\x69\x3e\x34\xf7\x04\x3f\x22\x80\x2e\xc9\x8b\x0d\x61\x78\x9b\xd7\x25\xa3\xee\x90\x7f\x11\xbe\xe8\x57\x92\x2f\x16\xcd\xae\xee\xb3\xae\xec\xfb\xaa\x5e\xf2\x1c\x1c\x4a\x52\x7a\xa1\x49\x49\x90\xe7\xd2\x6e\x9b\x9d\x9b\x65\x4a\xff\x2b\xfd\x4c\xcf\xe4\xa7\xe4\x05\x85\x90\xe9\x4a\x52\x93\x7d\x75\x5d\xf5\x55\x29\x8d\xd9\x8f\x64\xbb\x5b\xaf\x09\x9f\x7f\xdf\x95\x5d\xcf\x59\x67\xf4\x9b\x30\x20\xbf\x93\xaa\xeb\x76\x28\xf1\x16\x1f\x09\x4d\x6a\xbd\xc0\x70\x8e\xf0\x91\x24\xbf\x75\x65\xde\x2e\x56\x1f\x13\xf9\x8b\xde\xf2\x07\x13\xe5\xbe\xe9\x66\x0a\x53\xea\x92\x16\xac\x81\x64\xd1\x14\xfc\xe3\x88\xfe\x50\xd5\x55\xdd\xf5\xf9\x7a\xfd\x31\xd1\x0f\x06\x93\x2f\x99\x82\xbe\xea\x81\x07\x4d\x4c\x2f\xfa\x72\xdb\xf1\x1c\xa6\xaf\xaa\xb6\xeb\x9f\xf6\x15\x51\xf1\xf9\xae\x4e\x8a\x66\xf1\x89\xd6\x07\xaf\x75\xb4\xfc\xf6\x2a\x25\x74\x3d\xa2\x15\xd2\xee\xea\x9a\x10\x94\xbe\x6e\x08\x69\xd4\x4c\x45\xed\x1f\x03\xfa\x20\xdd\xae\xcb\xbc\x23\x90\x32\x2f\xd2\x1f\xf3\xb4\xcf\xdb\x65\xd9\x3f\x7f\x90\xcd\x69\x5d\x7e\x7a\x90\xae\xda\xf2\xea\xf9\x83\x87\xdd\x83\x17\xaf\x77\x54\x6c\x5d\xd5\x65\xf7\xe3\xb3\xfc\x45\xba\xc8\x29\x87\xd0\x78\x9b\xce\xcb\x2b\x5e\x86\xd4\x56\x4a\xf4\x5f\x2f\x79\x09\xde\xf6\x2b\x6e\x90\x68\x81\x3e\xba\x94\x79\xc0\x37\x09\x4f\x00\xf1\x88\xac\x98\x1b\xbf\x43\x87\x90\xdc\xd2\x04\x9c\xdc\x5e\xfc\xe5\xdd\x41\x7a\x46\x4c\x6f\xd9\x96\xf8\xa6\xff\xa8\xc4\xf7\x29\x8d\xf6\xb2\x3a\x7e\x39\x4b\xa8\xac\x21\xe4\x38\xef\xf3\x39\xf7\xdd\xcd\x3f\x67\xca\xf2\x74\x79\x58\xa4\xcc\x46\xc1\x32\xbb\x3e\x9a\x96\xa9\x25\x4e\x75\x28\x5f\x70\x75\xbc\x67\xe6\x40\xe9\x0e\xb3\x67\x82\x33\xaa\x2a\x7d\xfb\xfe\xfd\xe9\xf1\xcb\xb4\xac\x97\x84\x99\xf4\xa6\xea\x57\xe9\xae\xbf\xfa\xef\xd9\xb2\xac\xcb\x36\x5f\x67\x8b\x8a\x91\xd2\x12\xc9\xa6\x84\x25\x19\xe2\x2c\xe9\xba\x35\xf1\x2e\x50\xc1\xc5\xc5\xbb\xf4\x84\x29\x61\x9b\xf7\x2b\x74\xa4\x5f\x25\xdd\xdf\xd7\x8c\x28\xd7\xe0\xe5\xaa\x4c\xb1\x1c\x00\xd4\x5c\x0d\xf1\x92\x16\xda\xd7\x59\xfa\xe3\xbc\x7d\x11\xf4\x2f\x9f\x77\xcd\x7a\xd7\x6b\xc9\x9b\x55\x59\x63\xa2\x88\x94\xda\x9e\x18\xa1\x6d\x2b\xb3\xa4\x6c\xdb\x8c\x58\x72\x7f\xcb\xd3\xa3\x7d\xd9\xd7\x8a\x54\x46\xab\xa4\x6e\x7a\x9a\xfe\x14\xe5\xa4\x8a\xaa\xbe\xce\xd7\x55\x41\x93\xe4\x11\x19\x97\x45\x62\xd1\xd0\x7c\x73\x69\xa2\xe8\xe6\x06\x28\xa2\xb5\x4b\x3b\x46\xfa\x60\xf6\x00\x2c\xfc\xc1\xd3\x07\xb3\xa4\x6e\x32\xe1\x2f\xcc\xec\x8b\xaa\xcb\xe7\xc4\xf8\x65\x23\x6a\x8d\x8f\xfe\x95\xe9\x4e\xba\xa2\x10\x69\x04\xc1\x73\xc2\x9b\x1b\xf6\x14\x26\xca\x9c\x76\x00\xb0\x29\x65\x50\xe1\xd8\x8d\x9b\x39\xba\x10\x86\xe6\x12\x46\x63\x4e\x6c\xa2\x8d\x2a\x0f\xb7\xdb\x75\xb5\x90\xa6\x5f\x4b\x9e\x27\x50\xde\xea\x15\x29\x21\x1c\x08\xcc\xf2\x02\x32\xa3\x5e\x33\xc3\x4b\xa3\x9d\x03\xe5\x57\x25\xad\xb8\xd5\x6e\x29\xdb\xdd\xba\xd9\x15\xdf\x80\x11\xd9\xcc\x79\x3e\x94\x9e\x37\xd4\x61\x50\x95\x03\xf0\x4d\x1c\x12\x43\x61\xe9\xa2\x2d\x37\x4d\xcf\x88\xd3\x62\xcc\x41\x6f\x2a\xca\xa4\x91\x76\xf9\x35\xed\x9b\x7d\x23\x4b\xb9\xa0\xa5\xba\xe0\x8a\x89\xf3\xed\x48\x44\x90\xe5\x44\xfc\x47\x96\x94\xa5\xc5\xb4\x0b\xa8\xcd\x8e\x56\xe1\x8a\x2a\x63\xc4\xb3\x88\x43\x55\x4e\xf5\x13\x43\xa2\x7a\xc0\x1d\x68\xc5\x37\xb4\x1d\xf3\x44\x1f\xe3\x43\x7f\x87\xf5\x53\xaf\xf2\xab\x2b\xea\x55\x47\xab\xe9\x4d\xba\x58\x37\xb4\x14\x3f\x9c\xbf\xeb\x78\xa1\xad\xb2\x6d\xd3\x42\xb4\xa1\xac\x33\xfa\x74\x69\x01\xa2\x19\xa2\xde\x6d\xe6\xf4\xeb\x66\x55\x11\x83\x07\xda\xb9\x04\xaf\x0f\x4a\xa5\x26\x76\x1d\x4d\xe1\x41\x4a\x4b\x8b\x46\x40\x28\x03\x01\xf0\x18\x8c\xea\x18\xfc\x8a\x68\x6c\xd7\xd2\x72\x5a\xf5\xfd\xd6\x5a\x7e\x73\x79\x79\x26\x4d\xbb\xd4\xbb\xda\xce\x03\xca\xc0\x1c\xac\x59\xd8\xaa\xd3\xa6\x9e\x81\x48\x76\xed\x7a\x40\x3f\x34\x56\xcb\xd9\x83\x17\xee\xc2\x33\xfe\xef\xc2\xa3\x07\x78\xee\x48\x8c\xbc\x01\x35\x11\x8e\x21\x00\xcd\x92\x75\xb3\xcc\x5a\x9a\x0d\x23\xa6\x77\xcd\x52\x08\x28\xca\xf0\x2d\x1d\x1b\x49\x30\x36\x6e\x5a\x16\x08\x09\x12\x0c\x8b\x27\x99\x16\x49\xb3\xe5\x7e\x06\xab\xe4\x54\x13\xfc\xd2\x40\xdb\x2e\x1f\x22\x18\x65\x82\x39\x05\xe2\xc2\x86\xf0\xa7\xdc\xfc\xe2\x84\xb0\x0a\x96\x8e\xd4\xab\xb6\xd9\x50\xea\x2b\xfa\xe3\x13\x7c\x1f\x4f\xb8\x3e\xc0\xe4\x45\x41\x9b\x4d\x77\x90\x9e\xbf\x3a\x4a\xff\xbf\xef\xbf\xfb\x6e\x96\xbe\xed\x79\x61\x33\xad\xff\x8d\x69\x34\x57\x4c\x78\x50\x62\x80\x3d\x91\xf1\x03\x5e\xa8\x0f\xd2\x1f\x91\xfb\x3f\xca\xcf\x39\x89\xb0\xe5\x6c\xd1\x6c\x5e\x30\x73\xdf\xe4\xc4\x4a\x38\x87\xa8\x5f\x97\xc5\x45\x59\x17\xf4\x21\x02\xa5\x66\x05\xcc\x45\xb3\x03\xf1\x52\xe4\xea\x6c\xd1\xd4\x57\x55\xcb\xe3\xf9\xb9\x06\x6d\x99\xc4\x4d\x42\x03\x72\x4c\x3a\x23\x94\x11\x3f\xaa\xae\x6e\x3d\x28\x46\xfa\x9e\x13\x95\x3c\x12\xa1\xe1\x4c\x59\xbd\xc3\xf1\x85\x90\x36\x53\xc1\x29\x8d\xae\x35\x74\x77\x1e\xdf\xcd\xd5\x15\xef\xf8\xb6\x57\x69\x0b\xa7\x92\x2a\xdb\x56\x08\x42\xa4\xbd\x85\xce\x70\xac\x4b\xe2\xe8\xf8\x7d\x5a\x5e\x13\xed\x32\x0f\x6d\x9b\x62\xb7\x00\xbd\x32\xec\x01\xb3\x7e\x62\x38\x1d\xad\xb4\x45\xa9\xc4\xe2\x58\x0e\x77\x8d\xf9\xda\x82\x80\x88\xd3\x18\xeb\x27\x41\xf7\x9a\xf6\x91\x36\x68\xe2\xb5\x25\x69\xef\x47\xb0\xa3\x4e\xb9\x12\x3c\xf2\x05\x4d\x38\x11\x85\xf4\xa2\x93\x4e\x49\x36\x2d\x1e\x5a\x15\x3b\x52\xa0\xf2\x82\xfa\x32\xbf\x05\x17\xeb\x98\x16\x8a\xf2\x2a\xdf\xad\x7b\xdf\xaf\xc1\x96\x64\x2d\x5d\xb0\x0e\x17\xe6\x4d\x16\x18\x75\x10\xc4\xd3\x0d\xcb\x12\x15\xd6\x24\x6d\xc9\xd6\xc5\xe4\x2a\x4a\x92\xed\x62\xc4\xec\x4a\x4c\x4f\xe6\x55\x12\x9d\x2f\xd3\x4c\xe2\x7c\xd7\xec\xb9\xc8\x5f\x29\x36\x6e\xae\xd1\x2a\x60\x81\x65\xba\x2f\xb3\x44\x85\xb6\x4c\xb5\xc9\xec\xba\x82\xae\xe6\xc8\x55\xaa\x54\x0d\x93\xf9\xc2\x2f\x0c\xc0\x4a\x60\x37\x59\xd6\xf5\xe6\x94\x07\xd9\x39\x5d\x4d\x70\xce\xc3\x45\x0b\x2c\x48\xd2\x2c\x5d\x57\xd8\x34\x94\x60\x80\x97\x39\xcb\x3a\xd4\x34\x35\xd5\x95\x25\x6a\xa0\xf2\xcf\xa8\x4e\x94\x99\xa9\xa2\xa2\xba\x83\x09\xa0\x2c\x3c\x14\x0d\x24\x11\xec\x4c\x54\xda\xd0\x3a\x90\x12\xd2\xb6\x5a\xae\x88\x53\x37\x37\x07\x82\x94\x9b\x55\x53\xf2\xfa\x79\x7b\xfc\xfc\x5b\xe9\xc7\x92\xf7\x29\x57\x88\x77\xb8\x7c\x47\xc4\x45\x18\x53\x32\x96\x2e\x38\x49\x01\x90\x23\x95\x48\x80\x86\xba\xe9\x48\x30\x71\x4c\x43\x79\x45\x98\xa7\x4c\xc2\xc3\x48\x69\xd3\x6f\xa5\x61\x61\x4a\xaa\x74\x64\xcb\x06\xfa\x94\x29\x19\xbc\xf5\x92\xb6\xde\xf5\xd9\xb2\xea\xb3\x2b\xe6\x5c\x5c\xf1\x2b\xae\x80\x25\x01\xca\x49\x1f\x51\xd6\xa3\x94\xb8\x1f\x29\x89\xc5\x0f\xe9\xc3\x6b\x15\x5b\xbf\x67\x96\x94\xd1\x22\xaa\xd6\x98\x11\xd5\xd2\xda\x52\xa4\x52\xb3\x10\x38\x11\xb0\xdb\x6d\xb1\x51\xaa\xb4\xe9\x54\x92\xa2\xb9\xa9\x79\xf1\x81\xf5\x12\x9b\xa9\x16\x15\x6d\x18\xf3\xaa\xce\x69\xa7\xb1\x5a\xc0\xd2\x1f\x12\x49\xbc\x3f\xbd\x04\xe0\xb2\x99\xef\xaa\x75\x61\x00\xb3\xc4\x24\x52\x92\x47\x75\xf2\x43\xd9\xde\x92\x2a\xe9\xcb\xa2\x69\x79\x2f\xc3\x68\xac\xe0\x1e\xb9\x8a\x37\x42\x11\x84\x2b\x56\xaa\x00\x8b\x72\x4e\x04\x62\x34\xd0\xec\x43\x5f\x64\x01\x09\x64\x53\x75\xf5\xa3\x1e\x3d\x5d\xec\xa8\x2d\x9a\x79\x4e\xa6\x82\x5d\xfa\xf4\x05\xfd\x9f\xb0\xb8\x25\x1b\xc0\x72\x8c\x78\xce\x4c\x25\x73\x27\x4b\x31\xea\x6a\x44\xe3\x6e\xa6\x8d\x82\x83\xb1\x86\xfd\x35\x12\xe8\x76\x42\xb4\x6c\xcc\x59\xd3\xb4\x96\xdf\xd0\x07\xab\x8f\xcb\x35\x26\x21\xef\x55\xc7\x6b\x08\x6f\x4c\x20\x07\xb2\x66\xae\x68\x68\xcc\x4a\xfb\xfc\x53\x09\xb5\xd0\xe3\x7c\x4a\x92\xd8\x8b\xb7\xe4\x37\x36\x6d\x7d\x4c\x76\x22\x05\x37\xeb\xc2\x69\x6a\x58\x0d\xc4\x8d\xca\xc8\x32\xe3\x61\x1c\xa1\x77\x24\xed\x2f\x56\x99\xb3\x8b\x31\x22\xfb\xf2\x33\xe4\x05\x64\x79\x33\x19\xaf\x12\xce\x4a\x36\xb7\x98\x62\x1e\xf8\xc9\xad\x9f\x61\xb6\x1b\x2c\x1a\xd2\xc2\xe7\x0d\x63\xfa\xba\x74\x50\x47\x61\x6a\x5c\x80\xea\x22\x61\x5d\xab\x8a\x0d\x25\x94\x25\xb6\x19\xcd\x15\xdb\x4c\x97\x80\xfb\xa9\x51\x0f\x4c\x92\x68\x40\x4d\x12\x33\x9a\x4c\x58\x3c\xac\xe5\xb7\xb5\x48\xa6\xa1\x9c\x4e\x78\x53\x83\xdf\xc7\xc4\xe0\xce\xe3\x7c\x62\x43\xab\x8f\x81\x51\x2d\x33\x8a\x30\xe3\x1a\x0c\x3f\xca\x89\xbc\x14\xb2\x2a\xb7\x2c\xb0\x6c\x3a\x90\xd2\x9a\x4d\x04\xb7\x2a\xc0\x3b\xa2\xfa\x49\x78\x3c\x51\x19\x71\xc6\x6f\x92\xae\xe1\x45\x9a\x7d\x65\x15\x2f\x2b\x22\x1f\x94\x8f\xf7\x47\xb1\xf6\x91\x9c\xcd\xd3\x47\x2b\xf3\xf6\x20\x56\xed\x56\xa4\xc0\xce\x4b\x12\x2f\xb4\x58\x31\x33\xd5\x9c\xa7\x9d\x14\x4a\xac\x33\x58\x28\xb1\x32\xa4\x64\xd3\x0e\x37\x6e\xee\xa1\xb0\x46\x6d\xc5\x89\x5b\x10\xa6\x42\x99\x6b\xa2\x4d\x42\xd8\xa6\x64\xf9\x3d\xdb\x88\x65\x50\x7e\xa5\x27\x65\x42\x3b\xe8\x12\xd4\x2f\xe4\xf9\x9c\xcd\x36\x4b\xa8\x39\x4a\xaf\x0c\x50\xf6\x21\xef\x56\x08\x4b\xf9\xc9\x2c\xb1\xc4\x4d\x6e\x60\xa1\x23\x7e\x30\x42\x3f\xed\x72\x94\x3d\xb3\xbd\x40\xc4\x0a\x48\x87\x1d\x71\x18\x8f\xc4\xc3\x94\x4d\xaa\x21\x94\x4a\xba\x6e\x54\x0c\xcf\x8c\xe6\xc7\xf9\x8b\x87\xdd\x8f\xcf\xe6\x2f\x1c\x3b\x5e\xac\xca\xc5\x27\x21\xbf\xaa\x9e\x37\x9f\xa1\x58\xc3\xc0\x43\x3a\x3d\x2f\xb1\x87\x45\x4a\x8a\x76\x0b\xbd\x8e\xd8\x07\x15\x23\xbc\x73\x6e\x34\x67\xd4\x17\xe6\x32\x33\xb1\xd5\x95\x42\xdf\x9e\x1e\x61\xb4\x63\x8a\xc4\x9e\xe1\x49\x12\xe3\x58\x57\x9b\xaa\x1f\x91\x04\x33\xa5\x5c\x49\x4b\x6d\x7c\x86\x23\xd4\xe5\x47\x49\xac\x9d\xaa\xa1\x9d\xd8\xc8\xe4\x26\x27\x45\xee\xfb\x94\x48\x63\xd7\xb3\xae\xc2\xe6\x91\x9e\x78\x7b\xce\x5b\x39\x29\x71\x79\x97\xed\x6a\x45\x57\x59\x18\x91\xbc\xa9\xb0\xe3\x70\xbb\x46\xca\x01\x54\xac\x3b\xa4\x8f\x1d\x26\x9f\xcc\xd4\x24\x87\x52\xbc\x0b\x70\x7f\x2a\x16\x74\xf3\xa9\x39\x21\x7e\x57\x97\xa2\x79\x63\xfc\x0c\xc6\xd3\x47\xea\x9b\x9f\x14\xd2\x01\x3f\x51\x0a\xf0\x3c\xdf\xf5\x7d\xc3\x6a\xcc\x9a\x69\x41\xca\x58\x9f\x8f\x00\x08\x45\xcf\xd7\x87\xc9\x1c\x62\x49\x35\x31\xec\xe1\x1d\xd6\xb3\xd8\xeb\x59\x9d\x8c\x87\xa6\x7b\xa6\x83\x2a\xc4\xfe\x95\xd7\xb7\xde\xb4\x82\x3e\x70\x73\xfd\x74\x4f\x1e\xb7\xe5\x13\xdf\x17\xb7\x0e\x50\x42\xfb\x23\xa5\x83\x25\x72\x8e\x4c\xb1\x0b\xdb\x42\xb2\x1d\x47\x6d\xab\x9e\x34\xda\x18\xb5\xc8\x67\x6a\x27\x9e\x49\x32\x68\x01\x2c\xd3\x20\x50\x7a\x36\x68\xcb\xab\x8f\x63\xf4\xf5\x71\x8f\xfd\xa6\xd4\x37\x4d\xd6\xad\x44\xf3\xb7\xee\xa5\xeb\xb2\x5e\x46\x26\x33\x9c\xf1\x80\xde\xfe\x7f\xd2\x8f\x7f\xe3\x81\x7e\x4c\x74\x2a\xca\x60\x3d\x28\xa1\x5a\x8e\x4d\x99\x2c\x0b\x07\x6f\x92\xdd\x2f\x65\xcb\xba\x20\x80\xa2\xb9\xda\x87\xc4\x78\x0c\x8e\x1b\x7a\x51\xe0\x3c\x5c\xbb\x9a\x7c\xb5\x5b\x1f\xa4\x37\x22\x23\xf8\x32\x4e\x0f\x55\xe9\x81\xa9\x52\xce\xa3\x68\x78\x4d\x91\xd3\xf8\x6e\x61\x65\xff\x2b\xed\x49\x35\x4e\x36\x9a\x84\x32\xa4\xd0\x09\x3e\x08\x94\x15\xe9\x8f\x09\x6f\xfa\xef\x07\x22\x30\x6f\x6a\x9a\x16\x88\x61\xc8\xfa\x39\x3c\xb9\x71\x63\x3e\x9b\x90\x96\xcf\x4b\x7f\x80\x83\x2f\x37\xf8\x8b\x8b\x37\x97\xa6\x19\x5f\xbc\x49\x3f\x95\x5a\xf7\x9b\xbe\xdf\x76\x1f\x60\x73\x11\x03\x0a\x5b\x5b\xce\xf2\x5b\x16\x4d\x25\x59\x7f\x20\xe3\xb2\xcc\x37\xda\x49\xfe\x94\x2a\x0e\x69\xff\xd5\x44\xfe\xa4\x6d\x39\xb0\xe5\x25\x10\xd2\x7e\x8e\x64\x73\x21\x7c\xa7\x28\x95\x7a\xa4\xf3\xfb\xc8\xfe\xf8\x7b\x92\xaf\xb7\xa4\xcb\xb1\xc0\x13\x80\xc1\xd4\x36\x57\x95\x2e\x05\x08\x08\x7d\xb7\x21\x02\x59\x40\x85\xa5\x02\x8f\x9f\x66\x4f\x02\xd3\x6b\x5c\x59\x41\xeb\xff\x0f\x55\xc8\xdf\x2c\x49\x87\xf5\x76\xd5\x3f\x6c\x14\x51\x75\x9c\x4e\xbc\x94\x20\x20\xb7\x7a\x28\x07\x84\x8d\x9c\x65\xd8\x9e\x2d\x6f\x94\x40\x72\x72\x54\xf5\x26\xff\x7c\x5f\xc1\x4d\x33\x51\x4e\xb8\x9c\x2f\x64\xcc\x4c\x87\x18\xad\x1e\x02\x67\xd3\xda\x5e\x60\x9a\x78\x02\xa9\xea\xc5\x7a\x57\xec\xed\x48\xb7\x9b\xd3\x42\x62\xf9\xfb\xd1\xc3\xee\x11\x57\x59\x7f\xa2\x4d\xbb\x76\xf0\x1f\xe4\x77\x8a\xdf\x3f\xd8\xc9\x22\x29\xc8\xaa\x94\xa4\xee\x8c\x91\x64\x8f\x82\xf7\x0f\x28\x17\x33\xcf\x7a\x42\x85\xc3\x11\x3f\xac\x1c\xaa\x10\xba\xf5\xcf\xa6\x0d\xe8\x5e\x44\x80\x33\x7f\x1a\x9a\xb1\x0c\x90\xb1\x20\x5f\x87\x92\x37\xf3\x4b\xdb\x61\x21\x25\x00\x42\x8e\xbe\xb2\x71\xb9\xc1\xea\xdc\x5b\x9c\x24\x9d\x89\xd2\xa7\x63\x63\xf7\x9e\xf2\x3d\x2d\xb0\x89\x0a\xdc\xba\xdb\x5b\x50\xe6\x1e\x85\x68\xe4\xc5\x90\x71\x8c\xcb\x31\xd4\xcc\x63\xc9\x21\x3c\x9c\x9b\x50\x4f\x71\x78\x8e\xd5\x4a\x36\xd1\x10\xf9\xb5\x38\x95\x0e\x94\x4b\x55\xf6\x95\xd7\x6f\x58\x8f\xea\x76\xbc\xd5\xb0\xce\x25\x12\x54\x8c\x51\x16\x22\x50\x55\x89\x26\xf6\x57\x4f\xf4\xc4\xac\xf9\xbe\xfa\x01\xf6\x95\x55\x87\xb6\x88\x71\xc5\x5a\xb9\x03\xda\x57\xad\x53\x94\xcb\xcf\x15\xcc\xba\xaf\xab\xeb\x52\x55\x65\x67\x21\x40\xde\x2c\x59\xd3\xfa\x67\xf5\x4a\x46\x25\xa2\x76\x73\xcd\x2b\x8a\xdb\xe3\x5c\x29\x27\x66\x5e\x1d\x14\x13\x89\x2a\xdd\x38\x6b\x2a\x8b\x03\x3e\xf7\xea\xb1\x97\x63\x81\xe6\xeb\x9b\xfc\xb6\x83\x01\xc9\x98\x0c\x5b\xc8\xa5\x38\x73\x10\x92\x67\x96\xe8\x55\x78\x0e\x43\xab\xc6\x30\xc1\x07\x0a\xbc\x5d\x38\xb1\xe3\x06\x6a\x33\x38\x84\x9a\xa4\xae\x83\x8d\x59\x77\x17\x56\xf9\x59\xd7\x65\x35\x44\xb2\x83\x8a\x70\x30\xaa\xcc\x7e\xa2\xec\x01\xcb\x7a\xd4\x0c\xcb\x5e\xc4\x82\x05\xd7\x24\xca\x12\x66\xd1\xa5\xc0\x86\xb2\xa3\xfa\x9f\x8a\xec\x5e\x11\x0e\x59\x15\xf4\x66\x05\xde\x8d\x68\x56\xec\x1c\x41\xd2\x45\x19\xef\xfa\x6a\xbd\x66\x4c\x9b\x1f\xc2\x5f\x03\xc9\x23\x45\x2e\xd6\x09\xd0\xd4\xad\xaa\x6d\xda\xc0\x9a\x1c\xa2\xd0\x93\x6d\x20\x2d\xf3\x89\x49\x09\xdd\x80\xad\xea\x6d\x5e\x77\x57\x25\xcc\xeb\x9b\xf4\x8a\x0f\xb4\x67\xda\x34\x0b\xdf\xe2\x77\xb0\xa7\x65\x51\xb3\xd0\x74\xb8\x41\x60\xee\x82\x89\x8a\x9b\x96\xe3\x1b\xd8\x70\xd1\x07\x60\xd5\xd7\xd4\x59\x1f\x98\xcc\x46\x28\x80\x0c\x1c\x1d\xc6\x4d\xe2\xe1\x2a\xd2\xcf\xa5\x7d\x50\xda\x3d\xe3\x4e\xe4\xf0\x3d\x9b\x53\xe6\x62\x15\xad\x8a\x4b\xe4\xa4\x92\x33\x5a\x18\xc9\x6f\x4c\xf7\xa4\xe1\xe3\xf8\x3d\x73\x36\xf2\x23\x39\x8e\x17\x99\x51\x6d\xde\x7d\x6a\x86\x71\x3e\xb8\xb0\x22\x62\x06\xbf\xb3\x24\x6f\x61\x66\xa3\xfc\x5b\x43\xdb\x35\x4c\xdd\xff\x49\x5f\x2c\x45\xd7\x49\x74\x76\x38\x30\x41\xa8\x5f\x06\x53\xf6\x19\x11\x24\x49\x0c\xea\x9c\x71\x4b\x1a\x30\x56\x25\xac\x22\xaf\xec\x3b\xe1\xf3\xe9\x16\x24\x7a\xa1\x5f\x91\xc9\x43\x0a\x89\x8d\xeb\x95\x7d\x6b\xaa\x4b\xa2\xc5\xe5\x52\x3e\xe8\x67\xc2\x1a\xf7\x66\x06\x2e\xce\x22\x31\x8e\x19\x02\xde\xcd\x5b\x33\xaf\x22\xcb\x9b\x05\xf0\xdb\xbc\x27\xfe\x55\x8b\x66\x24\xac\x24\x2c\xaa\xd9\xae\x0a\x77\xba\xcd\xb5\xb0\x07\x89\xe0\xee\x63\xe2\x5d\x5b\xcc\xab\x65\xca\xac\xab\xbc\xa0\x53\x71\xf4\xcf\xf4\xa9\xd6\x15\xf0\x19\x7c\xa8\x7a\x8c\x73\x65\x3b\x0c\x84\xe7\x4b\xf0\x33\x51\x7b\x54\x6c\x8c\x52\x4a\x7c\x9e\x1e\xcb\x87\x29\xda\xbb\x0a\x63\xaa\x48\x68\xdf\x62\xa2\x02\x47\x1c\x9d\x39\xd7\x69\xf5\xc3\xf2\x96\xf4\x76\xac\x1f\x4a\x25\x90\x41\xec\x6c\x07\x3b\x2e\x1f\x2d\x04\x7a\x22\x1b\x87\xa1\x40\xd6\xc1\xb9\x15\x9f\xc6\xb0\xd2\x4b\x60\x37\xe5\x3c\x65\x73\x2d\x11\x1a\xe9\x63\x3a\xce\x4d\x4e\xaa\xdc\x75\x95\x3b\x23\x4f\x20\x09\xb9\xad\xda\xac\x34\x50\x37\xea\xa7\x38\x51\x4a\x21\xf8\xcb\xc9\x82\x09\x42\x36\xa1\x6c\xbb\x10\xda\xa7\x5a\x2b\x39\xff\xa8\x21\x24\xb1\xb3\x8b\xed\xa4\xaf\xd8\x7f\x08\xa7\xf6\x63\x0f\x38\x6e\x42\xcf\x81\xde\xe9\x67\xb2\xdb\xf2\xc1\x4a\x80\xcb\x0f\x48\x70\xb8\x8c\xf3\x03\xf5\x0b\x58\xb5\x62\xce\x48\x23\xe0\x45\xa0\x8f\xf1\xe9\x82\x2e\xe5\x09\xcf\x36\x5d\xce\xc5\x10\xc4\x9b\x52\xc0\xd9\x74\xe0\x98\x28\x39\x38\x06\x6a\x69\x77\x4c\x57\xb4\x8a\xd6\x55\xfd\xa9\xd3\x99\x62\x3c\x85\xaa\x28\x4c\x4f\x44\xdf\x3b\x71\x6c\x92\xcf\xb1\x1f\x95\x9d\x40\x0d\xb8\x8d\x9d\x53\xc9\x59\xdc\x21\x92\xa9\xaf\x4d\xd3\xa9\xb9\xd2\xb3\x25\x4e\x83\x15\x44\xd2\x0c\x73\x0e\x42\x11\x7b\x68\x67\x82\x58\x74\x4a\xee\x99\x5a\xdc\x3d\xb4\x52\xff\x91\x5a\xe2\x0f\xad\x4e\x39\xf3\x53\x38\x59\xf0\x59\xb5\x11\x27\xc5\x0f\x76\x22\x88\x39\x71\x9a\x00\xb2\x67\x71\x7f\x86\x13\xa9\xed\x9a\x1d\xfe\x9e\xf9\xb4\xd9\x0a\x0f\x76\x64\x86\x1c\x93\x68\xd6\x91\x1c\x66\xe3\x70\xf9\x8c\xbc\x20\xff\x3d\x8e\xe0\x9c\xb2\xcf\xcb\x20\x1b\x80\xa8\x7e\x1c\x41\x4e\x8a\xbb\xd6\xd6\x5e\x51\x77\xd0\xfb\x11\x51\x5b\xb9\x1b\xf6\x42\x0a\x06\xae\x64\x58\xcc\xcc\xb3\x87\x4d\x9b\x72\x9e\x07\x17\x0c\x71\x43\xa9\x71\x18\x28\x55\x04\xeb\x5e\x1b\xfd\x77\x57\xbd\xaf\x59\x74\x85\xce\xa9\x08\x87\xc2\xdb\xd8\xd4\x2f\xae\x91\x2e\x5f\xbd\x23\x23\x16\x58\x9a\x5f\x43\xc8\x24\xb7\x2d\xd1\x0a\x49\xf2\x31\xb3\x1c\xb1\xc7\x88\x15\x82\x13\x36\x38\xa5\xf7\x1c\x90\xc6\xad\x55\xf1\x56\x82\x2f\x4b\x71\x16\x21\x5a\x01\x2c\xee\x6a\xb2\x2d\x04\xcb\x15\xfa\x77\x7d\xa4\x1f\xc2\xb8\x64\xac\xc7\x9a\x30\xc8\xb7\xc1\x48\xb6\x4d\xc8\xc4\x68\xd8\xa9\xe8\xba\x74\xbc\xbd\xaa\xc5\x49\xc2\x1d\xdb\x45\x0c\x24\x3d\x06\x47\x21\x72\x10\x03\xb4\xf1\x93\x9f\x86\xad\x7b\x3a\xfa\x39\x36\x5d\xcb\xd8\xe2\x55\xf4\x4d\x42\x3d\x02\x8d\xfb\xc3\xcf\x02\xc4\x13\x9b\xc7\x18\x2a\x84\x10\x03\x8c\x4b\xcd\x22\xc3\x3a\x6c\xe4\x5f\x63\x4c\x67\x91\xe0\xbf\xc0\x8e\x1e\x35\xe5\xed\xe8\xae\x93\x83\x15\x36\x1a\xe5\x78\xa9\x51\x06\xa4\x13\xa5\xe5\x40\xe6\x50\x6a\x76\xa2\x07\xb7\x22\xaa\x09\xa3\x87\x92\x20\xa0\x28\x25\x60\xf7\x60\x6f\x23\xb8\x2a\xc1\x3f\x51\xf4\x94\x6e\x64\x1c\x8e\xe7\xfc\x10\x8a\x18\x21\x45\x60\x21\xac\xd1\x7e\xcf\x22\xbc\xad\x75\x12\x8f\x09\x0f\x72\xb4\xee\xdc\xc6\x46\x87\x60\x07\xaa\xfd\xac\xaa\xe5\x8a\xc6\x55\x6d\xf8\x44\x19\x94\x64\xc7\x96\x5e\x39\xe5\x5f\xc4\xa2\x9a\x65\xcd\xd6\x27\x6e\x41\xfc\xc4\x9c\xb1\xf7\xc7\xae\x6f\x9b\x7a\xf9\xe2\xb8\x61\xad\x91\x8d\x32\xbc\xff\xfd\xf4\xe3\x33\x4d\x27\x36\xcc\x53\xc8\x4e\x85\xaf\xab\xfe\xcd\x6e\xfe\xa8\x4b\x97\xec\x1d\x8b\x83\x93\x3c\xf0\x99\x55\x5f\x02\x71\xe2\xbb\xa9\x1d\x5a\xe0\x41\x4b\x6b\xbc\x6b\xd6\xb4\x40\xe2\x22\xcd\x66\x23\xd3\x4b\x0c\x6c\x23\x90\xe8\x3f\xdc\x0f\xca\x1a\x98\x2b\x5b\xc5\x0f\x55\x38\x73\x24\xee\xe7\x47\xa7\xcd\x84\xc8\xc8\xd4\xa1\x62\x1c\x03\xe3\x70\xb4\xee\x83\x8d\x08\x76\x0e\x2b\x05\x11\x61\x5c\x0a\xf3\xc8\x86\xa3\xb1\x91\x05\xfa\x08\x57\x61\xc5\xa9\x24\xf5\x43\x44\x25\x4e\xb3\x16\x45\x48\x28\xd9\x86\x2d\x84\x15\x10\x2f\xef\x3d\x66\x81\x85\x30\xed\xba\x07\x72\x1d\xac\x6f\xe5\x68\x32\x76\xe5\x67\x36\x80\x80\xa3\x29\x46\x3c\x4f\x1b\xc2\x44\x5c\xad\x14\x9e\x66\xbd\x08\xb9\x99\x78\x2d\x09\x47\x13\x82\x24\x75\x87\xf9\xf5\x17\x72\xb3\x51\xbb\x7e\xe0\xd6\xdc\x17\x70\x34\x8c\xe9\x10\xe8\xa0\xb1\xc0\x30\xa2\x13\xf5\x4e\xcd\x20\xc8\x60\xff\x59\xaf\x7a\xbd\x6f\xf4\x04\x2c\xb5\x44\xcc\x09\xe9\x5a\x7d\x19\x2d\x65\xee\x04\x3c\x1e\xc5\x07\x07\x96\x95\xff\x96\x16\x39\xf1\x81\xbe\xf9\x44\xa4\x34\x2e\x82\xf4\x7d\x85\x1c\x7f\x31\xfd\x45\xb9\xcb\xa1\x67\x0e\x43\x8d\x46\x0f\x92\xf7\x32\x98\x80\xaf\x68\xad\xce\x0f\x4a\xcc\x42\xf0\x42\x67\x6f\x91\x42\xf8\x88\xb2\x01\x75\xf6\x71\xeb\x9f\x24\xb6\x9a\x81\xa0\x23\xf2\x87\xfe\x0e\xa7\x25\xaa\x3f\x58\x2c\xc4\xbd\x77\x75\xc0\x3e\x85\x1c\x32\x41\x85\x1b\xe4\x19\x09\x1c\x70\x75\x3c\x94\x0a\x2f\x39\xbb\x53\xbf\x61\x3d\x8f\xb7\x22\xaf\x35\x11\x6b\x00\x80\x82\xf0\xce\x21\x02\xbf\xbc\x45\xc3\x6a\x51\xff\x0c\xf5\x62\xc4\x1c\x10\xd5\x19\xc3\x5c\x89\xbf\x46\x7a\x78\xf6\x96\x36\x0c\xd7\xa0\x55\xfa\x73\xbe\x58\xe9\x04\xde\x88\x39\x03\x5e\x1d\xeb\xf5\x90\xe3\x3a\x61\x5f\x8a\x9b\x7b\x37\x4a\x62\x89\xbb\x41\x8d\x06\x24\x83\x89\xf3\x05\xc7\x65\x17\x98\x78\xa4\x35\xf4\x64\xb8\x57\xb9\xa1\x7e\x43\x98\x75\x86\x46\x5e\x5a\xdb\x5b\xe6\xfe\x81\x7f\x56\x2e\x18\xba\x01\xff\x1e\x38\x86\x11\x24\x4e\x77\x53\x5e\xc2\xad\xe3\x1f\xd6\x61\xe5\x20\xe1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\xb6\x56\x4f\x3c\xe6\xfb\xf8\x0c\x13\xbe\xd7\xed\xef\xe0\x32\xe1\xa8\x02\x52\x3e\x9b\x6c\xd6\x51\xb4\x34\x3d\xe0\x37\xa9\x6c\x83\xe2\xa9\xc0\xad\x88\xb6\xa2\x14\x11\x78\x21\x53\x2d\x37\xe5\x7a\x4d\xeb\x41\x5b\xf7\xa7\x98\x3a\xf4\xe8\x4c\x5f\x81\x02\x15\xb4\xf4\xb2\xad\xa0\x22\xb4\xd1\x59\x65\x04\x41\xcb\x0d\xc7\xf8\x62\x1f\xb0\xdd\xfa\xe8\xf0\xfd\xfb\xd3\x4b\xbf\x49\xf3\x3a\xa8\x0b\x12\x25\xbe\x71\x2e\x72\xa3\x7e\x99\xa3\x9c\x9b\xc0\x18\xc2\xbb\xea\x69\x89\x7d\x70\x21\x9b\xb2\xda\xe9\x73\xd9\x80\xf7\x34\xdc\x17\xe3\xe5\x51\xff\x8b\x7d\xf3\x97\xfc\xc6\xd2\xcd\xc7\xc4\x2c\xdd\xa7\xfc\x37\x09\x0f\x0b\x82\x43\x16\x2c\x3d\x7f\x16\xe3\x9d\xfb\xa9\x03\x4d\x31\x3a\x3c\x00\x93\xde\xe5\x50\xb5\x08\xf7\x0d\xf6\x8a\xab\x14\x67\xd6\x07\x6c\x0b\x6d\x5a\x2c\x18\x46\xee\xae\xae\xfe\xbe\x83\x78\xc6\xea\x10\x31\x0f\xf6\xbc\x9c\x57\x6b\xd9\x50\x7e\x71\x3f\x24\x9d\xbf\x06\x0e\xe8\x41\xe3\xf4\xeb\xc7\x6e\xcb\x8e\xab\xb4\x37\x74\xcf\x1f\xec\xaa\x94\x0d\x7b\xec\x83\xf5\xe0\x05\xe9\x2f\x7c\x92\x4d\xd3\x47\x10\x2f\x46\xd5\xf1\xf5\xb5\x85\xd8\x03\x9d\x37\x0f\xe8\x56\xd3\x79\xb5\xb0\xbc\x1b\x19\x21\x05\xf1\x7f\xa0\x4d\xbe\x2b\xe7\xc7\xf1\x58\xb5\x6e\xc2\x11\xd6\xee\x75\xbe\xde\xc5\x56\x12\x6e\x9d\xcb\x74\x4f\x12\x78\xd7\xfb\xb2\x70\xd7\xc1\xed\x4b\xce\x20\x6a\xf8\x09\x48\xeb\xef\xbe\x6a\xc5\xf7\x34\x59\xf0\xfb\x26\x41\x4f\xd4\xfa\x3c\xbc\xb6\x87\x3c\x73\x7b\xe7\x3c\xf8\xbe\x23\x75\x62\x36\x82\x6b\x32\xf9\xba\x17\xcb\x73\x1a\xcc\x26\xb3\x16\x0c\x22\xb4\xb5\xde\xea\x19\x9f\xe3\x60\xdd\xa2\xad\xe0\xba\x2f\xe9\x7c\x77\x33\x0d\xee\x6d\xba\x44\xdf\xee\x05\xd1\x3d\xa1\x68\xb6\xac\x7a\x52\xe1\xf9\xa2\x18\x5c\xbd\x13\x62\x1b\xb4\x93\xe1\xd6\xa7\x7c\x59\xca\xa8\x28\x6f\xfa\x02\x0b\x5b\x19\x4b\x9a\xba\x02\xf8\x43\x7f\x4f\x94\x52\x40\xbb\x73\xca\x47\x1f\x4d\x56\xd5\x15\x2f\xfc\xb7\xf4\x87\x36\x75\x51\x00\x62\x32\x15\xf1\x16\x95\xa8\x91\x47\xb4\x6f\x57\x8f\xfa\xd1\xe9\xac\xa8\x03\x5d\x30\x2f\xea\x1d\xae\x66\x7c\xa0\x0d\x09\xe9\x4b\x24\xe8\x5d\x4f\xea\x09\xcd\xc2\xb5\x88\x43\x72\x67\xf3\xad\xa5\x3c\x66\xfd\xef\x89\x01\x9a\xf6\xe6\xe0\xd4\x06\x31\xc8\xb7\x49\xd2\xc3\x38\x3d\x8d\xa6\x55\xc1\xac\x9c\x8d\x04\x38\x1b\xa3\xce\x17\x7c\xe2\x93\xaf\xbb\x54\x95\x4e\x3b\xe4\x4e\x6e\xf8\xe8\x58\x2c\xf1\xbf\xea\x27\x0c\xf1\xcb\xfc\x1f\x92\x7a\xe1\x7e\x80\xcc\x3a\x25\xbc\x4e\xad\xea\x84\x89\xc5\x4a\x9d\xb4\x9a\xab\x4c\x2e\x5c\x61\xdb\xbc\x74\x67\x8c\xbc\x66\x01\x47\xb8\xdd\xe4\x9f\xab\xcd\x6e\x93\x3a\x40\x14\x65\x4a\x7c\x18\xdb\xfb\x67\xd3\x56\xfb\xe1\x39\xf3\xd7\x1b\xef\x87\x35\xdc\x6d\xc3\x67\x6f\xac\x8c\x0f\xd0\x6c\x61\x47\xce\x1c\x89\xde\xca\xb5\x2b\x88\xee\x5a\xae\xdc\x41\x0c\x73\xf7\xf3\x48\xb3\x02\xe5\x31\xdb\x82\x0b\xeb\x9c\xd8\xce\x83\x17\x32\xe9\xc6\xb3\xac\x56\x25\xc6\x13\xbd\x18\x1c\x50\xa3\x42\xcc\x84\x31\x79\x5a\x3a\xc2\x35\x20\x4f\x4a\x13\x50\xd1\xb6\xa6\xa2\x65\x1e\x5c\x25\x7a\xf6\xfa\xed\x25\x2e\x12\x11\x4d\x8a\x89\x4d\x6f\x4b\xb1\x77\xef\xcc\xd5\xc9\x3b\x5e\xd5\x75\x22\x09\xd5\x15\x10\xcf\xdc\x68\xc2\x08\x27\x7a\xbb\x56\x16\x53\x80\xd5\xe6\x5d\x8b\x09\xc6\xfc\x8a\xdf\x4a\xa2\x16\xe4\x44\x18\x04\xe2\x73\x32\x73\xf5\xca\xc3\x3b\x6c\x56\xad\x3b\x12\xf5\xd3\x16\x9e\x86\xea\x52\x53\x6e\xab\x77\xac\x9b\xab\x44\x18\xa6\xa5\x2b\xfb\xbc\x72\x7c\x18\x77\x90\xf8\xf6\x44\xcc\x80\x71\x17\x3b\x0f\xe7\x3d\xf4\x61\xa4\x85\xc2\x22\xcb\xf6\x36\x63\x8b\x3b\xa4\x94\xed\xad\x4f\x08\xc4\x39\xca\x20\x74\x06\xc0\xce\x97\xe4\x0c\xb3\xfc\x7f\xff\xf7\xff\x79\x7a\xc4\xc3\x3e\xea\xdb\x35\x7d\xa9\xb4\xcc\xf0\x32\x0d\x52\x41\x7a\xfa\x67\xd2\x7a\x6e\xd4\x71\xe4\x83\x7c\x25\xf6\x1b\xac\x80\xf2\x3b\x35\xb0\xe3\x23\xd1\x5f\xcc\x11\x12\xbd\x5a\xce\xac\x20\x61\x95\x53\xc9\x86\xd4\xcd\x70\xc3\xf8\xfb\xae\x5a\x7c\xca\xc4\x4e\xf2\x3c\xfd\x0b\xff\x4a\x71\xa7\x58\xf7\x4c\xe6\xc3\x8e\xa9\x82\x38\x07\x9c\x39\x74\x60\xc6\x46\xa3\x57\x0f\x3c\x13\xce\x63\x19\xe0\xd6\x1c\x23\x0d\x90\x2f\x2a\x25\xdb\x1d\xbb\x4a\x31\x41\x58\x6b\x67\x94\x82\x4b\x5f\x9c\xc8\x12\x5b\x50\x03\x66\x76\x54\x07\x9a\xa7\xee\xca\x1d\xc0\x49\x51\x07\x59\xde\xe8\xc7\x0e\x71\xf3\x9c\x86\xac\x6a\x47\x74\x09\xdc\xed\x14\xba\x43\xf4\x6d\x09\xc5\x8a\xfe\x24\xb4\x01\xb1\x77\x9d\x9e\x09\xf3\x3d\xd8\x3e\xc7\xb1\x27\xd2\xed\x44\x98\x8f\x94\xf3\xa5\x56\x04\x8d\xea\xa5\x7e\x26\x94\xce\xbf\x2f\xe9\xcf\xe8\xa6\x3b\xdf\x8b\x1f\xdf\x87\x5f\xe7\xf3\x12\xc9\xef\xf0\x41\xc4\x4f\x7b\x60\x4f\x33\x22\x7b\x90\xfd\x48\x18\x25\x55\x2f\x84\x88\xaf\x44\xef\x78\xc8\xf9\xaf\x7c\x26\x38\xd1\x6a\x73\x3e\x85\x3d\xcf\x6f\xe4\x27\xa1\x4b\x2f\xcc\xbf\x91\x2f\x49\x86\x2b\xbc\x80\xc2\x13\xde\xc1\x43\x68\xd6\xd5\x70\x66\xdf\x89\x75\x60\x36\xee\x88\xe5\x0c\xee\xeb\xa7\x8b\x41\xfe\x95\xa8\xfe\xaf\x58\xf1\xb7\xb4\x1c\x5c\x3d\x35\x5f\x3d\x97\xbe\xe1\x7d\x14\x47\x40\x27\xf2\xe5\x72\x0a\x71\x91\x3d\x86\x74\xa0\x69\x76\x35\xe1\x94\xff\xba\x54\xa2\x4f\x95\x0b\xe9\xaf\x73\xf3\x97\x38\x17\xac\xf3\x4b\x80\x00\x9f\x3c\x1b\xce\x45\x90\x55\xb3\xa8\x35\xc7\xf9\x1a\x2d\x35\xe4\x87\xd9\x0b\xc2\x7f\x9b\xb9\xf2\x47\xfc\x33\x5d\x8f\x6a\x71\x93\x1b\xce\xed\xa0\x99\x10\x86\x9a\x9a\x04\x93\xe6\x42\x48\x69\x71\x33\x05\x4c\x7a\x5e\x1d\xc1\x9e\x52\x42\x48\x5a\x51\xc5\xac\xa1\x0c\x6a\x86\xd2\x32\x0d\x4f\x1b\x26\xdf\x1e\x83\xda\xa6\x9f\xe3\x7e\x06\x40\xd2\xcd\x7c\x02\x94\xad\x67\x1e\x8e\x06\x3e\x04\x52\xf3\xae\xe3\x3f\xc3\xd9\xf3\xf3\x43\x53\x3b\x9c\x20\xc9\xcc\x48\xa6\x5c\x94\xee\x22\x0b\x80\x20\x8b\x70\x68\x89\xa8\x19\x57\x99\x36\x16\xd5\x07\x84\xf6\xf9\x9c\xb2\x49\x76\x62\x6c\xba\xc2\x8c\x2b\x9f\x25\xa8\xb3\x4c\x65\x2e\x56\x73\x54\x65\x98\x47\x62\x53\x26\x22\xb1\x20\xc2\x89\xc7\xeb\x89\x12\x77\x52\xd4\x10\x66\x6f\xcd\x23\xba\xd1\x92\x77\x4c\xaf\x87\xe0\x60\x0c\xfb\xab\xde\x53\x4e\xe5\x36\x48\x6b\xe3\x9c\x19\x5f\x91\x72\xfc\x93\xef\xcd\xcb\x8f\x49\xd0\x4e\x63\xcf\x90\xc2\xc1\x3b\xbb\xeb\x6a\xa1\xa6\xb4\xa9\x42\x32\xcb\x45\x36\xbf\xd5\x32\x32\xcf\xb8\x79\xba\xa7\xc8\x86\x25\x79\xa8\x95\x5a\xe4\xc4\x25\x4c\x14\xe9\xf4\x1e\x3c\x5f\x44\x1f\xe7\xcc\x78\x63\x82\xaf\x11\xf3\xa6\x6e\x12\x84\xa9\x14\x20\xa7\xf8\x98\x02\x11\x03\xb3\x9a\x88\x78\x17\x90\x1b\x17\x76\xc4\x3d\xd9\x30\xbb\x6d\xb9\x12\xef\xe0\xc4\xd5\x7e\x41\x39\x76\xeb\x65\xbe\x2a\xe7\x09\x27\x0d\x7c\x6d\xf1\xf3\x8e\x76\x7c\x01\x69\x68\x54\x82\x57\x12\x66\x81\x40\xe4\x3b\x7d\xf8\xdb\xb7\x1f\x3b\x9e\x06\x7f\x50\xf3\xdb\x77\x1f\x49\x4f\x7f\xf8\xdb\xf7\x1f\x71\x42\x33\x2a\x9c\x5d\xb1\x89\x72\x5c\x03\x0a\x1a\xf4\xb6\x2d\xaf\xab\x66\xd7\x89\xbc\x86\x4f\xcf\x1f\x3e\xcb\x54\x7c\xee\xe3\x25\xee\xee\xcf\x0f\x56\x78\xe1\xb2\xe2\x15\x5e\xef\x36\x99\x8e\xb1\x13\x0e\x60\xbf\x5c\x71\xc3\x40\x96\x73\x93\xbf\xbb\xdf\x3c\xdc\xaa\xe0\xc1\x52\xe7\xcd\x3c\xf1\x27\xf9\xf5\x02\x03\xe1\xa1\xff\xee\x5a\x6a\x82\xd3\x9d\x4b\x09\x29\xc0\xd2\xb7\x3b\x65\xba\x2d\xfb\x59\xcc\x95\x2c\x2c\x0e\xba\x1c\x67\x69\x2f\x3c\x88\xce\x1b\xbc\x99\x43\xf0\xb6\x04\x62\x0c\xee\x1c\x3f\x07\x99\x77\x55\xd6\x46\x05\x94\xd5\x7a\x2a\x51\xd0\x01\xae\x15\x53\xb2\x0d\x7d\x1d\x9a\xa4\x3d\x57\x87\xfd\xfc\xca\x5a\x44\x9e\x20\x01\xf6\xca\xd5\x73\x45\x18\xaf\x17\x38\x09\xc0\x61\x09\x0f\x55\x3d\x61\x05\xfa\x2b\x9b\xd8\x36\x1a\xed\xeb\x0c\x1f\x96\x2c\xa6\x37\xbd\xa8\xe0\x68\x33\x32\x53\x6a\xa2\x5d\x5c\xbb\x82\xe2\x04\x8e\x6d\x97\xd5\xf8\xbc\x8c\x93\x22\xd0\xaa\xce\xec\xc2\x83\x6a\x10\xc4\x2c\xd9\xd3\x50\x46\x44\x64\xc4\x77\x7a\xd5\xf2\xbd\xf7\x2e\x61\x74\x98\x6a\x77\x13\xe5\x24\x9d\x27\x32\x5c\xad\x65\x01\x5b\xd0\xcf\xf4\xc7\xe1\x75\xe0\xb1\x64\xfd\xe3\x56\xa8\xfb\xf4\xc7\x92\x64\x5f\xb4\x45\xe7\xf7\xed\x38\x7f\xd1\xac\x1b\xbf\xaf\xe3\xd7\x10\x40\x2c\xd1\x0f\x8b\x81\x6c\x26\xd9\x9e\xb6\x75\xf5\x72\xc2\x60\xe7\x11\xc8\x89\xc1\x48\xc6\xc0\xd5\x2f\xce\x74\xf7\x6f\xa4\x83\xb8\x85\x63\x61\x23\xc6\xb5\xa8\x57\x1b\x40\x9d\x29\x7c\x12\x6c\xda\x47\x44\xe4\x8c\xf0\x94\x83\xa5\xf6\xd0\x2f\x84\x4f\xf9\x83\x83\x0f\xad\x7b\xff\x39\xc7\x74\xe3\x5e\x43\x96\xbe\xde\x73\xa0\x1a\xb0\xca\x6d\xde\xf6\xd5\xa2\xda\xe6\x8e\x5d\x9e\x05\x29\x89\x28\x4c\x81\xbc\x1e\x2a\x4e\x9a\xc9\x36\xf5\x9c\x68\x58\x1c\x8a\x54\x29\xe1\x14\xf5\xde\xea\xa6\xe1\x0c\x63\x06\xdc\xdf\x34\xa9\x53\xe7\x10\xd3\x8e\x77\x94\x3c\xe5\xc2\x76\xcd\x11\xeb\x48\xcb\xcf\x06\xd5\xe2\x76\xfb\x73\x78\x4d\x0e\x1b\xd4\x16\x9e\xa7\xfa\xa5\xf9\x91\xa6\x39\xd4\x30\x6d\xe4\x0d\x1b\xe0\x76\x6b\x60\x07\xe7\xc9\xf2\xe3\x4a\x4e\x42\x0d\x08\xd1\xbf\x58\xfa\xf1\x6d\x05\x3b\x82\xc4\x06\x53\xef\x16\xce\x9d\x97\x8b\x9c\x83\x55\xa1\xcf\x3c\xd6\x15\x47\x23\xf3\xa3\x27\x10\x8e\x22\x62\xf5\xb3\x67\x78\x18\xd1\x8d\xf9\x9f\xab\xde\xac\x28\x03\x4c\xcd\xcb\xfe\x06\x37\x40\xe0\x6e\xc2\xc8\x15\xf3\x7b\xf7\x43\xb8\xab\x13\x2b\x7c\x86\x36\x9e\xf1\xd6\x5e\x28\x5b\xfc\x13\x7e\x08\x73\x54\x54\x0e\x04\xff\x09\x32\x00\x67\xb0\x49\xbd\x01\x3d\xd1\x88\x37\x25\x35\x0a\x71\xa0\x30\x5d\x54\x98\xf4\x8f\x6c\x0f\x30\x2e\x8c\x6f\x5a\x0b\xec\x4e\xa2\xe9\xdf\xbb\x74\xad\x1f\x35\xe9\xae\x6f\xcd\x48\xda\xbf\x57\x3d\x95\xfe\x8f\x8f\x46\xa3\xa4\x36\x64\x21\xdf\x05\x7d\xfa\x9f\x11\xd4\x50\x05\xf7\x79\x62\x43\x07\x41\x95\xe6\x65\x5a\x68\xbe\xee\xd0\x44\x2a\x82\x1a\x67\xbf\x96\x0c\x3d\x2d\x0d\x67\x92\x7a\xbd\x2d\x5b\x66\x19\x8a\x4d\x77\x68\x38\x8b\x50\x03\x71\xb8\xf5\x2d\x31\xd5\xb8\x9c\xcb\x51\xb5\x8e\x47\x28\x4c\xcc\x22\xa4\x0a\x8e\x61\x46\xeb\xc3\x8e\x8a\xe9\x97\x3b\x14\x9a\xae\x4b\x61\x8b\x9d\xbf\xf6\xc0\x58\xa4\x42\xb0\x99\x05\x9c\xcf\xfa\x5e\x75\x19\x1c\xc4\xc4\xb7\xfd\x52\xbd\xbe\xd6\xd5\xa2\x4f\x5d\x3a\x35\x27\xf7\x0e\x24\xaa\xce\x52\x62\x14\xb9\x40\x7e\xb4\xb1\x76\x2b\x44\x3d\x61\x80\x2b\xe2\x52\x9b\x06\x12\x9f\x63\x11\x79\x9d\xe1\x30\x04\x43\x8d\xac\xbc\xd1\x30\xd4\xe4\xab\x08\x19\xc4\x32\x71\x55\xc1\xa2\xfe\x65\xb5\xc9\x69\xfc\x54\x7d\x8e\x05\xc8\xbd\x1c\x5e\xf1\x36\xee\x6e\x7f\x5b\xc3\x80\x7c\x42\x0f\x9b\xbc\x96\xd3\xcd\x8a\x6f\xec\xb0\x5e\x2d\x57\x76\xe1\x6b\xd5\xaf\x26\x6a\x96\xda\x06\x2c\x05\xc4\x33\xb5\xb2\x41\xb0\xbb\x5a\x17\x20\x4a\xc1\x72\xc8\x24\xfe\xbb\x5a\x79\x1f\xf5\x8e\x48\x95\x90\xfd\xd1\x76\x3c\xd4\x90\x65\xd5\xb2\xbd\x47\x68\x7b\xfc\xa7\x87\xc5\x13\x59\xc4\xf0\xb9\x1a\x9d\x54\x71\xa2\x0c\x3c\xdc\x48\x99\x8b\x56\x1d\x2e\xb8\x33\xc9\xf0\x46\xc1\x40\xf4\x3d\xfb\x3d\x09\x2c\x7a\xc1\x5e\xe6\x75\xf5\x20\x7b\xc2\xb0\x10\xe4\x4e\x1b\x17\x86\x00\x85\x37\xd9\x3c\xec\xa2\xb6\x9b\x8c\x96\x46\xa6\x9a\x1f\x6d\x27\xbc\x50\xf8\xd7\xb0\x07\xa6\xf1\x0c\x6b\x76\xba\x43\x3c\x20\x12\x00\xe6\xbc\x85\xc8\xd5\x6d\x61\xd1\x81\x11\x93\xc8\x41\x2f\xf1\xa8\x6f\x81\x0a\x00\x51\xf5\x03\x0e\x3f\x89\x1c\x93\xfe\x70\x6f\x38\xcc\x98\x38\x2f\x0d\x73\xfd\x98\x8f\x69\xc0\x6c\x36\x4c\x1f\x5b\x88\xb4\x27\xf1\x20\x4b\xf1\x7b\xe7\xbf\x61\x86\x0b\x6a\xa3\x55\x65\x32\xf3\x5a\x23\x2a\xd7\x14\x1f\x64\xe5\xc0\x5d\xbb\x7d\x74\x4b\xff\x9e\x6e\x36\x4f\x8b\xe2\xd1\xc4\xa8\x03\xf9\xc9\x0d\x7b\xe0\x89\xa7\xc6\x8a\x01\x97\x0c\x6a\x0a\xc4\xd1\x69\xdc\x31\x40\x34\x4f\x1f\x78\xef\xe7\x7d\x9a\x85\x8e\xc2\x63\x4e\x68\xd7\xcf\x5e\xc7\xfc\xbf\x21\x6e\xe7\xfd\x7b\x78\x41\x8b\xeb\x62\x38\x96\x81\x28\x1f\x64\x0d\x6e\x9d\xdf\xd9\x41\x77\xd6\xa2\xe2\x1c\xf1\xee\xcd\x1e\xa4\x48\xa0\xc4\xbd\x28\x09\x44\x68\x8f\x56\x27\x46\x4f\x00\x4e\x0b\xd1\xbe\xf5\xff\x4a\x41\x7a\xaa\xf9\x29\x32\xb8\x47\x94\x4e\x6e\xaa\x4f\x15\x15\xf8\x95\xfe\xe0\x7b\xa6\x71\x02\x52\x1f\x17\x80\xda\xe5\xec\x6f\xa2\x7c\x1b\x2b\xe7\x30\xcd\x32\x9f\x86\x69\x34\x95\xe8\x84\xe2\xcf\xb5\x5b\xf3\x01\xcc\x27\xd9\x4d\x9b\xc5\x0e\x4a\xfa\xad\xde\x91\xf9\x1b\x2e\xac\x34\x24\xd4\xad\x34\xac\x1d\x44\xe6\xaa\x57\xa2\x9a\x49\x83\x4a\xe3\xb8\x73\x97\x69\x70\x6a\x5d\xe4\x3d\xc2\xac\x52\x3a\x76\x4f\x01\x0f\xc3\x57\x23\x41\xc5\x64\x4d\x57\x21\xd9\xc3\xcb\x7d\x8a\xb0\xd6\xf7\x1a\xf8\x4c\xf2\xcd\x3b\x40\x35\x78\x7f\xa8\xf0\x2b\x02\x27\xe6\x2c\x1f\xb3\xc7\x1a\x7b\x17\x63\xbe\xd5\x32\xe6\x19\x84\x8e\x03\x71\xa2\xb4\x25\x56\x4c\x83\x36\xe0\x0f\xaa\x0d\x30\x51\x30\x77\xee\x52\x26\x68\x33\x0f\xa0\x1c\x31\x63\x80\x83\xd2\x39\x25\xd3\x08\x22\xaa\x46\x46\xe3\xf1\x79\xc3\xf1\x88\x1b\x57\x04\xa2\xfe\x5e\xd3\x50\x7c\xb1\x61\x51\x66\xdf\x9a\x94\x10\xba\x7a\x61\xda\xb9\x6f\x22\x98\xb2\x12\xaf\x72\xa9\x8b\xd9\xc2\xeb\xbd\x6c\x7b\x04\x68\x71\x33\x94\xe9\x1e\xea\x77\x62\x10\x12\xaa\x1a\xf8\x2b\x47\xbe\xca\x5d\x50\x47\xa7\xd3\xdc\x05\x48\xb4\x9b\x39\xe6\x57\xab\x3f\x39\x44\xd3\x54\xe8\x6a\x4b\x9b\xc9\x64\xe1\xde\x9d\x7c\xf9\xac\x20\xa6\x94\x0a\xd4\xc1\x6f\x0f\xb6\x6a\x9a\x4f\x12\x8b\x6b\x8e\x4f\x9f\xb3\xe4\x80\xb6\x92\xc9\xa1\x5b\xdf\xc4\xb9\xa4\x43\x55\x8b\x30\x44\xf6\x4b\x4e\x98\xe8\xa2\x5e\x5b\x3b\xb5\xc0\x6a\xec\x58\xe5\x73\xf5\x1e\x53\x50\x8f\xde\xac\x1a\x57\xa4\x77\x6e\x58\x30\xf9\xb2\x4b\x65\x53\x97\xc9\xe2\x5b\xee\x33\x5f\x7b\x5e\x5c\x33\xff\x2e\xa2\x30\xe2\x9a\x36\xd1\x19\x9e\x3a\xe7\xd7\x2a\xd7\xca\xc0\x92\xd8\x1b\x16\xd7\x0b\x6c\xef\xc0\x6a\x33\x1e\x12\x54\x40\xfb\x08\x11\x11\x7b\x81\xe4\xeb\x4c\xb9\x19\x6f\x4d\x96\x86\xea\x3c\x78\x04\xaa\xa1\x59\x7f\x36\x50\xd0\x20\x47\x05\xd9\x0f\x6e\x7d\xfd\x25\x8a\x68\x38\x67\x64\x88\x97\x82\x9c\x19\xb0\x97\x05\x82\x37\x13\x9e\x6e\xe3\xa8\x3f\x24\x7d\x05\xe8\x12\x46\x3f\xc0\x00\x47\xc4\xeb\xd9\xe5\x95\x5d\x64\x6f\x4a\x38\xca\x8a\x81\xb0\x6f\x73\x0e\x03\xbe\x67\xf8\x80\xc9\x14\x66\x88\x87\x3d\x15\x68\x02\xc6\xe6\x84\x12\x87\x11\x9c\x90\xa5\x97\x5a\x23\x8f\xea\x15\x60\xee\x2a\x1f\xc6\x6a\x64\x95\x84\x65\xe7\xf0\xd4\x4c\x58\xc5\x3f\xd9\xbd\xe9\x5f\xe9\x3f\x99\x88\xe8\x4f\x55\x17\xe5\xe7\x7f\x99\x4e\xeb\x22\x59\x32\x81\x1e\x8c\x3c\x22\x45\x58\xe6\x9e\xa1\x58\x80\x4e\x48\xfc\x03\x6c\x86\xe2\x79\x67\x6e\xd6\x44\xf0\x7a\xd7\x95\xf7\xd4\xb6\x22\x56\x18\x2f\xfb\x82\x97\x41\x9b\xfd\x43\xce\xc5\x8e\xf1\x2b\xfd\x5f\x2c\x73\x38\x10\xc4\xe1\x47\xc0\x06\xd6\x55\x3b\xf1\x76\xd2\x8b\xe7\x72\xe9\x51\xec\xac\xb9\xb3\x7d\x76\xb1\x17\x49\xcc\xe9\x7c\x30\x34\xb9\x35\x99\xd7\x72\x81\x4c\xae\xb3\x06\xfc\x88\x15\xfa\xde\xa9\xf6\x7d\x7a\xc9\x71\x99\x97\xbb\x35\x89\x9e\x81\x23\xd1\xb0\xc0\x70\x5a\xac\x1e\x15\x52\xe0\x88\xc2\xc8\xe1\xf0\x5f\xa8\x2b\x58\xde\xce\xa5\x48\x83\xd9\xb4\x1c\x49\x53\xee\x9e\x0c\x5b\x91\xdd\xa2\xc3\x76\xf1\x54\x6f\xe0\xc7\x5e\xc2\x51\xc3\x01\x36\xb4\x0f\xb0\x73\x4c\xf5\x42\xce\x12\x5c\x1f\xc4\x59\x78\xa2\x07\x3e\x18\xaf\xb9\x0b\xab\x0d\x24\xe2\xd7\x06\x2d\x3e\xed\x03\xe7\x32\x2f\x37\x0b\x94\x45\xf5\x92\x2e\xe1\xe0\x31\xbe\xfb\x19\x2e\x07\x09\x14\xc0\xee\x20\xfa\x79\x6a\xa1\x06\xc6\x60\x4e\xfd\xf6\xf1\x05\x62\xa4\x30\x2e\x94\x0e\xb0\x20\x74\x92\xe2\xd8\x16\x2c\x3d\xba\x38\xd8\x6a\x62\x87\xd9\x1f\x3e\xf6\xdd\x44\xf7\x06\xd3\xc4\x34\x21\xa1\xab\x41\x78\x22\x46\x56\x57\x01\x0d\xe3\x32\x07\x5f\xce\xb8\xae\x0a\xd2\xd6\xd1\x99\xbb\xea\xfd\x2e\xae\x97\xf0\x08\x5f\xb3\xbd\x75\x0f\x06\x84\x15\xee\xde\x43\x40\x88\x88\x2b\x1f\xf9\x64\x72\x44\xcc\x7c\x9c\x7d\x5f\x57\x12\x22\x98\xa4\x3e\xfa\x40\x28\x71\x8b\x38\x0d\xfa\x90\xfb\x5e\x46\xa5\x3f\x8c\x76\x27\x35\xc8\xff\xdc\x72\x9d\xd8\x24\xd8\x96\x34\x09\x66\x13\x7a\x4a\xfb\x9d\x04\x51\x41\x21\x6c\x4c\x6c\x8e\xf2\x56\x84\xba\x51\x7f\x73\x76\x33\x9a\x94\x96\x26\xeb\x9f\x58\x5f\xa1\x40\xc6\x88\xb3\x00\xe7\xb8\x0c\xce\x0d\x33\x3b\x7d\x38\xde\x74\x47\x6a\xc3\x79\xc8\x9a\xac\xc3\x20\x27\x2c\x06\x0c\x65\x78\xeb\xd9\x33\xcc\x41\x88\x02\x74\x6d\x8a\x1f\xed\x41\x94\x0d\x20\x8a\x42\xf2\x47\xb0\xb5\x1f\x51\x9e\x11\xdd\x7b\x09\x61\x7f\x7d\xdf\xed\x65\x6c\xc1\x55\x81\x50\x3e\x66\x5e\xa9\xef\x6b\x98\xf5\x31\x1c\xa2\x38\xfe\xe2\xb9\x0f\x76\x81\x24\x94\x1f\xa8\xfa\x77\xe0\xce\x7e\x25\xb0\x42\x70\xab\xc4\x0b\xa5\x4d\xb4\x1a\x06\x7d\x85\x53\xa3\x20\xe0\xed\xa8\x69\x1f\xef\xe1\xc0\x7b\xc4\x9b\x3c\x03\xcd\x8f\x77\xd7\x2d\xc7\x3c\xe7\xb3\xd7\x2b\xd1\xf3\x85\x68\xee\x69\xf2\xbb\xbb\x9a\x14\x2f\xfe\x89\x36\xdd\x7d\x16\x8d\x72\x84\x9d\x91\x9f\x4b\xb9\xa7\xb5\xef\xad\xb5\x50\x55\xfe\x54\x96\xdb\xa0\x89\xb8\xfb\xc1\xe5\x5e\x48\xbb\xb1\x5f\xfd\x04\x0f\x56\x59\xc1\x02\xde\x44\xbd\xd9\xbb\x86\xee\xd1\xbd\xf7\xc9\xee\xd3\x95\x99\x86\x72\x4f\x10\x82\x31\x5f\xb4\xb3\x5e\xbc\x15\x84\xf3\x5e\x07\xc3\xfa\x76\x16\xec\x58\xb8\xa7\x65\x5b\xd1\x44\x55\x93\x7b\xa5\x0f\xa4\xe3\xba\x66\x05\xda\xfd\xdd\x8b\xaf\xf8\xa4\x13\x57\x7b\x02\x8d\x82\xc3\x44\x7a\x7a\x4f\xe5\xce\x2c\x8f\xe7\x28\x48\xde\x5f\x60\x70\x57\x35\xaa\x2b\xbe\xab\x3a\x26\xb4\x41\xc3\x76\x61\x75\xac\x1c\x36\x6d\x78\xe6\x1a\x76\x6c\x62\x48\x93\xc5\x22\x53\xbc\x84\x2c\xe7\x75\x41\x9c\x6f\xdd\x40\xfa\x5c\x49\x30\xe9\x50\x1d\xf5\x17\xfe\x86\x44\x3b\x58\xaf\x77\x5c\x70\xb5\x4e\xc9\xea\xdb\x87\xb9\xa3\x49\xac\xe9\x8a\x0d\xf0\x26\x1e\x9c\x12\x50\x3b\xf6\x95\x53\x97\x4e\x48\x0e\xb3\xa0\x04\xc2\xca\x79\x37\x7f\x3e\x5b\x9a\x8f\x10\x1f\x45\x99\x8b\x3d\xfd\xf5\xde\x90\x5c\x36\x86\x88\x1d\x96\x9d\x45\xba\x52\xcb\x5e\xc0\xdc\xa0\xc6\xfc\xd5\xb7\xc8\x86\x61\xa2\x34\xf7\x66\xd5\x04\x02\xe7\xfd\x0d\x30\xe1\xdd\x88\xfe\xaf\x44\xaa\xd6\x80\x81\x99\xc0\x19\xcf\xd4\x56\x80\xf3\x93\xcd\x8e\x90\x03\x63\x19\x4c\x02\xfa\x0a\xc9\xe9\xc5\x25\xce\x52\x69\xd2\x48\x98\x5b\xb2\xec\x93\xfe\x4a\x8a\x25\x42\xd9\xf3\x63\x20\xba\xb1\x2c\x16\x1c\x81\xa0\xaa\x35\xd0\xf7\x4d\x69\x57\x43\xeb\x42\x25\x81\x30\x3e\x85\x69\xf0\x72\xa6\x9a\xe2\x85\x0e\x3c\x33\xb4\x2d\x17\xd5\x15\xc9\xfb\xef\x68\xae\x6a\x3c\xcb\xe6\xde\x84\xba\xf3\x06\x94\x1b\x09\x3c\xc4\xf9\xe8\x35\x14\x5f\x24\x33\x5c\x1f\x2a\x23\x8c\xd0\x33\x04\x9d\xba\x8b\x69\x18\xbe\xcb\x9c\x8a\xfd\x52\xa4\xa2\x8a\xb7\xdf\x54\x3d\x98\xbf\x64\x1d\x8c\xfa\x10\x06\x5a\x97\xa6\xbf\x94\xb3\x6b\x55\x33\x44\xe6\x77\x7d\xe1\x90\x87\x1d\x2e\x27\xe2\xf7\x3d\xe0\x86\x82\x0b\x89\x28\x0c\x47\x35\xf6\x89\x57\xb2\x70\xb5\x5a\x98\x7f\x08\xb3\x86\xa3\x6e\x6c\x70\x99\x6c\xc3\x0f\x11\x5d\xbb\x19\x8e\x53\x68\x5f\xce\x44\xa5\x39\x52\xa7\x77\x25\x9e\x62\xd9\xe4\xb7\x12\x4b\x9e\x8f\x2e\x3b\x92\x1c\xea\xa2\xb3\x47\xc6\xf8\x21\xc4\x55\x73\xc3\x56\x51\xbb\xbe\x34\x9a\x92\x71\xdf\xfc\xa1\x9e\x9d\xe4\x4d\x80\x74\xdb\x46\xee\xa3\x9d\xeb\xe7\x18\x48\xce\x2a\x78\x54\x6f\xe4\x6b\x0c\xb2\xd5\x58\xb0\x2e\x2a\xec\x18\x64\xde\x14\x3c\x67\x2f\xe9\xcf\xd8\xa8\xe7\x5e\x46\x33\xcb\x1e\xd6\xf2\x96\xa3\xa2\x89\x2b\x28\x67\x10\x75\x96\xeb\x2b\x09\x2c\xc7\xaa\x37\x0e\x5b\xe4\x94\x9d\x2f\x72\xca\x7b\x0a\x7c\xf1\x10\x15\x28\x9e\x70\x73\x1e\xb1\xa1\xc3\x23\x74\x7d\xff\x24\x0c\x2a\x33\xec\x13\x5c\x8b\xac\x5f\x6f\x45\x6d\xc2\x6c\xe2\x68\x49\xc2\x78\x1f\xb0\x70\xc5\x76\x35\x73\xf6\x33\x11\x6c\x2b\xa1\xbb\x39\x9c\x0f\xf1\x00\x04\x6b\x34\x10\xd1\x3b\xe5\x0a\x45\x70\xa7\xd2\x6b\x1b\x1c\xcf\x83\x11\x36\xee\x91\xde\x81\x65\x04\xc9\xed\xd7\x11\x84\x77\x45\x04\x90\x45\x9b\x18\xca\x48\x0a\xee\xcd\x9b\x6f\x22\xf6\x11\x30\xe0\xe8\xc9\x3a\x74\x54\x43\x72\x8b\xf9\x89\x19\xab\x59\x9b\x02\x4f\x05\xc6\x15\x5b\xb9\x02\x66\xc8\x82\x2a\xed\xbf\x62\xac\x69\xcb\x65\xde\x16\x16\xc2\x52\x19\x33\xdf\xe4\x07\x03\x0e\x83\x20\xe5\xeb\xae\xb1\x2a\x68\x23\x21\x90\x4f\x7c\x77\x81\xe6\x1b\x5a\x95\x9a\xda\x58\xc1\xf5\x47\x24\xcc\x8b\x77\x5b\x66\xcf\xc2\xeb\xad\x1d\x0c\xf9\xf1\x7f\x5e\x9c\xbe\x3f\x48\x3f\x3f\xbd\xb9\xb9\x79\xca\xc5\x9f\xee\xda\x35\xc7\x17\x29\x38\x44\xe6\xff\x3c\x79\x77\x90\x96\xfd\xe2\xc9\x2c\x3d\x11\xae\xed\x99\xa1\xfa\x05\xc0\xe7\x07\x87\xec\xc4\x20\xfe\x38\x37\xd7\x15\xa3\xb6\xd3\x30\x96\x72\x28\xdc\xf1\xec\x99\x87\xb6\x4e\xa6\x78\x6a\x07\x82\xc2\xa2\x2d\xe1\xe0\x8c\x8f\x20\x83\xa4\x86\x4f\x53\x61\xd1\x86\x20\x15\xb5\xa3\xdd\x78\xbb\xd0\x67\xb5\x06\x20\xe6\xcf\x77\x04\x4f\x3e\x6f\xd6\xe5\x89\x73\xbb\x30\xdb\x69\x89\x4b\xf1\x61\x55\xb4\xc1\xcc\x4b\x9b\x88\xb2\xf8\x69\x58\x18\xd7\x92\xf0\x92\xcd\xf3\xf4\x3f\xf9\x9c\x96\x27\x4a\x68\x8b\xb3\x8c\xb6\x00\x3c\x1b\x16\x46\x94\xf5\x40\x2f\xa4\x01\x48\xec\x78\xd3\x4b\x7d\x9e\xd3\x4d\x47\x95\xa8\x99\x90\x3d\xa3\x89\x09\x3b\xb3\x21\x68\x4d\xaa\x1b\x17\x89\x4f\xc9\xa7\xb3\x0d\x2f\x72\x23\xe9\x40\xef\x2a\xd9\x11\xf2\x14\x1e\x52\xb9\x93\x35\x89\xa2\x80\x3f\x02\x54\x8d\x7b\x63\xb3\x80\x30\xa6\x54\x9f\x14\x28\x87\x19\xc1\xf3\x65\x65\x8f\x10\x5e\x53\x6b\x51\xac\x60\x6e\xd6\xfc\xea\x31\xfe\xa6\xbb\x8f\x08\x72\x12\xfe\x20\xe2\x1e\x60\x1d\xb1\xbe\x30\xbd\x19\xce\x46\xbc\xc9\x4b\x7e\xca\x9b\x46\xd2\x8d\x02\x0e\xda\x18\x09\x15\xaa\xd9\x8d\x95\x11\xdf\xc2\x3e\xf9\x49\xfc\xf0\x6d\x5f\xb7\xc8\x9e\x88\x21\x73\xec\xd2\x62\x69\xd4\x56\x29\xf8\x6e\xbc\x44\x19\x21\xb2\x8e\x42\x8e\xca\x72\x6d\xec\xb5\xcb\x20\x08\x7c\xc4\x77\xa4\xed\x3a\xe6\x28\xec\x53\xb8\xd3\x4b\xad\x16\xc4\x43\x82\x8d\x0c\x32\x87\xef\x08\x0e\x57\x36\x89\xb6\xf2\x86\xed\x91\x7c\x85\xd8\xda\xae\x9b\x5b\x8b\x8c\x75\x8c\x5f\x1a\x90\x33\x1c\x99\x07\xd3\x41\x79\xc8\xa9\xba\xbc\x28\x0a\x28\xd4\x0e\x8d\x8c\x8d\xfb\x4f\xe5\xad\x2f\x4c\x29\x5b\xcb\xa9\x4e\xbb\x2e\xeb\x2c\x19\x79\x1c\x46\x44\x5e\x91\xd2\x00\x53\x01\x6a\x70\x21\x33\x1c\xc0\x5f\x83\x17\x28\x54\x07\xa9\xd9\xc0\xe4\xba\x11\x6a\xfd\x91\x87\xcb\xd4\x28\xc6\x11\x9d\x1c\xd4\x30\xf2\x94\x1f\xe9\xde\xc8\x53\x61\xd1\x30\xfc\x54\x50\x14\xfb\xa6\x43\xc2\xe4\x91\x6e\x34\x2d\xe3\xe0\x52\x7e\xa8\x5f\x10\x5f\x6a\x7a\xe6\x86\x8a\xc7\xbd\x53\x7d\x97\x47\x47\x11\x0e\xee\x0b\x22\x4d\x0d\x54\xf3\x2f\xd1\x41\xa6\xfa\xe2\x91\x12\x60\xf7\x3e\xff\x8e\xa2\xba\xba\x9a\xcd\x5b\x12\xc1\x39\x9c\x13\x9e\xee\x63\xce\xce\xbf\xd3\x0b\xfc\x16\x10\xf6\xeb\x05\x55\xc8\x87\x24\xea\x3d\x84\xe7\xea\x9b\x2a\x89\x70\xaa\x1c\xbe\x18\x76\x4c\x39\xe2\x60\xf9\xbe\x41\x5c\x4e\xc9\x99\x49\x11\x56\x01\x32\xfe\x42\x20\x2a\x9c\xc0\xf3\x99\x32\x0a\x5d\x70\x4a\x00\xd6\x6d\xd7\x24\xbd\xea\xf3\x74\x17\xfc\x03\x77\x4b\x03\x88\x5d\x4d\x7a\x6c\x59\x18\xcc\x07\xf9\x19\x42\x71\x95\x36\x75\xb6\xa3\xe2\x2a\x8d\xb8\xb2\x8a\xe8\xed\x8d\xbe\xa0\x50\x83\x23\x30\x22\xab\x0a\xb2\xb5\x07\x09\x03\xd7\x10\x84\xcd\x89\x87\x50\x44\x83\x61\xbd\x7c\xfb\x5e\x7e\xe2\x7e\xac\x46\x90\xc5\x05\x59\xf6\xa8\x4d\xec\xd6\xed\x6c\xea\xf6\xad\xe5\xc9\xa5\x69\x31\x52\xda\x9b\xe2\xf8\xe5\x20\x8a\x36\xbf\x82\x03\x19\xff\x75\xa9\x24\xbf\xfb\x62\x67\x6d\xf9\x74\x58\x8c\x90\x23\x53\x76\x81\x0f\x97\xae\x0e\x60\xfc\xc7\xa5\xe5\xf0\xeb\x7e\x1e\x8c\xdc\x63\xc4\x1c\x88\x89\x7e\x1f\x76\x69\x57\xb1\x19\x5f\x09\x7d\xd0\x20\xa8\xcc\x3f\xf4\x02\x1a\xc4\x35\xea\x70\xac\xa1\x67\x19\x62\xd7\x75\xab\xd4\xe1\x87\x23\x0d\xf4\x12\x97\x4a\x5f\xa5\x9c\x45\xfd\x8e\x4a\x8b\x78\x50\xda\x6c\xe3\x69\x53\x96\x80\x11\xd5\x45\xc2\x89\xee\xf8\x19\x4f\x42\x04\x47\x39\x66\x69\xc9\x2d\xa2\x6a\x43\xf5\x5f\xcb\x1b\x51\x52\x3d\x49\x3e\x2e\x6e\x16\x09\x41\xb5\x84\xee\xb1\x3c\x58\x4f\x2c\xda\x77\x54\xc6\xbf\x44\x63\x87\xb9\xfe\xba\x3a\xe5\x43\xaa\x5a\x84\xb7\xe0\x59\xc4\xe2\x38\x82\x32\xf6\xa0\x03\x11\x47\xb7\xd4\x31\x17\xb7\x1c\x71\x94\x50\xf7\xa4\x90\x2c\x74\xb9\x9c\xc9\x97\xcb\x61\xe9\x5d\x44\xd0\x77\xf2\x25\x6f\xa4\x0f\xa9\x69\x1c\xd9\x8d\xf2\x9e\x0e\xe7\x3a\x80\x77\x08\xf8\xb5\x7c\xc4\x67\x23\x0d\xc9\x06\xa9\x38\x49\xe5\x7d\x44\x29\x66\xce\xf3\x0f\x8e\x3e\xc5\xf6\xe0\xbb\x31\x74\x0d\x74\xcd\x29\xa1\x78\x92\x19\x51\x3b\x3b\x5d\xd9\x4a\x81\xd7\x55\xbc\x5c\x40\x3d\x7e\xc1\xc0\xfd\x71\xb4\xd0\x44\xf8\xf2\x50\xf1\x01\xd7\x04\xb0\x6c\x35\x9a\xe5\xcd\xbf\x43\x98\xe9\xdd\xc5\xda\x19\xba\x59\x21\x50\x2f\x5b\x3a\xdc\x59\x11\x91\xcc\x1d\x7b\xc9\xa8\xb5\xf0\x58\x41\x9a\xb8\x67\xf3\x18\xae\x81\xd8\x69\x2b\xa8\x47\xb7\x78\x76\x03\xd4\x35\x32\xda\xe2\x5d\x6f\xf4\x91\x48\x6c\x63\xf6\x9d\x24\xbf\x35\xed\xf2\xa3\x7f\x60\xc4\xd9\x8c\x23\xb3\x2f\x2c\x07\x0c\xe3\x42\x7b\xef\x01\xf4\xe1\xbe\x7d\x8d\x46\x8e\xaf\x79\xd1\x8d\x5f\xe8\x16\xbb\x8d\xbc\x03\x05\x57\x44\x0b\xab\x35\xb3\x30\x16\xf2\xb6\x81\xfa\x08\x86\xcd\x49\x74\x09\xef\x79\xf6\x41\xaf\xc0\xaa\xe7\x12\x47\x40\xe0\x0f\x7e\x7e\x82\x1f\x89\x67\xa3\xad\x38\x95\xbc\x45\x02\xb1\x44\x24\xe0\x79\x14\xb1\xc0\xd1\xdf\x04\x81\xf5\xd5\x4c\xcd\xa9\xfa\xa5\xe9\x83\xe0\xfd\x51\xb0\xfd\x20\xec\x06\x1e\xd3\x88\x1c\x1b\xb9\x72\x60\x65\xc2\xe5\xd9\xbd\xcf\xa2\x9d\x10\x14\x22\xf5\x2e\xe8\x28\x66\x15\xaf\x75\x71\x96\xe7\x55\x9d\x8b\xfb\xa8\xde\x7b\x56\x12\xc1\x03\x1f\x75\x74\x3f\xb0\x9b\xf9\x66\x02\xce\xb1\x12\x7f\x68\x5f\x0c\xaf\xfd\xb2\xab\xe5\x4f\x02\x1f\x85\xaa\x51\x65\x3e\x97\x98\x73\x92\x9c\xae\x49\x2f\x5c\x47\xda\x3d\x2a\x62\x79\xfa\xa7\x3d\x8f\x0b\x8c\x1f\xb4\xf9\xfa\x40\x45\xe3\x3a\xee\x0e\x55\xf4\x47\x9d\x13\xa7\x83\xdc\x87\x26\xcc\x41\xb4\x7b\x97\x35\x15\xf6\xfe\x8f\x78\x13\xc6\xa0\x01\x93\x89\x50\xe0\x6a\xfa\xd2\xe3\x4b\x75\x52\x24\x4a\xfd\xf7\x7c\x14\xe3\x27\x60\x86\xbd\x1e\x85\x7d\x8f\x3a\xfd\x75\xe1\xdf\xf7\x3a\x42\x44\xbc\x62\xa8\xd2\x8f\x62\x2e\x62\x80\x77\x16\x89\x23\x30\x86\x1d\x76\x46\xdc\xc0\x11\x41\x4f\xe8\x24\xf6\xa2\x1c\xe4\xdc\x1f\x80\x71\xcf\x31\xed\x5d\x91\x18\x87\xbd\x64\x1e\xe3\x6e\xbf\x87\x9d\xbc\xb3\x44\x28\x65\x34\x83\x23\xbf\x3f\x1e\x9d\x71\xfa\xf4\x8d\x55\xfe\x1b\xb3\x74\x42\x2a\x31\xfc\x79\xfb\x11\xab\x6f\x86\x2f\xd1\xef\x3c\xa3\xf5\x98\x83\x3c\x29\xc8\x1d\x3c\x39\xa4\x5c\x7b\xe6\x5f\xac\xc9\xa2\x88\x8c\x27\xfe\x4d\x1c\x1f\x9c\xf1\x07\x57\x4c\xdd\x0e\x2c\x9c\xf3\x20\xdd\x73\x4a\x38\xce\xab\x63\x85\x07\x92\xdf\x90\xf9\x26\x73\x86\xe5\xe3\x36\xf4\x8d\xd4\xb6\x59\x97\xae\xa3\xe9\x39\xfd\xf2\xdd\x8b\xaf\x91\xc7\x05\x5d\x19\x97\xae\x6a\xb2\x3e\x03\xe5\x7b\x23\x4f\xfc\x20\xc0\x43\x90\xaa\xbb\x65\x30\x57\x22\x27\x6b\xed\x50\x3b\x7e\x18\x42\xcb\x9b\xab\xba\xaf\xbe\xe7\xe7\x63\xb0\xa9\xce\x70\x2b\x5d\x1e\xbf\xd1\x94\xb8\x51\x49\x63\x89\x45\x83\x02\xa7\x12\xae\x50\xc3\xc6\x8e\xf3\x07\x11\xe1\xb0\xa7\xb8\x58\x70\xf6\x86\x14\x0b\xdc\x1a\xff\xa0\x96\x23\xca\x38\x44\x9a\xd4\x0a\x81\xdd\x37\x2b\xd7\x0a\xa2\x76\x43\x88\x2f\x69\x98\xfb\x39\x6a\xee\xc0\x0c\x9e\xb0\x43\xa9\x25\x56\x82\xa9\x4b\x2b\xf2\x16\xb5\xeb\x87\x7b\xed\xdc\xf7\x23\x84\xf8\x92\x7e\x70\x2b\xb8\x9e\x2b\x0a\xdc\x1d\xfd\x21\x8d\x5b\x5f\x4b\x88\x1c\x9b\x86\x5d\xf4\xb1\xca\x2e\x83\x9d\x1c\xce\x61\xc5\x40\x32\xe1\xf3\x85\xf1\x96\x2a\x39\xe2\xb1\x32\x21\x3c\x88\xa3\xe6\x64\x3c\xe5\xfb\x99\x00\xee\x41\x73\x49\x07\x1a\xb8\x60\x7a\xb0\xc9\x7d\x49\xfa\xe5\x85\x3d\x48\x5f\xca\x1b\x34\xf3\xfe\x2d\x59\xe0\x2c\x92\xb0\x48\x7e\xe1\xa6\x02\xd1\xcf\x66\xb2\x00\x84\x77\x83\xe0\x05\x16\xb4\x3a\xae\xcc\x31\x73\x40\x39\x26\x3e\x86\xb3\x15\x1b\xca\x6d\x81\xf5\x9d\xd9\xf6\x81\x49\xb3\xce\xdb\x0a\x50\x7c\x90\x1c\x3a\xa0\x72\x04\xe8\x26\xbc\x42\x59\xdd\x79\x25\x6a\xdc\x15\xbf\xaf\xcb\x2b\x75\x8e\x60\xf6\x2a\x3d\xb3\x70\xa9\x8f\x09\xc4\x93\xdd\xb2\xc5\x15\x71\x9b\x6b\x66\x16\x01\x29\xa0\xc2\x1f\xdc\x28\xd9\xfc\x30\xe0\x06\xf0\xbe\xa0\x8a\x1e\xdd\xc5\x14\xbe\xa2\x03\x60\x1b\x77\xf7\x00\x6c\x41\x22\x8c\x50\x37\x02\x16\x70\x57\x47\x64\xcd\x7f\x45\x47\xc0\x37\xbe\xb0\x23\x07\xd6\x0b\x7d\x39\xaa\x28\x26\xd7\xff\x5d\xfd\x1b\x28\x42\x20\xce\xe8\x29\x33\x63\x06\xf0\x4a\x82\xa6\x36\xe9\x95\x14\x98\x67\x67\xb3\xe1\x2a\x09\xdc\xaa\x82\x95\x12\xf8\xb6\x5a\x5f\xe0\x40\xa5\x77\x00\x74\x97\xf3\x55\xd5\x34\xef\x78\x6f\xa1\xee\xc3\x7b\x02\x71\x54\x49\x76\x77\xee\xdb\x5b\x95\x74\x18\x23\x71\x50\x4c\xef\xb9\x28\x3a\x1d\x1c\x09\xe4\x35\xba\xdf\x30\x57\x1f\x13\xf7\x98\x3e\xaf\x7f\xfb\x4e\xc4\xf2\x25\x87\xa9\x78\x64\xcc\xbf\x2e\x96\x0e\x5f\x1b\xbb\xf3\x69\xb8\xf8\x09\xc2\xe1\x9b\x84\x9d\x04\xef\x5e\x9a\x88\xb8\xdc\xe9\x45\x29\xf5\xd8\x64\x8c\xdf\x12\x0e\x36\x6c\x28\xe6\x84\x64\xd3\xd4\x95\xf8\x78\x9d\xc8\x57\xc5\x4f\xc3\x85\xb7\xfd\x5e\xf1\x0f\x79\x34\x41\x53\xf8\x72\x57\xd2\x37\x3d\xa2\xf1\x5e\xf2\xdf\x1f\xd2\x87\x45\xe2\x87\x0e\x1b\x30\x9b\xdb\x16\x62\xe9\x94\xef\x20\x3f\x78\x97\x0c\x77\x95\x5b\x7b\x68\xcd\xd7\x80\x6e\xc2\x62\xbd\x0b\xba\xad\x9d\x44\xa5\xbb\x6e\xaa\x45\xbb\xc2\x07\xcf\x03\xb6\x96\xcf\xcd\xd6\xc2\x4f\x8b\x17\xfc\xb4\xb8\xd8\x21\x0f\x82\x84\x68\x42\xc2\x8c\xad\x7b\xc8\x23\x4a\x8e\xb7\x52\x9f\x2e\x31\x81\xa3\x24\x0e\xfd\x19\x25\xe4\x8b\x51\x2b\x76\x5e\x11\xa6\x99\x13\xb2\x4f\x31\x77\xe4\xa8\xf6\xf8\x35\x87\x30\x4b\xfc\xee\xa3\x24\xb9\xe3\x31\x18\x89\x58\x79\xc3\xb4\x75\xb3\xe4\xe7\x0b\x61\x2b\x8e\x87\xa7\xf2\x7a\x5c\xa7\x5d\x85\x8d\xaa\x40\x74\x9e\x30\x05\x47\xa7\x7d\xde\xc5\xa5\xb1\x3e\xc3\x04\xbd\xbf\x39\x02\x24\xfd\x3d\x5f\xac\x34\x30\xc3\x04\x21\x99\x1a\xee\x88\x49\x74\xf1\x29\xc8\xee\xa6\x92\x58\xad\x17\xf8\x98\x84\x69\x77\xb0\x21\xee\xea\x20\x97\xaf\x97\x73\x28\x03\x3c\x78\xd1\x68\x64\x63\xbe\x6b\xee\x1e\xb7\x48\x4f\xb1\x1c\xbb\x3b\x0b\x05\xfb\x22\xc7\xc5\xd3\x07\x35\xb4\x64\xe0\xef\x3f\xbd\x41\xfa\x9a\x75\xab\x55\x9f\xa2\xe0\x1d\xf4\xce\x4b\x1e\x39\xc2\x5e\xe8\xd9\xbe\x65\x7f\x51\x1d\x83\x5e\x7a\x08\x57\xcd\xd7\x77\x15\xfc\x9f\xf9\x3d\xf5\x66\xd0\xc9\x88\xe7\x19\xc8\x3d\x35\x0c\xba\x38\x59\xc5\xd7\x77\x12\x3b\x6d\xbd\x94\x5d\x67\x4f\x27\x6f\xf1\x22\x4a\x5b\xa8\xe2\xba\x66\x07\xce\xd7\xe6\x54\x76\x4f\x95\xfb\x7a\x7d\x67\x9d\x5f\x31\x8c\x65\xd5\x67\xcb\x85\xef\x3e\xbf\x06\xd5\xce\x99\x71\xf3\xe6\x5e\x2e\x24\xa4\x4a\x1d\x1b\x2d\xa7\x8b\xdf\x85\x60\x74\x88\xcd\x15\x53\xd5\xef\xeb\x5b\x5b\x76\xb7\xf5\x82\x0d\x75\xfc\x78\x96\x1e\xb0\x9f\x97\x72\x68\xf2\x68\x46\x69\xcf\x72\x0d\x12\x5e\xe2\x28\xba\x7b\x24\xef\x06\x3e\x5e\xe4\xb8\x21\xf8\x03\x6d\xc5\xf5\x53\xb0\x76\x94\x36\xc9\x96\xb1\xf5\xe4\xce\x86\x06\x63\x09\xf8\x7a\x80\xdb\x16\x5d\xe9\xcb\x2f\x1a\x41\xe0\x4e\x12\x0e\x83\x09\x45\x99\x18\x58\xde\xe0\x7d\xdb\xf4\x31\xbb\x06\xf1\xfb\x5e\xec\xf7\xa4\xfe\x84\xba\x69\x23\x3c\xb7\x33\xb0\x15\x7b\x06\x14\xb6\x7b\xc7\x0c\x3d\x8a\x7a\xf1\x75\x63\xe4\xb0\xff\xa3\x85\x70\x8e\x64\x7d\x06\xe0\x0f\x2d\x87\xa9\x8a\xff\xdd\xe5\xd0\x06\xbd\x1a\x3d\x09\x19\x88\x07\x08\xb5\x4e\xb8\xe3\x0b\x2d\x90\x3b\x11\x7a\xfd\x03\x7e\x87\xec\x5a\xdf\xbc\x5c\x36\x6d\x43\x14\x27\xf1\x73\xf5\xed\xc6\xd7\x96\xd6\x4d\x14\xc0\x89\xc5\x6d\xb6\xd3\xf0\x04\x56\xe6\x04\xc9\x24\xf6\xf1\xdd\x7e\x5f\x0a\xc2\x93\x95\x61\x3b\xf4\x42\x4f\x2f\x20\x4d\x59\xa9\x43\xcb\x08\x4a\x6a\x99\x66\xce\xd7\xae\x34\x6c\x13\x80\x4f\x35\x25\x80\xc5\xa9\x1f\x07\xa5\x25\x0a\xd8\x6d\x33\x1e\x2a\x6e\xed\x4b\x72\xfa\x0e\xc9\xe9\x25\x27\x8f\x5b\xb0\x5e\xb9\x62\x83\x4e\xed\x2b\xc7\x81\x0a\x87\x65\x5e\x71\x3c\xc3\x21\xbc\x61\x6e\x55\xe6\xdb\x11\xde\xde\x50\xe2\x08\x6b\x80\x1c\x23\x00\xb0\xfb\xb1\x10\x96\xaa\x0a\x28\xd1\x61\x89\xb7\x94\xb4\x0f\x1a\xbe\x38\x43\xf8\x9a\x85\xf8\x3d\x25\x54\x9a\x1a\xf6\x4a\x4f\xea\x46\xbd\x6a\xe6\x1c\x85\xa3\x33\xe8\x53\xf9\x19\x40\xcd\x9b\xa6\x27\x5d\x8e\x40\x49\x8c\x84\x5b\xa6\xa0\xe9\xa5\xa5\xb3\x20\xbc\xf8\x34\xc2\x94\x40\x8f\x51\x25\xd0\xfb\x71\xb5\xe1\x77\x12\xa8\xad\x76\xb7\xe8\x77\xc4\x73\x5c\x83\x27\x17\xfc\xbe\xc2\x85\xcb\x18\xb5\x38\x2a\x19\x52\xe8\xb0\xf0\x54\xcb\x0b\x7e\xe5\x62\xb2\xe9\x23\xce\xb9\xb3\xed\x51\xd9\xb0\xf1\x51\xf1\xa9\x95\x82\x37\x83\x99\x29\xcd\x77\x8b\x4f\x65\xcf\x57\xca\x57\x19\x5c\x34\xc2\xba\xce\x0c\x2c\x7d\x09\xb0\xf4\x0d\x81\xa5\x97\xb0\xb8\x4d\xd4\x4a\xfb\xe8\xa6\xec\x73\xb8\xec\x04\xb5\xbc\x3e\xa2\x19\x90\xe4\xa9\x52\xb0\xc4\x65\xaa\xff\xe8\x2a\x64\x91\x34\xa8\xe1\x14\xc6\x3a\x55\x89\x0e\x1d\xc8\x54\x6d\x1c\x1a\x57\x36\xf4\xc5\xed\x62\x2d\xde\x2c\x9f\x7b\xee\xc3\xb9\xa4\x04\xb0\xd0\xf1\x08\xd6\x78\x24\xbc\x4a\x10\xc9\x83\xc0\x2f\x63\x46\x29\x1c\xcc\x03\x0b\xe3\x22\xb8\x33\x8e\xd6\x35\x05\xb8\xcd\x65\x31\xed\x85\xb4\xe6\x0d\xd0\x5a\x1e\xc2\x69\xa3\x9d\xa0\x52\xd8\x8a\x28\xd8\x72\xc7\x48\xdf\x97\x23\x9a\x83\xd7\x02\xae\x18\xd9\xeb\x72\x9c\xa6\xb0\x78\x2a\xd9\x9f\xa8\xf8\x43\x5a\xf7\xba\xb7\x80\x89\x5e\x01\x6d\x42\x52\x4c\x12\xe6\x99\x38\xb4\x6f\xcb\x8b\xe2\xbd\x4a\x9a\xdf\x40\xe9\xaf\xa6\x59\x44\x28\x17\xb7\x5a\xd3\xe1\x9a\xdc\x96\x4b\x36\x54\xc8\x75\x6e\x44\x5e\xc2\xed\x93\x73\x24\x9b\x76\x13\xde\x27\xba\x6c\x30\xca\x60\x60\xb1\x0b\x9f\x0d\xf3\xfe\xa8\x54\x33\xad\x23\x8c\x8f\xaa\x23\x83\xea\x62\x3e\x6c\xb1\xd9\xc1\x7c\xd9\x04\x52\x9e\x15\x91\x83\xcd\x75\x58\x1a\x7a\xa5\x29\x6a\x83\x1a\xde\x41\xe7\x0c\xb0\xec\x1e\x29\x76\xa6\x6e\x1c\x16\xb0\xc9\x45\x2e\x41\xc0\xd4\x0e\x27\xd5\x5d\x6d\x8f\x20\x1b\x19\xec\x7b\x20\xdc\x5e\x26\xfb\xc2\x37\xc2\x3d\x2e\x02\x4a\x81\x97\x4a\x4c\x23\x9b\xfc\xb3\xbe\xb1\xe1\x1f\xf1\x39\xd1\xe7\x7a\x82\xbb\x9a\x47\x96\xfb\x8e\x5f\xee\xd9\x57\xd6\x6c\x7c\x8f\x2f\x88\xc1\x3c\xfd\x16\x6f\xc8\xd1\x7a\x58\xae\x9b\x79\xce\x2e\x29\xf2\x3a\x12\x1e\xff\x79\xa2\x75\x54\x5d\x16\x12\xe5\xf0\x61\xb5\x7c\x40\xa4\x0c\xae\x74\x1a\x81\x22\x42\x06\x67\x08\x99\x35\x6d\x70\x94\x6f\x84\x8b\x43\x73\xbe\x08\x92\xa9\x2f\xf4\xa8\x86\xa0\x0c\x2c\xc4\xb2\xb0\x58\x76\x93\xc8\x3c\x61\x3d\xf2\x82\x4d\x66\x14\x73\x5f\x5d\x7b\x1f\xbc\x99\x9c\x77\x6f\xa4\xb7\x69\x77\x0f\xc8\x03\xfa\xce\x33\xe0\x78\x82\x11\x40\x92\xef\xf2\x7a\xd3\x61\xd0\x53\x09\x2f\xc9\xfd\xf5\xb7\x71\x1b\x16\x2f\x59\x70\x45\xdc\x74\xd6\x93\xc2\x5b\xe7\x2e\x50\x84\xc5\xb9\x2c\xe1\xe7\xef\xc3\x50\x10\x5f\x57\xc3\x62\xd8\x01\x0e\x74\x22\x8e\x30\x7b\xda\xf7\x07\x9d\x08\x69\x16\x36\x1f\x9a\xb8\xe2\x0e\xc8\x61\x5c\xd3\x86\xee\x4e\xb1\x85\x32\xea\xca\x84\x47\xd3\xe1\xf0\xb1\xcf\x3d\xee\xb0\x54\xab\x5c\x38\x1d\xb0\xe8\xe8\x84\x3a\x62\xd5\x28\x11\xb2\x60\x24\xc4\xbe\x3a\x48\xf2\xa7\x37\x76\x70\x23\x76\x54\x70\xdf\x61\x7b\xc1\x9a\x8c\x5a\x93\x12\xe3\x57\x04\xe3\x2e\x48\xca\xf8\x7c\x57\xd2\xd5\x04\x98\xda\xab\x60\x6a\xcf\x9d\xc1\x0e\x28\x22\x58\x6b\x69\xc3\x07\x66\x60\xde\x55\x66\x39\xe8\xf2\x80\x5d\x46\xdd\x96\x52\x12\x9a\xd2\xee\x66\x2b\x47\xd6\xac\xa0\xf7\x92\x12\xbe\xde\x20\x29\x65\x6d\x6f\xc0\x4b\xe0\x9e\x42\xd3\xc7\x9e\x55\x41\x27\xb5\x9a\x41\xe7\x82\x5a\x01\x35\xcd\xf1\x83\xde\x0c\x2f\x1b\x48\x2a\xee\xc5\xf2\xcd\x88\xae\xd7\x94\xad\xbc\xc9\x70\xc6\x6f\x32\x48\x0a\xcc\x6a\x05\xdc\x7e\xd9\x8a\x76\xfc\x3e\x4c\x0f\x1e\xea\x47\xae\x7b\xa2\x7f\x02\x26\xf0\x7b\xca\x5b\x7e\x12\xe2\x07\x0d\xca\x1a\x3c\xd8\xcf\x17\x26\x4b\xdc\xe1\xda\xae\xb9\xbf\xfc\xce\x18\x4e\xc4\xf8\x7c\x60\x87\x80\x8c\xfc\xa2\x36\x5c\x01\x88\xcd\x2c\xc5\x13\x5d\xde\x80\x55\x64\xb2\x7c\xa2\xb1\xa6\x21\x97\xe8\xf9\xc7\x4b\x76\x62\x0c\x40\x30\x22\x00\xb8\x11\xe5\xbd\xc4\x49\x2a\xa7\xee\x66\xa5\x2e\x77\x2f\xf4\xf0\xe9\x14\x2c\x7a\xb7\x93\x72\xef\x39\xac\xfc\xd3\x0a\x11\x24\x99\xfb\x94\xeb\x42\x2f\x1a\x46\xf1\xa0\x66\xa3\x16\xcc\x01\x0a\xa1\x00\xef\xe9\x4d\xb7\xb3\xae\x5f\xec\xee\xeb\xb9\x3e\x30\x2f\xef\xd6\xef\x05\xeb\x58\x4d\xd3\x37\x89\x5f\x95\x6c\xd8\xf5\x59\x3c\x55\x4a\x17\x72\x87\xe2\xb3\xd1\x8d\x84\x25\x34\x24\x4b\x58\x42\xab\x19\x67\x6e\x0e\x40\x4e\xe2\x23\x88\x0d\xef\x9f\x59\x97\x33\xb3\xa1\x9d\xa2\x48\x2f\x0e\x35\xa7\xdb\xf4\x5b\x7b\xf3\xee\xe2\xe4\xf2\xec\x8e\x95\xc1\xa0\x4a\xe1\x80\x0c\xc8\x9c\xb3\x94\xd4\x91\x15\xd0\xbb\xdd\xd2\x97\x15\xa3\x56\x13\x78\xbd\xc9\xd2\xe9\xa6\xe1\xee\x12\xa2\xe4\x81\x67\xda\xf1\x39\x6a\x32\xee\xb6\x48\x99\x59\x7a\x42\x82\x46\xc5\x4e\x94\xd6\x9a\x3a\xf2\xcd\x89\x56\xca\x6d\xde\xda\x7b\x2b\x78\xec\x2b\x7d\x74\xf0\x68\x16\xf1\x92\xac\xc7\x53\x4a\x1a\x07\xec\xf2\xdd\x05\x7d\x2e\xda\x5b\xf1\x12\xd0\x91\x7e\xaa\xb6\x0c\x96\xf1\xd5\x28\x91\x74\x29\x05\xb0\xbf\x20\xc5\x16\x3e\x1f\x27\x97\xed\x35\x47\x42\x54\xfa\x39\x3b\x3c\x81\x15\x87\x92\x42\x56\xa2\x4d\x23\xec\xb1\xc9\xd1\xbe\x13\x34\x1d\x4d\x24\x47\x1b\x3b\xac\xb6\xd8\x4f\xe8\x8f\xd5\x13\x44\x64\x1d\x0a\xbb\x72\xe4\x6f\x98\x1e\x09\x5e\x31\x74\x20\x7f\x79\x46\x3d\x94\xcf\xe3\x22\xf7\x5d\xb3\x99\x45\xac\x39\xdc\x87\xe3\x7a\xbe\xd0\x75\x2e\xac\x2c\x90\x99\xee\x1a\xf4\x64\xb4\xa1\xb8\x44\x04\x99\xc9\x6e\x61\xef\x03\xc7\x55\x3b\x6f\x86\x71\x89\xe8\xa5\xe0\x11\x5e\x27\x5c\xd2\xee\x70\x43\x53\x8a\x83\x20\x55\xb9\x5b\x56\x7b\xaa\x16\x91\x0a\x30\x44\xe0\xf0\x83\xd0\x43\x43\x3d\x00\xf6\x52\x9b\x0f\xa8\xc6\xb1\xf2\xe5\xa0\x37\x88\x1b\x26\x87\x69\xd8\x28\x55\x8c\x0a\x86\x39\x10\xa3\xe2\x6e\xdc\x27\x4d\x89\xd5\xd8\x4c\x9b\xee\xe0\x57\x4d\x9b\xf1\xf9\xaf\xc2\xe6\xdb\xad\xdb\x8d\x83\xb7\xa8\xb1\x7e\x02\x90\x6b\xe1\x7c\x01\xc4\x2f\x1a\xc0\x2d\x00\x92\xab\xbf\x21\x10\xdf\x00\x56\x80\xe1\x8e\xae\xc9\xcd\xd5\x15\xbf\x08\xc8\x0f\x69\x68\x34\x4d\xfe\xc9\x81\x85\x5d\xfb\x7a\xa1\x3d\x63\x5b\x2b\x6c\x97\x3c\xa6\x63\xbd\xe5\x7e\x8e\x44\x56\x16\x0d\xbc\xdd\x61\x2a\xb9\xbf\xe7\xbb\x5a\xd4\xe0\x20\x4b\x1b\xe2\xac\xb0\x11\x08\x85\x6d\xd3\xf4\xf6\x24\x66\x20\x11\x9e\x53\x32\x89\x0a\xfd\xca\x21\x98\x8f\x96\x17\x99\xbc\xcc\x17\x94\xc1\xc1\xf6\x02\xb7\x8a\xc6\x85\xa8\xdf\xe3\x12\xd4\xef\x3d\xe0\xe2\x3e\x65\xf2\xd4\x05\x7e\xc9\x6e\xe1\x7a\x8c\x98\x7f\xb2\x2c\x6c\xc0\x92\x36\xa4\x1b\xe0\xc0\x55\xdc\xad\x02\xd2\xb8\x78\x33\x4d\x17\x0c\x35\x16\x00\x83\x4c\x96\x5e\xfb\x4c\x23\x63\x66\xfa\x70\xa9\x08\xb3\x7d\xfa\x52\x03\x66\x0a\xe5\x85\xc5\xf6\x90\x01\x67\x85\xb2\x5c\x90\xbc\x86\x8b\x86\xe5\xbe\xc3\xaf\x11\x50\x34\x73\x23\x54\x12\x00\xdf\xdc\x43\x88\x0d\x05\xfa\x73\x79\x2b\xa1\x35\x26\x00\x97\xdc\x9c\x03\xa3\x5f\xe9\xe3\x47\x94\xf5\x54\xb2\x1e\x3d\x19\x95\x61\x05\x99\x34\x7b\xb9\x2a\x59\xfd\xa3\x94\x27\x08\x58\x18\x90\x0c\xb4\x76\xc1\xa7\x24\x47\x9c\x71\x57\xd1\x6e\xa2\x54\xe7\xe6\xae\x98\xfb\xa9\x3b\x36\x4f\x86\xc9\xf9\x23\xc8\x50\xa2\xf7\xa9\xa1\x0c\xed\x53\x43\x7d\xc0\xa7\x2a\x55\x85\x4b\x88\x52\xbb\x6e\x6d\xab\xe8\xe2\xe2\x5d\xbc\x54\x7d\x6e\xf0\xfe\x37\x4b\x8b\x0f\xf8\x39\x24\x7e\x69\xe1\x41\xca\x57\x73\x9f\x04\x25\x14\xd5\x21\x52\x35\x75\x58\x47\xf7\xf7\x75\xd5\x97\xdf\x3f\x80\x77\xd2\x83\xbe\x2a\xe6\x0f\x9e\x84\x4c\xaf\xc2\xbd\xb6\x80\xeb\x55\x8b\x3d\xe8\x71\x06\x35\xb6\x17\xad\x83\x10\x95\xe7\xf2\x82\x92\xca\x98\xea\x55\x1d\x63\xd6\xd8\x91\x97\x25\x1c\x33\x0a\xe5\x08\xeb\x17\x5f\x91\x6c\x83\x0c\x1f\xe5\x19\x97\x2e\xcf\xad\x9a\x97\x48\xf6\x1d\x94\x97\x9c\xec\x65\x27\xbd\x2d\x66\xdd\xc3\xc3\x4c\x6f\x6b\xb9\x64\xa9\x45\x30\x12\x67\x20\x3c\xe1\xfe\x87\x36\xc1\x61\xff\x47\xc4\x6a\xa3\xb8\x9b\x68\x55\x9c\x5a\xe4\x5b\x92\xac\x73\x2f\x48\x1d\x49\x82\xdb\x0f\x24\x48\x00\xdf\x32\xcc\xd6\x7a\xba\x2f\x81\x04\x70\xd7\x90\xd6\xf1\x75\xd9\xf9\xc1\x92\x60\xe2\x15\xaf\xa8\xd0\x39\xe7\x39\x45\x6d\xa2\xb0\xc5\x17\x71\x13\x6f\xf7\xf7\x27\x27\x1e\x61\x72\xb2\x75\x59\x2f\x41\x74\x7f\xe1\x9f\x24\x02\xf3\x4f\x87\x20\xb9\x98\x0f\x93\x32\x5f\x90\x7b\x6e\x57\xf5\x61\x59\xa6\x14\x37\xb5\xf7\xca\xaa\xc1\xcc\x84\x1b\xf2\x09\x7e\x4f\x77\x50\x61\xf7\xf2\x5e\xcd\xb7\x59\xa4\x15\xd2\x04\x73\xf7\xe6\xe7\x77\xa7\x03\xc8\x89\xa5\xad\x39\x13\xac\x40\x73\x26\x16\x3e\xec\xd0\xe0\xa0\xaa\x85\xc1\x02\x0d\x16\x8a\xb5\x62\x70\x0e\x24\x73\x4f\x42\xbf\xe2\x02\xec\x3c\x5a\xe2\x19\xf8\x8e\x55\x0d\x4d\x62\xc1\x16\x2f\x44\x8f\x4a\x77\xfa\x10\x9e\x07\xf7\xef\x04\x68\xf4\x1b\x2e\x3c\x73\x82\x04\xf6\x41\x87\x62\x78\xcf\x4c\x63\x58\x20\xf7\x22\x58\x8e\x8e\xbc\xd7\x1c\x0e\x8b\x26\x2b\x12\xc8\xbc\x20\xca\x97\xab\xa5\x00\x3d\x94\xdf\x31\x50\xf0\x58\xbd\x40\xd9\x5b\xf5\xa3\x56\xeb\xb0\xcd\x5a\xdc\x27\xfc\x1c\x88\xcf\x67\xc0\xe3\xe4\x56\xd5\xf4\x16\xae\xd0\x7c\x85\xb6\x32\xe7\x4a\x81\x3f\xd3\x24\x03\x35\x10\x5f\xb3\x41\x68\xd5\xae\x9b\xb4\xb0\x2a\xa7\x71\x1d\xe1\x57\x44\x5a\xca\x1e\x78\x3d\x0b\xac\xe7\x10\x6c\xbd\x96\x12\x06\xbc\x5c\x38\xc4\xd8\xa9\xd1\xeb\x23\xff\x8c\x3f\x0e\x98\x06\x83\x59\x57\x57\xa5\x3b\x8e\xd2\xd1\xbc\xa3\xb4\x08\x78\xd5\xf7\xdb\xce\x82\xc1\xe0\xa9\xf5\xf4\x94\x7e\x0c\x06\x11\x56\xa5\x23\x19\xd5\xb4\xad\x70\x44\x18\xe0\x45\x12\xa6\x31\x6e\xd0\xba\x17\x05\xe0\xba\x19\x0d\x79\xf0\xb2\xd5\x3b\x4d\x7e\x05\xbf\xd6\xa4\x50\x6c\x74\xad\xb3\xb8\x38\xd9\x32\x43\xe9\x9e\xcc\x30\xd8\x93\xcd\x93\x73\xb6\x68\x25\x06\x22\xff\xb9\x64\x37\x3a\x97\x13\xf2\x06\x4b\xeb\x88\xf6\x8a\x9d\x5c\x49\xd7\x4f\x0f\xef\x9f\xd5\x14\x34\x59\xc6\xc4\x53\x9c\x31\x40\xf9\xb9\x5c\xec\x02\xdf\x81\x9f\xe5\xb7\x1e\xd6\xf9\x6a\x1a\xbb\xed\xb1\xab\xf1\x0c\xeb\x99\xa4\x04\x30\x53\x6f\xc3\x58\xd7\x21\x7c\x9a\x10\xba\xb7\x7d\xd7\x3c\x0c\x30\x0c\x65\xde\xb0\xe6\x64\xaa\x4f\x2c\xac\xe5\x5a\xed\xc0\x41\xd6\x60\x11\x4d\xa0\xc0\xed\xf6\xcc\xdd\x76\x47\x58\x01\x81\xd4\x9b\xef\x0e\x5e\xdd\x3c\x75\x23\xe4\x03\x14\xd7\x6a\xc9\x7e\x52\x7c\xb4\x0b\xaa\xc6\x93\xbb\x87\x6b\x5f\x92\x86\x1c\x42\x1c\xeb\xcf\x08\xa6\xaa\x45\x1d\x90\x2c\x39\x71\x7a\x2b\x69\x5a\x65\xe0\xf5\x6b\x2a\xb5\x7b\xd2\xd7\xe9\xed\x17\x9a\x32\x84\xb4\x96\x01\xc4\x7e\x39\x43\x6c\x84\xd2\x66\x98\x86\x70\xb7\x81\x6b\x76\x30\xa6\xe1\x34\x5a\x56\xb3\x65\x06\xbe\x9d\x8d\x7a\xeb\xf4\x62\x9d\x11\xf3\x61\xbe\xcf\x17\x2e\xf9\x4d\x70\xff\xd1\xee\xe2\xea\x99\x8d\x9d\x77\x06\x3e\x46\x51\x20\x9d\x87\xf2\x38\x6d\x5b\xd6\x41\x2c\x79\xf9\x55\x8c\x1e\xb9\xb7\xa7\xe0\xbe\xf5\x4f\xc1\xf1\x3d\x95\xbd\x4f\xde\xba\x27\x48\x51\x2b\x3b\xde\x4b\x44\xbf\xc1\x73\x7a\x5d\xbb\x78\x36\x2c\xcb\xe7\x38\x31\x18\x67\xfe\x87\x55\x2c\x63\xb4\xc7\x5a\x7f\xd7\x07\x52\xe5\x77\x30\xbe\x67\x72\xd8\xf0\x4c\x46\xfa\xa7\xe0\x05\xd3\xf8\x75\x59\x7b\xa7\xf5\x2b\x2a\x18\x3c\x2a\xeb\x5f\x69\xfd\x9a\x4e\xc8\x30\x86\x0f\x15\xda\x9c\x45\x8f\x7c\x85\x15\xea\xfb\x83\x7b\x06\x35\xaa\x4e\xc6\xf6\xd5\xb5\xe9\x08\x87\xd5\xb9\x81\x7e\x7d\xf7\x06\x6f\xec\x06\xef\x08\x37\xf5\xd7\xe0\x6d\xf2\x31\xb6\xdf\xf5\xd1\xb8\xaf\xee\x96\x8b\x35\xac\x74\x6a\xbf\x07\xab\x46\x68\x7f\x9a\xf0\xfd\x42\x42\x00\x32\x0e\x49\xe0\xe9\x9d\x7e\x84\xdd\x00\xb5\x87\xcf\xe9\x8e\x57\xc4\x60\x0d\xd9\x93\x9c\xfa\x7a\x22\xf8\xaf\x24\x57\x9d\x3e\x7e\x25\x76\xb8\x87\xee\x49\x47\xe2\x07\x7d\xd3\xac\x3f\x26\xf9\x92\x87\x44\xff\x27\xbc\x82\xf5\xb6\x22\x16\x33\x7d\x26\xf2\x93\xbf\xbe\xe5\x9a\xbf\xd5\x58\x9a\x1c\xb9\xfd\xdb\x0d\x12\x48\x79\xe7\x3d\x8c\x13\x56\x48\x58\x71\x80\x2d\xfe\x59\xe0\x67\x91\xdf\xe2\xd7\x0d\x7e\xdd\x94\xe5\x27\x29\x0c\xe6\x4c\xc5\x9b\x9a\x64\x54\x4e\xb9\xc5\xef\x5b\x7e\xac\x0c\x71\xe1\x17\x88\xd9\x89\x37\xe1\xec\x07\x5e\x7e\xab\x71\x86\x81\x74\xfb\x41\xe9\xdc\xaa\xa6\xca\xe7\x43\xf6\x18\xbb\xd5\x24\x7c\xf1\x53\x45\xd4\xbc\x26\xc9\xe7\x43\xec\xa9\xfd\xca\x2a\x94\x6f\x4a\xe5\x7e\x68\xa2\x7c\x52\x5a\x9b\xdf\x64\xbe\x5f\xfa\x85\x54\xdf\x2b\xfd\x22\xf4\x16\x6d\xb3\xe5\x97\x3a\x3e\x26\xf6\x5c\x93\x7f\xa7\xe9\x98\xf2\xcc\x69\x93\x83\xc9\xb3\xc1\x14\xef\xb1\xf0\xa1\xd3\x96\xe3\x4f\xcc\x12\x7b\x9e\xad\xaa\xb7\x3b\x67\x03\xf3\x4f\x03\x0a\x98\x8f\xd8\x29\x57\xd6\xf8\x45\xf7\x04\x16\x36\x9a\xdd\x6c\x0e\x81\x09\xb6\x35\xd6\x72\xd3\xc7\xff\xfc\x27\xe0\xe9\xfb\x5f\xff\x4a\x4f\x5e\x3e\x49\xcb\xcf\x1c\x3c\xbb\x4b\x37\xea\x97\x61\x60\xf4\xfb\x55\x04\xc9\xd1\x32\x70\x93\x48\x7d\x08\xe4\x26\x11\x9a\x4f\xfe\x5f\x00\x00\x00\xff\xff\x66\xc1\x60\xd2\x7d\xc6\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x84\xc3\x76\x84\x5c\x8e\xee\x3e\xff\xff\x6e\x74\xb4\xdd\x2b\x4b\xed\xcb\x19\xcb\xd2\x48\x72\xf7\xce\x76\x38\xd8\xac\x22\x55\xc5\x71\x15\x59\x43\xb2\x24\x6b\x26\xe6\x0d\xf6\x01\xf6\xf9\xf6\x49\x16\xf8\x01\xc8\x0b\xc9\x92\xec\x9e\xe3\x0f\x16\x2b\x13\x79\x43\x22\x91\x00\x12\x89\xcc\xb7\xdb\xac\x28\xbb\x45\xfa\x3c\x3d\x4c\xb7\x79\x55\xaf\xcb\xae\x4b\xbb\x72\x7d\xf5\x74\xd5\x74\x7d\x59\xa4\xaf\xab\x9e\x7e\xb7\xd7\xd5\xa2\x4c\x92\x55\xb3\x29\x09\xf4\x0d\xfd\x49\x8a\xbc\x5b\xcd\x9b\xbc\x2d\x28\xe1\xd8\xbe\x93\xf2\xf3\x76\xdd\xb4\x0c\xf4\xb3\x7c\x25\xab\x72\xbd\xe5\x32\xf4\x27\xe9\xaa\x65\x9d\x55\x35\xfd\xbc\xa0\xaf\xf4\x6d\x2d\x29\xcd\xae\xb7\xa4\xd3\x5d\x2f\x69\xbb\xad\x25\x7d\xd8\x26\x6d\xb9\xac\xa8\x37\x2d\x25\x9d\xeb\x67\x72\x53\xce\xbb\xaa\xe7\x96\x7e\x95\xaf\xe4\xba\x6c\xbb\xaa\xe1\xda\x7f\x91\xaf\x64\x9b\x2f\x19\xe0\x8c\xfe\x24\x7d\xb9\xd9\xae\x73\x14\xb8\xd4\xcf\x64\x9d\xd7\xcb\x9d\xc0\xbc\xd3\xcf\x64\xd1\x96\x94\x95\xd5\xe5\x0d\xa5\x1e\xe1\xc7\x6c\x36\x4b\x76\x84\x84\x6c\xdb\x36\x57\xd5\xba\xcc\xf2\xba\xc8\x36\x32\xcc\x0f\x94\x9e\x6a\x7a\x4a\xe9\x29\xa7\x63\x08\x65\x41\x43\xcd\xf2\x4e\xc7\x41\xb8\xa4\x91\xe7\x5d\x82\xaa\xea\x7c\x63\xa5\xf9\x33\x29\x37\x79\xb5\x66\xac\xf1\x5f\xea\x77\xd7\xdd\x34\x40\xed\x99\x7e\x12\x0e\xb2\xfe\x76\x5b\x02\x05\x4f\x2f\xe9\x2b\x59\xe4\xdb\x7e\xb1\xca\xb9\x9b\xf2\x95\x10\xd0\xb6\x21\x5c\x34\xed\x2d\xe0\xec\x47\xd2\xb4\xcb\xbc\xae\xfe\x91\xf7\x82\x9f\xd3\xe0\x67\xb2\xa9\xda\xb6\x61\xd4\x9e\xe0\x23\xa1\x91\x67\x5c\x0f\xa5\xbc\x27\x24\x04\xb5\x70\xce\xa6\x5a\xb6\x82\x45\xce\x3c\xc1\x2f\xae\x45\xf2\xb4\x26\xc9\x72\xb5\x5d\x35\xed\x27\x4d\x7d\xc5\x9f\x83\x2a\xa9\x73\x9a\x1b\xf7\x2b\xaf\x69\x3e\x34\xf7\x04\x3f\x22\x80\x2e\xc9\x8b\x0d\x61\x78\x9b\xd7\x25\xa3\xee\x90\x7f\x11\xbe\xe8\x57\x92\x2f\x16\xcd\xae\xee\xb3\xae\xec\xfb\xaa\x5e\xf2\x1c\x1c\x4a\x52\x7a\xa1\x49\x49\x90\xe7\xd2\x6e\x9b\x9d\x9b\x65\x4a\xff\x2b\xfd\x4c\xcf\xe4\xa7\xe4\x05\x85\x90\xe9\x4a\x52\x93\x7d\x75\x5d\xf5\x55\x29\x8d\xd9\x8f\x64\xbb\x5b\xaf\x09\x9f\x7f\xdf\x95\x5d\xcf\x59\x67\xf4\x9b\x30\x20\xbf\x93\xaa\xeb\x76\x28\xf1\x16\x1f\x09\x4d\x6a\xbd\xc0\x70\x8e\xf0\x91\x24\xbf\x75\x65\xde\x2e\x56\x1f\x13\xf9\x8b\xde\xf2\x07\x13\xe5\xbe\xe9\x66\x0a\x53\xea\x92\x16\xac\x81\x64\xd1\x14\xfc\xe3\x88\xfe\x50\xd5\x55\xdd\xf5\xf9\x7a\xfd\x31\xd1\x0f\x06\x93\x2f\x99\x82\xbe\xea\x81\x07\x4d\x4c\x2f\xfa\x72\xdb\xf1\x1c\xa6\xaf\xaa\xb6\xeb\x9f\xf6\x15\x51\xf1\xf9\xae\x4e\x8a\x66\xf1\x89\xd6\x07\xaf\x75\xb4\xfc\xf6\x2a\x25\x74\x3d\xa2\x15\xd2\xee\xea\x9a\x10\x94\xbe\x6e\x08\x69\xd4\x4c\x45\xed\x1f\x03\xfa\x20\xdd\xae\xcb\xbc\x23\x90\x32\x2f\xd2\x1f\xf3\xb4\xcf\xdb\x65\xd9\x3f\x7f\x90\xcd\x69\x5d\x7e\x7a\x90\xae\xda\xf2\xea\xf9\x83\x87\xdd\x83\x17\xaf\x77\x54\x6c\x5d\xd5\x65\xf7\xe3\xb3\xfc\x45\xba\xc8\x29\x87\xd0\x78\x9b\xce\xcb\x2b\x5e\x86\xd4\x56\x4a\xf4\x5f\x2f\x79\x09\xde\xf6\x2b\x6e\x90\x68\x81\x3e\xba\x94\x79\xc0\x37\x09\x4f\x00\xf1\x88\xac\x98\x1b\xbf\x43\x87\x90\xdc\xd2\x04\x9c\xdc\x5e\xfc\xe5\xdd\x41\x7a\x46\x4c\x6f\xd9\x96\xf8\xa6\xff\xa8\xc4\xf7\x29\x8d\xf6\xb2\x3a\x7e\x39\x4b\xa8\xac\x21\xe4\x38\xef\xf3\x39\xf7\xdd\xcd\x3f\x67\xca\xf2\x74\x79\x58\xa4\xcc\x46\xc1\x32\xbb\x3e\x9a\x96\xa9\x25\x4e\x75\x28\x5f\x70\x75\xbc\x67\xe6\x40\xe9\x0e\xb3\x67\x82\x33\xaa\x2a\x7d\xfb\xfe\xfd\xe9\xf1\xcb\xb4\xac\x97\x84\x99\xf4\xa6\xea\x57\xe9\xae\xbf\xfa\xef\xd9\xb2\xac\xcb\x36\x5f\x67\x8b\x8a\x91\xd2\x12\xc9\xa6\x84\x25\x19\xe2\x2c\xe9\xba\x35\xf1\x2e\x50\xc1\xc5\xc5\xbb\xf4\x84\x29\x61\x9b\xf7\x2b\x74\xa4\x5f\x25\xdd\xdf\xd7\x8c\x28\xd7\xe0\xe5\xaa\x4c\xb1\x1c\x00\xd4\x5c\x0d\xf1\x92\x16\xda\xd7\x59\xfa\xe3\xbc\x7d\x11\xf4\x2f\x9f\x77\xcd\x7a\xd7\x6b\xc9\x9b\x55\x59\x63\xa2\x88\x94\xda\x9e\x18\xa1\x6d\x2b\xb3\xa4\x6c\xdb\x8c\x58\x72\x7f\xcb\xd3\xa3\x7d\xd9\xd7\x8a\x54\x46\xab\xa4\x6e\x7a\x9a\xfe\x14\xe5\xa4\x8a\xaa\xbe\xce\xd7\x55\x41\x93\xe4\x11\x19\x97\x45\x62\xd1\xd0\x7c\x73\x69\xa2\xe8\xe6\x06\x28\xa2\xb5\x4b\x3b\x46\xfa\x60\xf6\x00\x2c\xfc\xc1\xd3\x07\xb3\xa4\x6e\x32\xe1\x2f\xcc\xec\x8b\xaa\xcb\xe7\xc4\xf8\x65\x23\x6a\x8d\x8f\xfe\x95\xe9\x4e\xba\xa2\x10\x69\x04\xc1\x73\xc2\x9b\x1b\xf6\x14\x26\xca\x9c\x76\x00\xb0\x29\x65\x50\xe1\xd8\x8d\x9b\x39\xba\x10\x86\xe6\x12\x46\x63\x4e\x6c\xa2\x8d\x2a\x0f\xb7\xdb\x75\xb5\x90\xa6\x5f\x4b\x9e\x27\x50\xde\xea\x15\x29\x21\x1c\x08\xcc\xf2\x02\x32\xa3\x5e\x33\xc3\x4b\xa3\x9d\x03\xe5\x57\x25\xad\xb8\xd5\x6e\x29\xdb\xdd\xba\xd9\x15\xdf\x80\x11\xd9\xcc\x79\x3e\x94\x9e\x37\xd4\x61\x50\x95\x03\xf0\x4d\x1c\x12\x43\x61\xe9\xa2\x2d\x37\x4d\xcf\x88\xd3\x62\xcc\x41\x6f\x2a\xca\xa4\x91\x76\xf9\x35\xed\x9b\x7d\x23\x4b\xb9\xa0\xa5\xba\xe0\x8a\x89\xf3\xed\x48\x44\x90\xe5\x44\xfc\x47\x96\x94\xa5\xc5\xb4\x0b\xa8\xcd\x8e\x56\xe1\x8a\x2a\x63\xc4\xb3\x88\x43\x55\x4e\xf5\x13\x43\xa2\x7a\xc0\x1d\x68\xc5\x37\xb4\x1d\xf3\x44\x1f\xe3\x43\x7f\x87\xf5\x53\xaf\xf2\xab\x2b\xea\x55\x47\xab\xe9\x4d\xba\x58\x37\xb4\x14\x3f\x9c\xbf\xeb\x78\xa1\xad\xb2\x6d\xd3\x42\xb4\xa1\xac\x33\xfa\x74\x69\x01\xa2\x19\xa2\xde\x6d\xe6\xf4\xeb\x66\x55\x11\x83\x07\xda\xb9\x04\xaf\x0f\x4a\xa5\x26\x76\x1d\x4d\xe1\x41\x4a\x4b\x8b\x46\x40\x28\x03\x01\xf0\x18\x8c\xea\x18\xfc\x8a\x68\x6c\xd7\xd2\x72\x5a\xf5\xfd\xd6\x5a\x7e\x73\x79\x79\x26\x4d\xbb\xd4\xbb\xda\xce\x03\xca\xc0\x1c\xac\x59\xd8\xaa\xd3\xa6\x9e\x81\x48\x76\xed\x7a\x40\x3f\x34\x56\xcb\xd9\x83\x17\xee\xc2\x33\xfe\xef\xc2\xa3\x07\x78\xee\x48\x8c\xbc\x01\x35\x11\x8e\x21\x00\xcd\x92\x75\xb3\xcc\x5a\x9a\x0d\x23\xa6\x77\xcd\x52\x08\x28\xca\xf0\x2d\x1d\x1b\x49\x30\x36\x6e\x5a\x16\x08\x09\x12\x0c\x8b\x27\x99\x16\x49\xb3\xe5\x7e\x06\xab\xe4\x54\x13\xfc\xd2\x40\xdb\x2e\x1f\x22\x18\x65\x82\x39\x05\xe2\xc2\x86\xf0\xa7\xdc\xfc\xe2\x84\xb0\x0a\x96\x8e\xd4\xab\xb6\xd9\x50\xea\x2b\xfa\xe3\x13\x7c\x1f\x4f\xb8\x3e\xc0\xe4\x45\x41\x9b\x4d\x77\x90\x9e\xbf\x3a\x4a\xff\xbf\xef\xbf\xfb\x6e\x96\xbe\xed\x79\x61\x33\xad\xff\x8d\x69\x34\x57\x4c\x78\x50\x62\x80\x3d\x91\xf1\x03\x5e\xa8\x0f\xd2\x1f\x91\xfb\x3f\xca\xcf\x39\x89\xb0\xe5\x6c\xd1\x6c\x5e\x30\x73\xdf\xe4\xc4\x4a\x38\x87\xa8\x5f\x97\xc5\x45\x59\x17\xf4\x21\x02\xa5\x66\x05\xcc\x45\xb3\x03\xf1\x52\xe4\xea\x6c\xd1\xd4\x57\x55\xcb\xe3\xf9\xb9\x06\x6d\x99\xc4\x4d\x42\x03\x72\x4c\x3a\x23\x94\x11\x3f\xaa\xae\x6e\x3d\x28\x46\xfa\x9e\x13\x95\x3c\x12\xa1\xe1\x4c\x59\xbd\xc3\xf1\x85\x90\x36\x53\xc1\x29\x8d\xae\x35\x74\x77\x1e\xdf\xcd\xd5\x15\xef\xf8\xb6\x57\x69\x0b\xa7\x92\x2a\xdb\x56\x08\x42\xa4\xbd\x85\xce\x70\xac\x4b\xe2\xe8\xf8\x7d\x5a\x5e\x13\xed\x32\x0f\x6d\x9b\x62\xb7\x00\xbd\x32\xec\x01\xb3\x7e\x62\x38\x1d\xad\xb4\x45\xa9\xc4\xe2\x58\x0e\x77\x8d\xf9\xda\x82\x80\x88\xd3\x18\xeb\x27\x41\xf7\x9a\xf6\x91\x36\x68\xe2\xb5\x25\x69\xef\x47\xb0\xa3\x4e\xb9\x12\x3c\xf2\x05\x4d\x38\x11\x85\xf4\xa2\x93\x4e\x49\x36\x2d\x1e\x5a\x15\x3b\x52\xa0\xf2\x82\xfa\x32\xbf\x05\x17\xeb\x98\x16\x8a\xf2\x2a\xdf\xad\x7b\xdf\xaf\xc1\x96\x64\x2d\x5d\xb0\x0e\x17\xe6\x4d\x16\x18\x75\x10\xc4\xd3\x0d\xcb\x12\x15\xd6\x24\x6d\xc9\xd6\xc5\xe4\x2a\x4a\x92\xed\x62\xc4\xec\x4a\x4c\x4f\xe6\x55\x12\x9d\x2f\xd3\x4c\xe2\x7c\xd7\xec\xb9\xc8\x5f\x29\x36\x6e\xae\xd1\x2a\x60\x81\x65\xba\x2f\xb3\x44\x85\xb6\x4c\xb5\xc9\xec\xba\x82\xae\xe6\xc8\x55\xaa\x54\x0d\x93\xf9\xc2\x2f\x0c\xc0\x4a\x60\x37\x59\xd6\xf5\xe6\x94\x07\xd9\x39\x5d\x4d\x70\xce\xc3\x45\x0b\x2c\x48\xd2\x2c\x5d\x57\xd8\x34\x94\x60\x80\x97\x39\xcb\x3a\xd4\x34\x35\xd5\x95\x25\x6a\xa0\xf2\xcf\xa8\x4e\x94\x99\xa9\xa2\xa2\xba\x83\x09\xa0\x2c\x3c\x14\x0d\x24\x11\xec\x4c\x54\xda\xd0\x3a\x90\x12\xd2\xb6\x5a\xae\x88\x53\x37\x37\x07\x82\x94\x9b\x55\x53\xf2\xfa\x79\x7b\xfc\xfc\x5b\xe9\xc7\x92\xf7\x29\x57\x88\x77\xb8\x7c\x47\xc4\x45\x18\x53\x32\x96\x2e\x38\x49\x01\x90\x23\x95\x48\x80\x86\xba\xe9\x48\x30\x71\x4c\x43\x79\x45\x98\xa7\x4c\xc2\xc3\x48\x69\xd3\x6f\xa5\x61\x61\x4a\xaa\x74\x64\xcb\x06\xfa\x94\x29\x19\xbc\xf5\x92\xb6\xde\xf5\xd9\xb2\xea\xb3\x2b\xe6\x5c\x5c\xf1\x2b\xae\x80\x25\x01\xca\x49\x1f\x51\xd6\xa3\x94\xb8\x1f\x29\x89\xc5\x0f\xe9\xc3\x6b\x15\x5b\xbf\x67\x96\x94\xd1\x22\xaa\xd6\x98\x11\xd5\xd2\xda\x52\xa4\x52\xb3\x10\x38\x11\xb0\xdb\x6d\xb1\x51\xaa\xb4\xe9\x54\x92\xa2\xb9\xa9\x79\xf1\x81\xf5\x12\x9b\xa9\x16\x15\x6d\x18\xf3\xaa\xce\x69\xa7\xb1\x5a\xc0\xd2\x1f\x12\x49\xbc\x3f\xbd\x04\xe0\xb2\x99\xef\xaa\x75\x61\x00\xb3\xc4\x24\x52\x92\x47\x75\xf2\x43\xd9\xde\x92\x2a\xe9\xcb\xa2\x69\x79\x2f\xc3\x68\xac\xe0\x1e\xb9\x8a\x37\x42\x11\x84\x2b\x56\xaa\x00\x8b\x72\x4e\x04\x62\x34\xd0\xec\x43\x5f\x64\x01\x09\x64\x53\x75\xf5\xa3\x1e\x3d\x5d\xec\xa8\x2d\x9a\x79\x4e\xa6\x82\x5d\xfa\xf4\x05\xfd\x9f\xb0\xb8\x25\x1b\xc0\x72\x8c\x78\xce\x4c\x25\x73\x27\x4b\x31\xea\x6a\x44\xe3\x6e\xa6\x8d\x82\x83\xb1\x86\xfd\x35\x12\xe8\x76\x42\xb4\x6c\xcc\x59\xd3\xb4\x96\xdf\xd0\x07\xab\x8f\xcb\x35\x26\x21\xef\x55\xc7\x6b\x08\x6f\x4c\x20\x07\xb2\x66\xae\x68\x68\xcc\x4a\xfb\xfc\x53\x09\xb5\xd0\xe3\x7c\x4a\x92\xd8\x8b\xb7\xe4\x37\x36\x6d\x7d\x4c\x76\x22\x05\x37\xeb\xc2\x69\x6a\x58\x0d\xc4\x8d\xca\xc8\x32\xe3\x61\x1c\xa1\x77\x24\xed\x2f\x56\x99\xb3\x8b\x31\x22\xfb\xf2\x33\xe4\x05\x64\x79\x33\x19\xaf\x12\xce\x4a\x36\xb7\x98\x62\x1e\xf8\xc9\xad\x9f\x61\xb6\x1b\x2c\x1a\xd2\xc2\xe7\x0d\x63\xfa\xba\x74\x50\x47\x61\x6a\x5c\x80\xea\x22\x61\x5d\xab\x8a\x0d\x25\x94\x25\xb6\x19\xcd\x15\xdb\x4c\x97\x80\xfb\xa9\x51\x0f\x4c\x92\x68\x40\x4d\x12\x33\x9a\x4c\x58\x3c\xac\xe5\xb7\xb5\x48\xa6\xa1\x9c\x4e\x78\x53\x83\xdf\xc7\xc4\xe0\xce\xe3\x7c\x62\x43\xab\x8f\x81\x51\x2d\x33\x8a\x30\xe3\x1a\x0c\x3f\xca\x89\xbc\x14\xb2\x2a\xb7\x2c\xb0\x6c\x3a\x90\xd2\x9a\x4d\x04\xb7\x2a\xc0\x3b\xa2\xfa\x49\x78\x3c\x51\x19\x71\xc6\x6f\x92\xae\xe1\x45\x9a\x7d\x65\x15\x2f\x2b\x22\x1f\x94\x8f\xf7\x47\xb1\xf6\x91\x9c\xcd\xd3\x47\x2b\xf3\xf6\x20\x56\xed\x56\xa4\xc0\xce\x4b\x12\x2f\xb4\x58\x31\x33\xd5\x9c\xa7\x9d\x14\x4a\xac\x33\x58\x28\xb1\x32\xa4\x64\xd3\x0e\x37\x6e\xee\xa1\xb0\x46\x6d\xc5\x89\x5b\x10\xa6\x42\x99\x6b\xa2\x4d\x42\xd8\xa6\x64\xf9\x3d\xdb\x88\x65\x50\x7e\xa5\x27\x65\x42\x3b\xe8\x12\xd4\x2f\xe4\xf9\x9c\xcd\x36\x4b\xa8\x39\x4a\xaf\x0c\x50\xf6\x21\xef\x56\x08\x4b\xf9\xc9\x2c\xb1\xc4\x4d\x6e\x60\xa1\x23\x7e\x30\x42\x3f\xed\x72\x94\x3d\xb3\xbd\x40\xc4\x0a\x48\x87\x1d\x71\x18\x8f\xc4\xc3\x94\x4d\xaa\x21\x94\x4a\xba\x6e\x54\x0c\xcf\x8c\xe6\xc7\xf9\x8b\x87\xdd\x8f\xcf\xe6\x2f\x1c\x3b\x5e\xac\xca\xc5\x27\x21\xbf\xaa\x9e\x37\x9f\xa1\x58\xc3\xc0\x43\x3a\x3d\x2f\xb1\x87\x45\x4a\x8a\x76\x0b\xbd\x8e\xd8\x07\x15\x23\xbc\x73\x6e\x34\x67\xd4\x17\xe6\x32\x33\xb1\xd5\x95\x42\xdf\x9e\x1e\x61\xb4\x63\x8a\xc4\x9e\xe1\x49\x12\xe3\x58\x57\x9b\xaa\x1f\x91\x04\x33\xa5\x5c\x49\x4b\x6d\x7c\x86\x23\xd4\xe5\x47\x49\xac\x9d\xaa\xa1\x9d\xd8\xc8\xe4\x26\x27\x45\xee\xfb\x94\x48\x63\xd7\xb3\xae\xc2\xe6\x91\x9e\x78\x7b\xce\x5b\x39\x29\x71\x79\x97\xed\x6a\x45\x57\x59\x18\x91\xbc\xa9\xb0\xe3\x70\xbb\x46\xca\x01\x54\xac\x3b\xa4\x8f\x1d\x26\x9f\xcc\xd4\x24\x87\x52\xbc\x0b\x70\x7f\x2a\x16\x74\xf3\xa9\x39\x21\x7e\x57\x97\xa2\x79\x63\xfc\x0c\xc6\xd3\x47\xea\x9b\x9f\x14\xd2\x01\x3f\x51\x0a\xf0\x3c\xdf\xf5\x7d\xc3\x6a\xcc\x9a\x69\x41\xca\x58\x9f\x8f\x00\x08\x45\xcf\xd7\x87\xc9\x1c\x62\x49\x35\x31\xec\xe1\x1d\xd6\xb3\xd8\xeb\x59\x9d\x8c\x87\xa6\x7b\xa6\x83\x2a\xc4\xfe\x95\xd7\xb7\xde\xb4\x82\x3e\x70\x73\xfd\x74\x4f\x1e\xb7\xe5\x13\xdf\x17\xb7\x0e\x50\x42\xfb\x23\xa5\x83\x25\x72\x8e\x4c\xb1\x0b\xdb\x42\xb2\x1d\x47\x6d\xab\x9e\x34\xda\x18\xb5\xc8\x67\x6a\x27\x9e\x49\x32\x68\x01\x2c\xd3\x20\x50\x7a\x36\x68\xcb\xab\x8f\x63\xf4\xf5\x71\x8f\xfd\xa6\xd4\x37\x4d\xd6\xad\x44\xf3\xb7\xee\xa5\xeb\xb2\x5e\x46\x26\x33\x9c\xf1\x80\xde\xfe\x7f\xd2\x8f\x7f\xe3\x81\x7e\x4c\x74\x2a\xca\x60\x3d\x28\xa1\x5a\x8e\x4d\x99\x2c\x0b\x07\x6f\x92\xdd\x2f\x65\xcb\xba\x20\x80\xa2\xb9\xda\x87\xc4\x78\x0c\x8e\x1b\x7a\x51\xe0\x3c\x5c\xbb\x9a\x7c\xb5\x5b\x1f\xa4\x37\x22\x23\xf8\x32\x4e\x0f\x55\xe9\x81\xa9\x52\xce\xa3\x68\x78\x4d\x91\xd3\xf8\x6e\x61\x65\xff\x2b\xed\x49\x35\x4e\x36\x9a\x84\x32\xa4\xd0\x09\x3e\x08\x94\x15\xe9\x8f\x09\x6f\xfa\xef\x07\x22\x30\x6f\x6a\x9a\x16\x88\x61\xc8\xfa\x39\x3c\xb9\x71\x63\x3e\x9b\x90\x96\xcf\x4b\x7f\x80\x83\x2f\x37\xf8\x8b\x8b\x37\x97\xa6\x19\x5f\xbc\x49\x3f\x95\x5a\xf7\x9b\xbe\xdf\x76\x1f\x60\x73\x11\x03\x0a\x5b\x5b\xce\xf2\x5b\x16\x4d\x25\x59\x7f\x20\xe3\xb2\xcc\x37\xda\x49\xfe\x94\x2a\x0e\x69\xff\xd5\x44\xfe\xa4\x6d\x39\xb0\xe5\x25\x10\xd2\x7e\x8e\x64\x73\x21\x7c\xa7\x28\x95\x7a\xa4\xf3\xfb\xc8\xfe\xf8\x7b\x92\xaf\xb7\xa4\xcb\xb1\xc0\x13\x80\xc1\xd4\x36\x57\x95\x2e\x05\x08\x08\x7d\xb7\x21\x02\x59\x40\x85\xa5\x02\x8f\x9f\x66\x4f\x02\xd3\x6b\x5c\x59\x41\xeb\xff\x0f\x55\xc8\xdf\x2c\x49\x87\xf5\x76\xd5\x3f\x6c\x14\x51\x75\x9c\x4e\xbc\x94\x20\x20\xb7\x7a\x28\x07\x84\x8d\x9c\x65\xd8\x9e\x2d\x6f\x94\x40\x72\x72\x54\xf5\x26\xff\x7c\x5f\xc1\x4d\x33\x51\x4e\xb8\x9c\x2f\x64\xcc\x4c\x87\x18\xad\x1e\x02\x67\xd3\xda\x5e\x60\x9a\x78\x02\xa9\xea\xc5\x7a\x57\xec\xed\x48\xb7\x9b\xd3\x42\x62\xf9\xfb\xd1\xc3\xee\x11\x57\x59\x7f\xa2\x4d\xbb\x76\xf0\x1f\xe4\x77\x8a\xdf\x3f\xd8\xc9\x22\x29\xc8\xaa\x94\xa4\xee\x8c\x91\x64\x8f\x82\xf7\x0f\x28\x17\x33\xcf\x7a\x42\x85\xc3\x11\x3f\xac\x1c\xaa\x10\xba\xf5\xcf\xa6\x0d\xe8\x5e\x44\x80\x33\x7f\x1a\x9a\xb1\x0c\x90\xb1\x20\x5f\x87\x92\x37\xf3\x4b\xdb\x61\x21\x25\x00\x42\x8e\xbe\xb2\x71\xb9\xc1\xea\xdc\x5b\x9c\x24\x9d\x89\xd2\xa7\x63\x63\xf7\x9e\xf2\x3d\x2d\xb0\x89\x0a\xdc\xba\xdb\x5b\x50\xe6\x1e\x85\x68\xe4\xc5\x90\x71\x8c\xcb\x31\xd4\xcc\x63\xc9\x21\x3c\x9c\x9b\x50\x4f\x71\x78\x8e\xd5\x4a\x36\xd1\x10\xf9\xb5\x38\x95\x0e\x94\x4b\x55\xf6\x95\xd7\x6f\x58\x8f\xea\x76\xbc\xd5\xb0\xce\x25\x12\x54\x8c\x51\x16\x22\x50\x55\x89\x26\xf6\x57\x4f\xf4\xc4\xac\xf9\xbe\xfa\x01\xf6\x95\x55\x87\xb6\x88\x71\xc5\x5a\xb9\x03\xda\x57\xad\x53\x94\xcb\xcf\x15\xcc\xba\xaf\xab\xeb\x52\x55\x65\x67\x21\x40\xde\x2c\x59\xd3\xfa\x67\xf5\x4a\x46\x25\xa2\x76\x73\xcd\x2b\x8a\xdb\xe3\x5c\x29\x27\x66\x5e\x1d\x14\x13\x89\x2a\xdd\x38\x6b\x2a\x8b\x03\x3e\xf7\xea\xb1\x97\x63\x81\xe6\xeb\x9b\xfc\xb6\x83\x01\xc9\x98\x0c\x5b\xc8\xa5\x38\x73\x10\x92\x67\x96\xe8\x55\x78\x0e\x43\xab\xc6\x30\xc1\x07\x0a\xbc\x5d\x38\xb1\xe3\x06\x6a\x33\x38\x84\x9a\xa4\xae\x83\x8d\x59\x77\x17\x56\xf9\x59\xd7\x65\x35\x44\xb2\x83\x8a\x70\x30\xaa\xcc\x7e\xa2\xec\x01\xcb\x7a\xd4\x0c\xcb\x5e\xc4\x82\x05\xd7\x24\xca\x12\x66\xd1\xa5\xc0\x86\xb2\xa3\xfa\x9f\x8a\xec\x5e\x11\x0e\x59\x15\xf4\x66\x05\xde\x8d\x68\x56\xec\x1c\x41\xd2\x45\x19\xef\xfa\x6a\xbd\x66\x4c\x9b\x1f\xc2\x5f\x03\xc9\x23\x45\x2e\xd6\x09\xd0\xd4\xad\xaa\x6d\xda\xc0\x9a\x1c\xa2\xd0\x93\x6d\x20\x2d\xf3\x89\x49\x09\xdd\x80\xad\xea\x6d\x5e\x77\x57\x25\xcc\xeb\x9b\xf4\x8a\x0f\xb4\x67\xda\x34\x0b\xdf\xe2\x77\xb0\xa7\x65\x51\xb3\xd0\x74\xb8\x41\x60\xee\x82\x89\x8a\x9b\x96\xe3\x1b\xd8\x70\xd1\x07\x60\xd5\xd7\xd4\x59\x1f\x98\xcc\x46\x28\x80\x0c\x1c\x1d\xc6\x4d\xe2\xe1\x2a\xd2\xcf\xa5\x7d\x50\xda\x3d\xe3\x4e\xe4\xf0\x3d\x9b\x53\xe6\x62\x15\xad\x8a\x4b\xe4\xa4\x92\x33\x5a\x18\xc9\x6f\x4c\xf7\xa4\xe1\xe3\xf8\x3d\x73\x36\xf2\x23\x39\x8e\x17\x99\x51\x6d\xde\x7d\x6a\x86\x71\x3e\xb8\xb0\x22\x62\x06\xbf\xb3\x24\x6f\x61\x66\xa3\xfc\x5b\x43\xdb\x35\x4c\xdd\xff\x49\x5f\x2c\x45\xd7\x49\x74\x76\x38\x30\x41\xa8\x5f\x06\x53\xf6\x19\x11\x24\x49\x0c\xea\x9c\x71\x4b\x1a\x30\x56\x25\xac\x22\xaf\xec\x3b\xe1\xf3\xe9\x16\x24\x7a\xa1\x5f\x91\xc9\x43\x0a\x89\x8d\xeb\x95\x7d\x6b\xaa\x4b\xa2\xc5\xe5\x52\x3e\xe8\x67\xc2\x1a\xf7\x66\x06\x2e\xce\x22\x31\x8e\x19\x02\xde\xcd\x5b\x33\xaf\x22\xcb\x9b\x05\xf0\xdb\xbc\x27\xfe\x55\x8b\x66\x24\xac\x24\x2c\xaa\xd9\xae\x0a\x77\xba\xcd\xb5\xb0\x07\x89\xe0\xee\x63\xe2\x5d\x5b\xcc\xab\x65\xca\xac\xab\xbc\xa0\x53\x71\xf4\xcf\xf4\xa9\xd6\x15\xf0\x19\x7c\xa8\x7a\x8c\x73\x65\x3b\x0c\x84\xe7\x4b\xf0\x33\x51\x7b\x54\x6c\x8c\x52\x4a\x7c\x9e\x1e\xcb\x87\x29\xda\xbb\x0a\x63\xaa\x48\x68\xdf\x62\xa2\x02\x47\x1c\x9d\x39\xd7\x69\xf5\xc3\xf2\x96\xf4\x76\xac\x1f\x4a\x25\x90\x41\xec\x6c\x07\x3b\x2e\x1f\x2d\x04\x7a\x22\x1b\x87\xa1\x40\xd6\xc1\xb9\x15\x9f\xc6\xb0\xd2\x4b\x60\x37\xe5\x3c\x65\x73\x2d\x11\x1a\xe9\x63\x3a\xce\x4d\x4e\xaa\xdc\x75\x95\x3b\x23\x4f\x20\x09\xb9\xad\xda\xac\x34\x50\x37\xea\xa7\x38\x51\x4a\x21\xf8\xcb\xc9\x82\x09\x42\x36\xa1\x6c\xbb\x10\xda\xa7\x5a\x2b\x39\xff\xa8\x21\x24\xb1\xb3\x8b\xed\xa4\xaf\xd8\x7f\x08\xa7\xf6\x63\x0f\x38\x6e\x42\xcf\x81\xde\xe9\x67\xb2\xdb\xf2\xc1\x4a\x80\xcb\x0f\x48\x70\xb8\x8c\xf3\x03\xf5\x0b\x58\xb5\x62\xce\x48\x23\xe0\x45\xa0\x8f\xf1\xe9\x82\x2e\xe5\x09\xcf\x36\x5d\xce\xc5\x10\xc4\x9b\x52\xc0\xd9\x74\xe0\x98\x28\x39\x38\x06\x6a\x69\x77\x4c\x57\xb4\x8a\xd6\x55\xfd\xa9\xd3\x99\x62\x3c\x85\xaa\x28\x4c\x4f\x44\xdf\x3b\x71\x6c\x92\xcf\xb1\x1f\x95\x9d\x40\x0d\xb8\x8d\x9d\x53\xc9\x59\xdc\x21\x92\xa9\xaf\x4d\xd3\xa9\xb9\xd2\xb3\x25\x4e\x83\x15\x44\xd2\x0c\x73\x0e\x42\x11\x7b\x68\x67\x82\x58\x74\x4a\xee\x99\x5a\xdc\x3d\xb4\x52\xff\x91\x5a\xe2\x0f\xad\x4e\x39\xf3\x53\x38\x59\xf0\x59\xb5\x11\x27\xc5\x0f\x76\x22\x88\x39\x71\x9a\x00\xb2\x67\x71\x7f\x86\x13\xa9\xed\x9a\x1d\xfe\x9e\xf9\xb4\xd9\x0a\x0f\x76\x64\x86\x1c\x93\x68\xd6\x91\x1c\x66\xe3\x70\xf9\x8c\xbc\x20\xff\x3d\x8e\xe0\x9c\xb2\xcf\xcb\x20\x1b\x80\xa8\x7e\x1c\x41\x4e\x8a\xbb\xd6\xd6\x5e\x51\x77\xd0\xfb\x11\x51\x5b\xb9\x1b\xf6\x42\x0a\x06\xae\x64\x58\xcc\xcc\xb3\x87\x4d\x9b\x72\x9e\x07\x17\x0c\x71\x43\xa9\x71\x18\x28\x55\x04\xeb\x5e\x1b\xfd\x77\x57\xbd\xaf\x59\x74\x85\xce\xa9\x08\x87\xc2\xdb\xd8\xd4\x2f\xae\x91\x2e\x5f\xbd\x23\x23\x16\x58\x9a\x5f\x43\xc8\x24\xb7\x2d\xd1\x0a\x49\xf2\x31\xb3\x1c\xb1\xc7\x88\x15\x82\x13\x36\x38\xa5\xf7\x1c\x90\xc6\xad\x55\xf1\x56\x82\x2f\x4b\x71\x16\x21\x5a\x01\x2c\xee\x6a\xb2\x2d\x04\xcb\x15\xfa\x77\x7d\xa4\x1f\xc2\xb8\x64\xac\xc7\x9a\x30\xc8\xb7\xc1\x48\xb6\x4d\xc8\xc4\x68\xd8\xa9\xe8\xba\x74\xbc\xbd\xaa\xc5\x49\xc2\x1d\xdb\x45\x0c\x24\x3d\x06\x47\x21\x72\x10\x03\xb4\xf1\x93\x9f\x86\xad\x7b\x3a\xfa\x39\x36\x5d\xcb\xd8\xe2\x55\xf4\x4d\x42\x3d\x02\x8d\xfb\xc3\xcf\x02\xc4\x13\x9b\xc7\x18\x2a\x84\x10\x03\x8c\x4b\xcd\x22\xc3\x3a\x6c\xe4\x5f\x63\x4c\x67\x91\xe0\xbf\xc0\x8e\x1e\x35\xe5\xed\xe8\xae\x93\x83\x15\x36\x1a\xe5\x78\xa9\x51\x06\xa4\x13\xa5\xe5\x40\xe6\x50\x6a\x76\xa2\x07\xb7\x22\xaa\x09\xa3\x87\x92\x20\xa0\x28\x25\x60\xf7\x60\x6f\x23\xb8\x2a\xc1\x3f\x51\xf4\x94\x6e\x64\x1c\x8e\xe7\xfc\x10\x8a\x18\x21\x45\x60\x21\xac\xd1\x7e\xcf\x22\xbc\xad\x75\x12\x8f\x09\x0f\x72\xb4\xee\xdc\xc6\x46\x87\x60\x07\xaa\xfd\xac\xaa\xe5\x8a\xc6\x55\x6d\xf8\x44\x19\x94\x64\xc7\x96\x5e\x39\xe5\x5f\xc4\xa2\x9a\x65\xcd\xd6\x27\x6e\x41\xfc\xc4\x9c\xb1\xf7\xc7\xae\x6f\x9b\x7a\xf9\xe2\xb8\x61\xad\x91\x8d\x32\xbc\xff\xfd\xf4\xe3\x33\x4d\x27\x36\xcc\x53\xc8\x4e\x85\xaf\xab\xfe\xcd\x6e\xfe\xa8\x4b\x97\xec\x1d\x8b\x83\x93\x3c\xf0\x99\x55\x5f\x02\x71\xe2\xbb\xa9\x1d\x5a\xe0\x41\x4b\x6b\xbc\x6b\xd6\xb4\x40\xe2\x22\xcd\x66\x23\xd3\x4b\x0c\x6c\x23\x90\xe8\x3f\xdc\x0f\xca\x1a\x98\x2b\x5b\xc5\x0f\x55\x38\x73\x24\xee\xe7\x47\xa7\xcd\x84\xc8\xc8\xd4\xa1\x62\x1c\x03\xe3\x70\xb4\xee\x83\x8d\x08\x76\x0e\x2b\x05\x11\x61\x5c\x0a\xf3\xc8\x86\xa3\xb1\x91\x05\xfa\x08\x57\x61\xc5\xa9\x24\xf5\x43\x44\x25\x4e\xb3\x16\x45\x48\x28\xd9\x86\x2d\x84\x15\x10\x2f\xef\x3d\x66\x81\x85\x30\xed\xba\x07\x72\x1d\xac\x6f\xe5\x68\x32\x76\xe5\x67\x36\x80\x80\xa3\x29\x46\x3c\x4f\x1b\xc2\x44\x5c\xad\x14\x9e\x66\xbd\x08\xb9\x99\x78\x2d\x09\x47\x13\x82\x24\x75\x87\xf9\xf5\x17\x72\xb3\x51\xbb\x7e\xe0\xd6\xdc\x17\x70\x34\x8c\xe9\x10\xe8\xa0\xb1\xc0\x30\xa2\x13\xf5\x4e\xcd\x20\xc8\x60\xff\x59\xaf\x7a\xbd\x6f\xf4\x04\x2c\xb5\x44\xcc\x09\xe9\x5a\x7d\x19\x2d\x65\xee\x04\x3c\x1e\xc5\x07\x07\x96\x95\xff\x96\x16\x39\xf1\x81\xbe\xf9\x44\xa4\x34\x2e\x82\xf4\x7d\x85\x1c\x7f\x31\xfd\x45\xb9\xcb\xa1\x67\x0e\x43\x8d\x46\x0f\x92\xf7\x32\x98\x80\xaf\x68\xad\xce\x0f\x4a\xcc\x42\xf0\x42\x67\x6f\x91\x42\xf8\x88\xb2\x01\x75\xf6\x71\xeb\x9f\x24\xb6\x9a\x81\xa0\x23\xf2\x87\xfe\x0e\xa7\x25\xaa\x3f\x58\x2c\xc4\xbd\x77\x75\xc0\x3e\x85\x1c\x32\x41\x85\x1b\xe4\x19\x09\x1c\x70\x75\x3c\x94\x0a\x2f\x39\xbb\x53\xbf\x61\x3d\x8f\xb7\x22\xaf\x35\x11\x6b\x00\x80\x82\xf0\xce\x21\x02\xbf\xbc\x45\xc3\x6a\x51\xff\x0c\xf5\x62\xc4\x1c\x10\xd5\x19\xc3\x5c\x89\xbf\x46\x7a\x78\xf6\x96\x36\x0c\xd7\xa0\x55\xfa\x73\xbe\x58\xe9\x04\xde\x88\x39\x03\x5e\x1d\xeb\xf5\x90\xe3\x3a\x61\x5f\x8a\x9b\x7b\x37\x4a\x62\x89\xbb\x41\x8d\x06\x24\x83\x89\xf3\x05\xc7\x65\x17\x98\x78\xa4\x35\xf4\x64\xb8\x57\xb9\xa1\x7e\x43\x98\x75\x86\x46\x5e\x5a\xdb\x5b\xe6\xfe\x81\x7f\x56\x2e\x18\xba\x01\xff\x1e\x38\x86\x11\x24\x4e\x77\x53\x5e\xc2\xad\xe3\x1f\xd6\x61\xe5\x20\xe1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\xb6\x56\x4f\x3c\xe6\xfb\xf8\x0c\x13\xbe\xd7\xed\xef\xe0\x32\xe1\xa8\x02\x52\x3e\x9b\x6c\xd6\x51\xb4\x34\x3d\xe0\x37\xa9\x6c\x83\xe2\xa9\xc0\xad\x88\xb6\xa2\x14\x11\x78\x21\x53\x2d\x37\xe5\x7a\x4d\xeb\x41\x5b\xf7\xa7\x98\x3a\xf4\xe8\x4c\x5f\x81\x02\x15\xb4\xf4\xb2\xad\xa0\x22\xb4\xd1\x59\x65\x04\x41\xcb\x0d\xc7\xf8\x62\x1f\xb0\xdd\xfa\xe8\xf0\xfd\xfb\xd3\x4b\xbf\x49\xf3\x3a\xa8\x0b\x12\x25\xbe\x71\x2e\x72\xa3\x7e\x99\xa3\x9c\x9b\xc0\x18\xc2\xbb\xea\x69\x89\x7d\x70\x21\x9b\xb2\xda\xe9\x73\xd9\x80\xf7\x34\xdc\x17\xe3\xe5\x51\xff\x8b\x7d\xf3\x97\xfc\xc6\xd2\xcd\xc7\xc4\x2c\xdd\xa7\xfc\x37\x09\x0f\x0b\x82\x43\x16\x2c\x3d\x7f\x16\xe3\x9d\xfb\xa9\x03\x4d\x31\x3a\x3c\x00\x93\xde\xe5\x50\xb5\x08\xf7\x0d\xf6\x8a\xab\x14\x67\xd6\x07\x6c\x0b\x6d\x5a\x2c\x18\x46\xee\xae\xae\xfe\xbe\x83\x78\xc6\xea\x10\x31\x0f\xf6\xbc\x9c\x57\x6b\xd9\x50\x7e\x71\x3f\x24\x9d\xbf\x06\x0e\xe8\x41\xe3\xf4\xeb\xc7\x6e\xcb\x8e\xab\xb4\x37\x74\xcf\x1f\xec\xaa\x94\x0d\x7b\xec\x83\xf5\xe0\x05\xe9\x2f\x7c\x92\x4d\xd3\x47\x10\x2f\x46\xd5\xf1\xf5\xb5\x85\xd8\x03\x9d\x37\x0f\xe8\x56\xd3\x79\xb5\xb0\xbc\x1b\x19\x21\x05\xf1\x7f\xa0\x4d\xbe\x2b\xe7\xc7\xf1\x58\xb5\x6e\xc2\x11\xd6\xee\x75\xbe\xde\xc5\x56\x12\x6e\x9d\xcb\x74\x4f\x12\x78\xd7\xfb\xb2\x70\xd7\xc1\xed\x4b\xce\x20\x6a\xf8\x09\x48\xeb\xef\xbe\x6a\xc5\xf7\x34\x59\xf0\xfb\x26\x41\x4f\xd4\xfa\x3c\xbc\xb6\x87\x3c\x73\x7b\xe7\x3c\xf8\xbe\x23\x75\x62\x36\x82\x6b\x32\xf9\xba\x17\xcb\x73\x1a\xcc\x26\xb3\x16\x0c\x22\xb4\xb5\xde\xea\x19\x9f\xe3\x60\xdd\xa2\xad\xe0\xba\x2f\xe9\x7c\x77\x33\x0d\xee\x6d\xba\x44\xdf\xee\x05\xd1\x3d\xa1\x68\xb6\xac\x7a\x52\xe1\xf9\xa2\x18\x5c\xbd\x13\x62\x1b\xb4\x93\xe1\xd6\xa7\x7c\x59\xca\xa8\x28\x6f\xfa\x02\x0b\x5b\x19\x4b\x9a\xba\x02\xf8\x43\x7f\x4f\x94\x52\x40\xbb\x73\xca\x47\x1f\x4d\x56\xd5\x15\x2f\xfc\xb7\xf4\x87\x36\x75\x51\x00\x62\x32\x15\xf1\x16\x95\xa8\x91\x47\xb4\x6f\x57\x8f\xfa\xd1\xe9\xac\xa8\x03\x5d\x30\x2f\xea\x1d\xae\x66\x7c\xa0\x0d\x09\xe9\x4b\x24\xe8\x5d\x4f\xea\x09\xcd\xc2\xb5\x88\x43\x72\x67\xf3\xad\xa5\x3c\x66\xfd\xef\x89\x01\x9a\xf6\xe6\xe0\xd4\x06\x31\xc8\xb7\x49\xd2\xc3\x38\x3d\x8d\xa6\x55\xc1\xac\x9c\x8d\x04\x38\x1b\xa3\xce\x17\x7c\xe2\x93\xaf\xbb\x54\x95\x4e\x3b\xe4\x4e\x6e\xf8\xe8\x58\x2c\xf1\xbf\xea\x27\x0c\xf1\xcb\xfc\x1f\x92\x7a\xe1\x7e\x80\xcc\x3a\x25\xbc\x4e\xad\xea\x84\x89\xc5\x4a\x9d\xb4\x9a\xab\x4c\x2e\x5c\x61\xdb\xbc\x74\x67\x8c\xbc\x66\x01\x47\xb8\xdd\xe4\x9f\xab\xcd\x6e\x93\x3a\x40\x14\x65\x4a\x7c\x18\xdb\xfb\x67\xd3\x56\xfb\xe1\x39\xf3\xd7\x1b\xef\x87\x35\xdc\x6d\xc3\x67\x6f\xac\x8c\x0f\xd0\x6c\x61\x47\xce\x1c\x89\xde\xca\xb5\x2b\x88\xee\x5a\xae\xdc\x41\x0c\x73\xf7\xf3\x48\xb3\x02\xe5\x31\xdb\x82\x0b\xeb\x9c\xd8\xce\x83\x17\x32\xe9\xc6\xb3\xac\x56\x25\xc6\x13\xbd\x18\x1c\x50\xa3\x42\xcc\x84\x31\x79\x5a\x3a\xc2\x35\x20\x4f\x4a\x13\x50\xd1\xb6\xa6\xa2\x65\x1e\x5c\x25\x7a\xf6\xfa\xed\x25\x2e\x12\x11\x4d\x8a\x89\x4d\x6f\x4b\xb1\x77\xef\xcc\xd5\xc9\x3b\x5e\xd5\x75\x22\x09\xd5\x15\x10\xcf\xdc\x68\xc2\x08\x27\x7a\xbb\x56\x16\x53\x80\xd5\xe6\x5d\x8b\x09\xc6\xfc\x8a\xdf\x4a\xa2\x16\xe4\x44\x18\x04\xe2\x73\x32\x73\xf5\xca\xc3\x3b\x6c\x56\xad\x3b\x12\xf5\xd3\x16\x9e\x86\xea\x52\x53\x6e\xab\x77\xac\x9b\xab\x44\x18\xa6\xa5\x2b\xfb\xbc\x72\x7c\x18\x77\x90\xf8\xf6\x44\xcc\x80\x71\x17\x3b\x0f\xe7\x3d\xf4\x61\xa4\x85\xc2\x22\xcb\xf6\x36\x63\x8b\x3b\xa4\x94\xed\xad\x4f\x08\xc4\x39\xca\x20\x74\x06\xc0\xce\x97\xe4\x0c\xb3\xfc\x7f\xff\xf7\xff\x79\x7a\xc4\xc3\x3e\xea\xdb\x35\x7d\xa9\xb4\xcc\xf0\x32\x0d\x52\x41\x7a\xfa\x67\xd2\x7a\x6e\xd4\x71\xe4\x83\x7c\x25\xf6\x1b\xac\x80\xf2\x3b\x35\xb0\xe3\x23\xd1\x5f\xcc\x11\x12\xbd\x5a\xce\xac\x20\x61\x95\x53\xc9\x86\xd4\xcd\x70\xc3\xf8\xfb\xae\x5a\x7c\xca\xc4\x4e\xf2\x3c\xfd\x0b\xff\x4a\x71\xa7\x58\xf7\x4c\xe6\xc3\x8e\xa9\x82\x38\x07\x9c\x39\x74\x60\xc6\x46\xa3\x57\x0f\x3c\x13\xce\x63\x19\xe0\xd6\x1c\x23\x0d\x90\x2f\x2a\x25\xdb\x1d\xbb\x4a\x31\x41\x58\x6b\x67\x94\x82\x4b\x5f\x9c\xc8\x12\x5b\x50\x03\x66\x76\x54\x07\x9a\xa7\xee\xca\x1d\xc0\x49\x51\x07\x59\xde\xe8\xc7\x0e\x71\xf3\x9c\x86\xac\x6a\x47\x74\x09\xdc\xed\x14\xba\x43\xf4\x6d\x09\xc5\x8a\xfe\x24\xb4\x01\xb1\x77\x9d\x9e\x09\xf3\x3d\xd8\x3e\xc7\xb1\x27\xd2\xed\x44\x98\x8f\x94\xf3\xa5\x56\x04\x8d\xea\xa5\x7e\x26\x94\xce\xbf\x2f\xe9\xcf\xe8\xa6\x3b\xdf\x8b\x1f\xdf\x87\x5f\xe7\xf3\x12\xc9\xef\xf0\x41\xc4\x4f\x7b\x60\x4f\x33\x22\x7b\x90\xfd\x48\x18\x25\x55\x2f\x84\x88\xaf\x44\xef\x78\xc8\xf9\xaf\x7c\x26\x38\xd1\x6a\x73\x3e\x85\x3d\xcf\x6f\xe4\x27\xa1\x4b\x2f\xcc\xbf\x91\x2f\x49\x86\x2b\xbc\x80\xc2\x13\xde\xc1\x43\x68\xd6\xd5\x70\x66\xdf\x89\x75\x60\x36\xee\x88\xe5\x0c\xee\xeb\xa7\x8b\x41\xfe\x95\xa8\xfe\xaf\x58\xf1\xb7\xb4\x1c\x5c\x3d\x35\x5f\x3d\x97\xbe\xe1\x7d\x14\x47\x40\x27\xf2\xe5\x72\x0a\x71\x91\x3d\x86\x74\xa0\x69\x76\x35\xe1\x94\xff\xba\x54\xa2\x4f\x95\x0b\xe9\xaf\x73\xf3\x97\x38\x17\xac\xf3\x4b\x80\x00\x9f\x3c\x1b\xce\x45\x90\x55\xb3\xa8\x35\xc7\xf9\x1a\x2d\x35\xe4\x87\xd9\x0b\xc2\x7f\x9b\xb9\xf2\x47\xfc\x33\x5d\x8f\x6a\x71\x93\x1b\xce\xed\xa0\x99\x10\x86\x9a\x9a\x04\x93\xe6\x42\x48\x69\x71\x33\x05\x4c\x7a\x5e\x1d\xc1\x9e\x52\x42\x48\x5a\x51\xc5\xac\xa1\x0c\x6a\x86\xd2\x32\x0d\x4f\x1b\x26\xdf\x1e\x83\xda\xa6\x9f\xe3\x7e\x06\x40\xd2\xcd\x7c\x02\x94\xad\x67\x1e\x8e\x06\x3e\x04\x52\xf3\xae\xe3\x3f\xc3\xd9\xf3\xf3\x43\x53\x3b\x9c\x20\xc9\xcc\x48\xa6\x5c\x94\xee\x22\x0b\x80\x20\x8b\x70\x68\x89\xa8\x19\x57\x99\x36\x16\xd5\x07\x84\xf6\xf9\x9c\xb2\x49\x76\x62\x6c\xba\xc2\x8c\x2b\x9f\x25\xa8\xb3\x4c\x65\x2e\x56\x73\x54\x65\x98\x47\x62\x53\x26\x22\xb1\x20\xc2\x89\xc7\xeb\x89\x12\x77\x52\xd4\x10\x66\x6f\xcd\x23\xba\xd1\x92\x77\x4c\xaf\x87\xe0\x60\x0c\xfb\xab\xde\x53\x4e\xe5\x36\x48\x6b\xe3\x9c\x19\x5f\x91\x72\xfc\x93\xef\xcd\xcb\x8f\x49\xd0\x4e\x63\xcf\x90\xc2\xc1\x3b\xbb\xeb\x6a\xa1\xa6\xb4\xa9\x42\x32\xcb\x45\x36\xbf\xd5\x32\x32\xcf\xb8\x79\xba\xa7\xc8\x86\x25\x79\xa8\x95\x5a\xe4\xc4\x25\x4c\x14\xe9\xf4\x1e\x3c\x5f\x44\x1f\xe7\xcc\x78\x63\x82\xaf\x11\xf3\xa6\x6e\x12\x84\xa9\x14\x20\xa7\xf8\x98\x02\x11\x03\xb3\x9a\x88\x78\x17\x90\x1b\x17\x76\xc4\x3d\xd9\x30\xbb\x6d\xb9\x12\xef\xe0\xc4\xd5\x7e\x41\x39\x76\xeb\x65\xbe\x2a\xe7\x09\x27\x0d\x7c\x6d\xf1\xf3\x8e\x76\x7c\x01\x69\x68\x54\x82\x57\x12\x66\x81\x40\xe4\x3b\x7d\xf8\xdb\xb7\x1f\x3b\x9e\x06\x7f\x50\xf3\xdb\x77\x1f\x49\x4f\x7f\xf8\xdb\xf7\x1f\x71\x42\x33\x2a\x9c\x5d\xb1\x89\x72\x5c\x03\x0a\x1a\xf4\xb6\x2d\xaf\xab\x66\xd7\x89\xbc\x86\x4f\xcf\x1f\x3e\xcb\x54\x7c\xee\xe3\x25\xee\xee\xcf\x0f\x56\x78\xe1\xb2\xe2\x15\x5e\xef\x36\x99\x8e\xb1\x13\x0e\x60\xbf\x5c\x71\xc3\x40\x96\x73\x93\xbf\xbb\xdf\x3c\xdc\xaa\xe0\xc1\x52\xe7\xcd\x3c\xf1\x27\xf9\xf5\x02\x03\xe1\xa1\xff\xee\x5a\x6a\x82\xd3\x9d\x4b\x09\x29\xc0\xd2\xb7\x3b\x65\xba\x2d\xfb\x59\xcc\x95\x2c\x2c\x0e\xba\x1c\x67\x69\x2f\x3c\x88\xce\x1b\xbc\x99\x43\xf0\xb6\x04\x62\x0c\xee\x1c\x3f\x07\x99\x77\x55\xd6\x46\x05\x94\xd5\x7a\x2a\x51\xd0\x01\xae\x15\x53\xb2\x0d\x7d\x1d\x9a\xa4\x3d\x57\x87\xfd\xfc\xca\x5a\x44\x9e\x20\x01\xf6\xca\xd5\x73\x45\x18\xaf\x17\x38\x09\xc0\x61\x09\x0f\x55\x3d\x61\x05\xfa\x2b\x9b\xd8\x36\x1a\xed\xeb\x0c\x1f\xbe\x65\xbb\xfc\x08\x19\xe9\x28\xf8\xe9\x28\x35\x32\x5a\x6a\xa2\x5d\x63\xbb\x82\x1a\x05\xfe\x6d\x57\xd7\xf8\xf4\x8c\x93\x22\xd0\xaa\xce\xec\xfa\x83\xea\x13\xc4\x3a\xd9\xef\x50\xc6\x47\x44\xc5\x37\x7c\xd5\x0e\xbe\xf7\x66\x61\x74\xb4\x6a\x37\x15\xe5\x5c\x9d\xa7\x35\x5c\xbb\x65\x01\xcb\xd0\xcf\xf4\xc7\x8d\x75\xe0\xbf\x64\xfd\xe3\x56\xa8\xfb\xf4\xc7\x92\x64\x97\xb4\x25\xe8\x77\xf1\x38\x9f\x70\xd7\xf8\x5d\x1e\xbf\x86\x00\x62\x97\x7e\x58\x0c\x24\x35\xc9\xf6\x94\xae\x6b\x99\x13\x06\xfb\x90\x40\x4e\x0c\x46\x32\x06\x8e\x7f\x71\xa6\xbb\x8d\x23\x1d\xc4\x9d\x1c\x0b\x22\x31\xae\x45\x7d\xdc\x00\xea\x0c\xe3\x93\x60\xd3\x1e\x23\x22\x75\x84\x67\x1e\x2c\xc3\x87\x5e\x22\x7c\xe6\x1f\x1c\x83\x68\xdd\xfb\x4f\x3d\xa6\x1b\xf7\xfa\xb2\xf4\xf5\x9e\xe3\xd5\x80\x71\x6e\xf3\xb6\xaf\x16\xd5\x36\x77\xcc\xf3\x2c\x48\x49\x44\x7d\x0a\xa4\xf7\x50\x8d\xd2\x4c\xb6\xb0\xe7\x44\xc3\xe2\x5e\xa4\x2a\x0a\xa7\xa8\x2f\x57\x37\x0d\x67\x18\x33\xe0\xfe\xa6\x49\x9d\x72\x87\x08\x77\xbc\xbf\xe4\x29\x17\xb6\x4b\x8f\x58\x47\x5a\x7e\x36\xa8\x16\x77\xdd\x9f\xc3\x87\x72\xd8\xa0\xb6\xf0\x3c\xd5\x2f\xcd\x8f\xf4\xce\xa1\xbe\x69\x23\x6f\xd8\x1c\xb7\x5b\x03\x3b\x38\x5d\x96\x1f\x57\x72\x2e\x6a\x40\x88\x05\xc6\xb2\x90\x6f\x2b\xd8\x1f\x24\x52\x98\xfa\xba\x70\xee\xbc\x5c\xe4\x1c\xba\x0a\x7d\xe6\xb1\xae\x38\x36\x99\x1f\x3d\x81\x70\x4c\x11\xab\x9f\xfd\xc4\xc3\xf8\x6e\xcc\x0d\x5d\xf5\x66\x53\x19\x60\x6a\x5e\xf6\x37\xb8\x0f\x02\xe7\x13\x46\xae\x18\xe3\xbb\x1f\xc2\x3d\x9e\x18\xe3\x33\xb4\xf1\x8c\x37\xfa\x42\x99\xe4\x9f\xf0\x43\x58\xa5\xa2\x72\xa0\x06\x4c\x90\x01\x38\x83\x4d\xea\x0d\xe8\x89\x46\xbc\x29\xa9\x51\x08\x07\x85\x69\xa6\xc2\xb2\x7f\x64\xeb\x80\xf1\x64\x7c\xd3\x5a\x60\xe7\x12\x4d\xff\xde\xa5\x6b\xfd\xa8\x49\x65\x00\x6b\x46\xd2\xfe\xbd\xea\xa9\xf4\x7f\x7c\x34\x1a\x25\x25\x22\x0b\xf9\x2e\xe8\xd3\xff\x8c\xa0\x86\x0a\xb9\xcf\x13\x8b\x3a\x08\xaa\x34\x9f\xd3\x42\xf3\x75\xbf\x26\x52\x11\xd4\x38\x6b\xb6\x64\xe8\xd9\x69\x38\x93\xd4\xeb\x6d\xd9\x32\xcb\x50\x6c\xba\x23\xc4\x59\x84\x1a\x08\xc7\xad\x6f\x89\xa9\xc6\xe5\x5c\x8e\xaa\x75\x3c\x42\x61\x62\x16\x21\x55\x70\x44\x33\x5a\x1f\x76\x70\x4c\xbf\xdc\x11\xd1\x74\x5d\x0a\x5b\xec\xfc\x25\x08\xc6\x22\x15\x82\x05\x2d\xe0\x7c\xd6\xf7\xaa\xcb\xe0\x2e\x26\x9e\xee\x97\xea\x03\xb6\xae\x16\x7d\xea\xd2\xa9\x39\xb9\x85\x20\x31\x76\x96\x12\xb1\xc8\x85\xf5\xa3\x8d\xb5\x5b\x21\x06\x0a\x03\x5c\x11\x97\xda\x34\x90\xff\x1c\x8b\xc8\xeb\x0c\x47\x23\x18\x6a\x64\xf3\x8d\x86\xa1\x06\x60\x45\xc8\x20\xb2\x89\xab\x0a\xf6\xf5\x2f\xab\x4d\xce\xe6\xa7\xea\x73\x2c\x40\x6e\xe9\xf0\x8a\xb7\x71\x77\xfb\xdb\x1a\x86\xe7\x13\x7a\xd8\xe4\xb5\x9c\x75\x56\x7c\x7f\x87\xb5\x6c\xb9\xc0\x0b\xcf\xab\x7e\x35\x51\xb3\xd4\x36\x60\x29\x20\x9e\xa9\x95\x0d\x82\xdd\xd5\xba\x00\x51\x0a\x76\x44\x26\xf1\xdf\xd5\xe6\xfb\xa8\x77\x44\xaa\x84\xec\x0f\xba\xe3\xa1\x86\x2c\xab\x96\xed\x3d\x42\xdb\xe3\x3f\x3d\x2c\x9e\xc8\x22\x86\x07\xd6\xe8\xdc\x8a\x13\x65\xe0\xe1\x46\xca\x5c\xb4\xea\x70\xdd\x9d\x49\x86\x37\x0a\x06\xa2\xef\xd9\xef\x49\x60\xdf\x0b\xf6\x32\xaf\xb9\x07\xd9\x13\x66\x86\x20\x77\xda\xd4\x30\x04\x28\xbc\x01\xe7\x61\x17\xb5\xdd\x64\xb4\x34\x32\xd5\x03\x69\x3b\xe1\x85\xc2\xbf\x86\x3d\x30\xfd\x67\x58\xb3\xd3\x24\xe2\x01\x91\x00\x30\xe7\x2d\x44\x2e\x72\x0b\x8b\x0e\x4c\x9a\x44\x0e\x7a\xa5\x47\x3d\x0d\x54\x00\x88\xaa\x1f\x70\xf8\x49\xe4\x98\xf4\x87\x5b\xc4\x61\xc6\xc4\xe9\x69\x98\xeb\xc7\x7c\x4c\x03\x66\x23\x62\xfa\xd8\x02\xa6\x3d\x89\x07\x59\x8a\x17\x3c\xff\x0d\x33\x5c\x88\x1b\xad\x2a\x93\x99\xd7\x1a\x51\xb9\xa6\xf8\x90\x2b\x07\xee\x12\xee\xa3\x5b\xfa\xf7\x74\xb3\x79\x5a\x14\x8f\x26\x46\x1d\xc8\x4f\x6e\xd8\x03\xbf\x3c\x35\x5d\x0c\xb8\x64\x50\x53\x20\x8e\x4e\xe3\x8e\x01\xa2\x79\xfa\xc0\x7b\x3f\xef\xd3\x2c\x74\x14\x1e\x73\x42\xbb\x7e\xf6\x3a\xe6\xff\x0d\x71\x3b\xef\xed\xc3\x0b\x5a\x1c\x19\xc3\xb1\x0c\x44\xf9\x20\x6b\x70\x07\xfd\xce\x0e\xba\x93\x17\x15\xe7\x88\x77\x6f\xf6\x20\x45\xc2\x26\xee\x45\x49\x20\x42\x7b\xb4\x3a\x31\x7a\x02\x70\x5a\x88\xf6\xad\xff\x57\x0a\xd2\x53\xcd\x4f\x91\xc1\x3d\xa2\x74\x72\x53\x7d\xaa\xa8\xc0\xaf\xf4\x07\xdf\x33\x8d\x1a\x90\xfa\x28\x01\xd4\x2e\x67\x7f\x13\xe5\xdb\x58\x39\x87\x69\x96\xf9\x34\x0c\xa5\xa9\xc4\x2a\x14\xef\xae\xdd\x9a\x8f\x63\x3e\xc9\x6e\xda\x2c\x76\x50\xd9\x6f\xf5\xc6\xcc\xdf\x70\x7d\xa5\x21\xa1\x6e\xa5\x41\xee\x20\x32\x57\xbd\x12\xd5\x4c\x1a\x54\x1a\xc7\x0d\xbc\x4c\x43\x55\xeb\x22\xef\x11\x74\x95\xd2\xb1\x7b\x0a\x78\x18\xcc\x1a\x09\x2a\x26\x6b\xba\x0a\xc9\x1e\x5e\x6e\x57\x84\xb5\xbe\xd7\x30\x68\x92\x6f\xbe\x02\xaa\xcf\xfb\x23\x86\x5f\x11\x46\x31\x67\xf9\x98\xfd\xd7\xd8\xd7\x18\xf3\xad\x76\x32\xcf\x20\x74\x1c\x88\x1a\xa5\x2d\xb1\x62\x1a\xb4\x01\xef\x50\x6d\x80\x89\x82\xb9\x73\x97\x32\x41\x9b\xb1\x00\xe5\x88\x19\x03\x1c\x94\xce\x29\x99\xc6\x13\x51\x35\x32\x1a\x8f\xcf\x1b\x8e\x47\x9c\xba\x22\x10\xf5\xfe\x9a\x86\xe2\x6b\x0e\x8b\x32\xfb\xd6\xa4\x84\xd0\xf1\x0b\xd3\xce\x7d\x13\xc1\x94\x95\x78\x95\x4b\x5d\x04\x17\x5e\xef\x65\xdb\x23\x5c\x8b\x9b\xa1\x4c\xf7\x50\xbf\x13\x83\x90\x50\xd5\xc0\x7b\x39\xf2\x5c\xee\x82\x3a\x3a\x9d\xe6\x2e\x40\xa2\xdd\xd3\x31\x2f\x5b\xfd\xc9\x01\x9b\xa6\x02\x59\x5b\xda\x4c\x26\x0b\xb7\xf0\xe4\xcb\x67\x05\x11\xa6\x54\xa0\x0e\x7e\x7b\xb0\x55\xd3\x7c\x92\xc8\x5c\x73\x7c\xfa\x9c\x25\x87\xb7\x95\x4c\x0e\xe4\xfa\x26\xce\x25\x1d\xaa\x5a\x84\x01\xb3\x5f\x72\xc2\x44\x17\xf5\x12\xdb\xa9\x85\x59\x63\x37\x2b\x9f\xab\xb7\x9a\x82\x7a\xf4\x9e\xd5\xb8\x22\xbd\x81\xc3\x82\xc9\x97\x5d\x31\x9b\xba\x5a\x16\xdf\x79\x9f\xf9\xda\xf3\xe2\x9a\xf9\x77\x11\x05\x15\xd7\xb4\x89\xce\xf0\xd4\x39\x2f\x57\xb9\x64\x06\x96\xc4\xbe\xb1\xb8\x6c\x60\x7b\x07\x56\x9b\xf1\x90\xa0\x02\xda\x47\x88\x88\xd8\x27\x24\x5f\x67\xca\xcd\x78\x6b\xb2\x34\x54\xe7\xc1\x23\x50\x0d\xd4\xfa\xb3\x81\x82\x06\x39\x46\xc8\x7e\x70\xeb\xeb\x2f\x51\x7c\xc3\x39\x23\x43\x7c\x16\xe4\x04\x81\x7d\x2e\x10\xca\x99\xf0\x74\x1b\xc7\x00\x22\xe9\x2b\x40\x97\x30\xfa\x01\x06\x38\x3e\x5e\xcf\x0e\xb0\xec\x30\x7b\x53\xc2\x6d\x56\xcc\x85\x7d\x9b\x73\x50\xf0\x3d\xc3\x07\x4c\xa6\x30\x43\x3c\xec\xa9\x40\x13\x30\x36\x27\x94\x38\x8c\xe0\xbc\x2c\xbd\xd4\x1a\x79\x54\xaf\x00\x73\x57\xf9\x30\x72\x23\xab\x24\x2c\x3b\x87\x67\x68\xc2\x2a\xfe\xc9\xce\x4e\xff\x4a\xff\xc9\x44\x44\x7f\xaa\xba\x28\x3f\xff\xcb\x74\x5a\x17\xd7\x92\x09\xf4\x60\xe4\x1f\x29\xc2\x32\xf7\x0c\xc5\x02\x74\x42\xe2\x1f\x60\x33\x14\xcf\x3b\x73\xba\x26\x82\xd7\x9b\xaf\xbc\xa7\xb6\x15\xb1\xc2\x78\xd9\x17\xbc\x0c\xda\xec\x1f\x72\x4a\x76\x8c\x5f\xe9\xff\x62\x99\xc3\x81\x20\x2a\x3f\xc2\x37\xb0\xae\xda\x89\xef\x93\x5e\x43\x97\x2b\x90\x62\x67\xcd\x9d\xed\xb3\x8b\x7d\x4a\x62\x4e\xe7\x43\xa3\xc9\x1d\xca\xbc\x96\xeb\x64\x72\xb9\x35\xe0\x47\xac\xd0\xf7\x4e\xb5\xef\xd3\x4b\x8e\xd2\xbc\xdc\xad\x49\xf4\x0c\xdc\x8a\x86\x05\x86\xd3\x62\xf5\xa8\x90\x02\xb7\x14\x46\x0e\x07\x03\x43\x5d\xc1\xf2\x76\x0e\x46\x1a\xda\xa6\xe5\xb8\x9a\x72\x13\x65\xd8\x8a\xec\x16\x1d\xb6\x8b\xa7\x7a\x1f\x3f\xf6\x19\x8e\x1a\x0e\xb0\xa1\x7d\x80\x9d\x63\xaa\x17\x72\xb2\xe0\xfa\x20\xae\xc3\x13\x3d\xf0\xa1\x79\xcd\x79\x58\x6d\x20\x11\xbf\x36\x68\xf1\x70\x1f\xb8\x9a\x79\xb9\x59\xa0\x2c\xc6\x97\x74\x09\xc7\x90\xf1\x4d\xd0\x70\x39\x48\xd8\x00\x76\x0e\xd1\xcf\x53\x0b\x3c\x30\x06\x73\xea\xb7\x8f\x36\x10\x23\x85\x71\xa1\x74\x80\x05\xa1\x93\x14\x47\xba\x60\xe9\xd1\x45\xc5\x56\x13\x3b\xfc\x6f\xe1\x71\xdf\x4d\x74\x6f\x30\x4d\x4c\x13\x12\xc8\x1a\x84\x27\x62\x64\x75\x15\xd0\x30\xae\x76\xf0\x55\x8d\xeb\xaa\x20\x6d\x1d\x9d\xb9\xab\xde\xef\xe2\x7a\x09\x8f\xf0\x3c\xdb\x5b\xf7\x60\x40\x58\xe1\xee\x75\x04\x04\x8c\xb8\xf2\x71\x50\x26\x47\xc4\xcc\xc7\xd9\xf7\x75\x25\x21\x9e\x49\xea\x63\x11\x84\x12\xb7\x88\xd3\xa0\x0f\xb9\xfd\x65\x54\xfa\xc3\x68\x77\x52\x83\xfc\xcf\x2d\xd7\x89\x4d\x82\x6d\x49\x93\x60\x36\xa1\xa7\xb4\xdf\x49\x48\x15\x14\xc2\xc6\xc4\xe6\x28\x6f\x45\xa8\x1b\xf5\x3e\x67\xa7\xa3\x49\x69\x69\xb2\xfe\x89\xf5\x15\x0a\x64\x8c\x38\x0b\x77\x8e\xab\xe1\xdc\x30\xb3\xd3\x87\xe3\x4d\x77\xa4\x36\x9c\x87\xac\xc9\x3a\x0c\x72\xc2\x62\xc0\x50\x86\x77\xa0\x3d\xc3\x1c\x04\x2c\x40\xd7\xa6\xf8\xd1\x1e\x44\xd9\x00\xa2\x98\x24\x7f\x04\x5b\xfb\x11\xe5\x19\xd1\xbd\x57\x12\xf6\xd7\xf7\xdd\x5e\xc6\x16\x5c\x1c\x08\xe5\x63\xe6\x95\xfa\xda\x86\x59\x1f\xc3\x21\x8a\x1b\x30\x1e\xff\x60\x87\x48\x42\xf9\x81\xaa\x7f\x07\xee\x24\x58\xc2\x2c\x04\x77\x4c\xc2\x33\xbe\x6e\x7f\x5f\xe1\xe2\x28\x08\x78\x3b\x6a\xda\x47\x7f\x38\xf0\xfe\xf1\x26\xcf\x40\xf3\xe3\xdd\x75\xcb\x11\xd0\xf9\x24\xf6\x4a\xf4\x7c\x21\x9a\x7b\x9a\xfc\xee\xae\x26\xc5\xa7\x7f\xa2\x4d\x77\xbb\x45\x63\x1e\x61\x67\xe4\xc7\x53\xee\x69\xed\x7b\x6b\x2d\x54\x95\x3f\x95\xe5\x36\x68\x22\xee\x7e\x70\xd5\x17\xd2\x6e\xec\x65\x3f\xc1\x83\x55\x56\xb0\xf0\x37\x51\x6f\xf6\xae\xa1\x7b\x74\xef\x7d\xb2\xfb\x74\x65\xa6\xa1\xdc\x13\x92\x60\xcc\x17\xed\xac\x17\x2f\x07\xe1\xbc\xd7\xc1\xb0\xbe\x9d\x05\x3b\x16\x6e\x6d\xd9\x56\x34\x51\xd5\xe4\x5e\xe9\xc3\xea\xb8\xae\x59\x81\x76\x7f\xf7\xe2\x0b\x3f\xe9\xc4\x45\x9f\x40\xa3\xe0\xa0\x91\xd1\x99\x36\xdf\xa0\xe5\xf1\x44\x67\xdb\x7b\x0b\x0c\x6e\xae\x46\x75\xc5\x37\x57\xc7\x84\x36\x68\xd8\xae\xaf\x8e\x95\xc3\xa6\x0d\xcf\x5c\xc3\x8e\x4d\x0c\x69\xb2\x58\x64\x8a\x97\x00\xe6\xbc\x2e\x88\xf3\xad\x1b\x48\x9f\x2b\x09\x2d\x1d\xaa\xa3\xfe\xfa\xdf\x90\x68\x07\xeb\xf5\x8e\xeb\xae\xd6\x29\x59\x7d\xfb\x30\x77\x34\x89\x35\x5d\xb1\x01\xde\xc4\x9f\x53\xc2\x6b\xc7\x9e\x73\xea\xe0\x09\xc9\x61\x16\x94\x40\x90\x39\xef\xf4\xcf\x67\x4b\xf3\x11\xe2\xa3\x98\x73\xb1\xdf\xbf\xde\x22\x92\xab\xc7\x10\xb1\xc3\xb2\xb3\x48\x57\x6a\xd9\x27\x98\x1b\xd4\x08\xc0\xfa\x32\xd9\x30\x68\x94\xe6\xde\xac\x9a\x40\xe0\xbc\xbf\x01\x26\xbc\x1b\xd1\xff\x95\x48\xd5\x1a\x30\x30\x13\x38\xe3\x99\xda\x0a\x70\x7e\xb2\xd9\x11\x72\x60\x2c\x83\x49\x40\xdf\x24\x39\xbd\xb8\xc4\x59\x2a\x4d\x1a\x09\x73\x4b\x96\x7d\xd2\x5f\x49\xb1\x44\x60\x7b\x7e\x1a\x44\x37\x96\xc5\x82\xe3\x11\x54\xb5\x86\xfd\xbe\x29\xed\xa2\x68\x5d\xa8\x24\x10\x46\xab\x30\x0d\x5e\xce\x54\x53\xbc\xd7\x81\x47\x87\xb6\xe5\xa2\xba\x22\x79\xff\x1d\xcd\x55\x8d\x47\xda\xdc\x0b\x51\x77\xde\x87\x72\x23\x81\xbf\x38\x1f\xbd\x86\xe2\x8b\x64\x86\xeb\x43\x65\x84\x11\x7a\x86\xa0\x53\x37\x33\x0d\xc3\x77\x99\x53\xb1\x5f\x8a\x54\x54\xf1\xf6\x9b\xaa\x3f\xf3\x97\xac\x83\x51\x1f\xc2\xb0\xeb\xd2\xf4\x97\x72\x76\xad\x6a\x86\x38\xfd\xae\x2f\x1c\x00\xb1\xc3\x55\x45\xfc\xbe\x07\xdc\x50\x70\x21\xf1\x85\xe1\xb6\xc6\x1e\xf2\x4a\x16\xae\x56\x0b\xfa\x0f\x61\xd6\x70\xd4\x8d\x0d\x2e\x93\x6d\xf8\x21\xa2\x6b\x37\xc3\x71\x0a\xed\xcb\x99\xa8\x34\x47\xea\xf4\xae\xc4\xc3\x2c\x9b\xfc\x56\x22\xcb\xf3\xd1\x65\x47\x92\x43\x5d\x74\xf6\xe4\x18\x3f\x8b\xb8\x6a\x6e\xd8\x2a\x6a\x97\x99\x46\x53\x32\xee\x9b\x3f\xd4\xb3\x93\xbc\x09\x90\x6e\xdb\xc8\xed\xb4\x73\xfd\x1c\x03\xc9\x59\x05\x8f\xea\x8d\x7c\x8d\x41\xb6\x1a\x19\xd6\xc5\x88\x1d\x83\xcc\x9b\x82\xe7\xec\x25\xfd\x19\x1b\xf5\xdc\x3b\x69\x66\xd9\xc3\x5a\xde\x72\x8c\x34\x71\x0c\xe5\x0c\xa2\xce\x72\x7d\x25\x61\xe6\x58\xf5\xc6\x61\x8b\x9c\xb2\xf3\xb5\x4e\x79\x5d\x81\xaf\x21\xa2\x02\xc5\x13\xee\xd1\x23\x52\x74\x78\x84\xae\xaf\xa1\x84\x21\x66\x86\x7d\x82\x6b\x91\xf5\xeb\xad\xa8\x4d\x98\x4d\x1c\x2d\x49\x50\xef\x03\x16\xae\xd8\xae\x66\xae\x7f\x26\x82\x6d\x25\x90\x37\x07\xf7\x21\x1e\x80\xd0\x8d\x06\x22\x7a\xa7\x5c\xa8\x08\x6e\x58\x7a\x6d\x83\xa3\x7b\x30\xc2\xc6\x3d\xd2\x1b\xb1\x8c\x20\xb9\x0b\x3b\x82\xf0\x8e\x89\x00\xb2\xd8\x13\x43\x19\x49\xc1\xbd\x79\xf3\x4d\xc4\x3e\x02\x06\x1c\x3d\x60\x87\x8e\x6a\x80\x6e\x31\x3f\x31\x63\x35\x6b\x53\xe0\xa9\xc0\xb8\x62\x2b\x57\xc0\x0c\x59\x50\xa5\xfd\x57\x8c\x35\x6d\xb9\xcc\xdb\xc2\x02\x5a\x2a\x63\xe6\x7b\xfd\x60\xc0\x61\x48\xa4\x7c\xdd\x35\x56\x05\x6d\x24\x04\xf2\x89\x6f\x32\xd0\x7c\x43\xab\x52\x53\x1b\x2b\xb8\xfe\x88\x84\x79\xf1\x6e\xcb\xec\x59\x78\xbd\xb5\x83\x21\x3f\xfe\xcf\x8b\xd3\xf7\x07\xe9\xe7\xa7\x37\x37\x37\x4f\xb9\xf8\xd3\x5d\xbb\xe6\x68\x23\x05\x07\xcc\xfc\x9f\x27\xef\x0e\xd2\xb2\x5f\x3c\x99\xa5\x27\xc2\xb5\x3d\x33\x54\xbf\x00\xf8\xfc\xe0\x90\x9d\x18\xc4\x1f\xe7\xe6\xba\x62\xd4\x76\x1a\x46\x56\x0e\x85\x3b\x9e\x3d\xf3\xd7\xd6\xc9\x14\xbf\xed\x40\x50\x58\xb4\x25\xdc\x9d\xf1\x11\x64\x90\xd4\xf0\x69\x2a\x48\xda\x10\xa4\xa2\x76\xb4\x1b\x6f\x17\xfa\xc8\xd6\x00\xc4\xfc\xf9\x8e\xe0\xc9\xe7\xcd\xba\x3c\x71\x6e\x17\x66\x3b\x2d\x71\x29\x3e\xac\x8a\x36\x98\x79\x69\x13\x51\x16\x3f\x0d\x0b\xe3\x92\x12\xde\xb5\x79\x9e\xfe\x27\x9f\xd3\xf2\x44\x09\x6d\x71\x96\xd1\x16\x80\x67\xc3\xc2\x88\xb9\x1e\xe8\x85\x34\x00\x89\x24\x6f\x7a\xa9\xcf\x73\xba\xe9\xa8\x12\x35\x13\xb2\x9f\x34\x31\x61\x67\x36\x04\xad\x49\x75\xe3\x22\xf1\x29\xf9\x74\xb6\xe1\x45\xee\x27\x1d\xe8\xcd\x25\x3b\x42\x9e\xc2\x43\x2a\x37\xb4\x26\x51\x14\xf0\x47\x80\xaa\x71\x6f\x6c\x16\x10\xc6\x94\xea\x03\x03\xe5\x30\x23\x78\xcc\xac\xec\x11\xd0\x6b\x6a\x2d\x8a\x15\xcc\xcd\x9a\x5f\x3d\xc6\xdf\x74\xf7\x11\x41\x4e\x82\x21\x44\xdc\x03\xac\x23\xd6\x17\xa6\x37\xc3\xd9\x88\x37\x79\xc9\x4f\x79\xd3\x48\xba\x51\xc0\x41\x1b\x23\xa1\x42\x35\xbb\xb1\x32\xe2\x5b\xd8\x27\x3f\x89\x57\xbe\xed\xeb\x16\xe7\x13\x11\x65\x8e\x5d\x5a\x2c\x8d\xda\x2a\x05\xdf\x8d\x97\x28\x23\x44\xd6\x51\xc8\x51\x59\xae\x8d\xbd\x76\x19\x04\x61\x90\xf8\xc6\xb4\x5d\xce\x1c\x05\x81\x0a\x77\x7a\xa9\xd5\x42\x7a\x48\xe8\x91\x41\xe6\xf0\x55\xc1\xe1\xca\x26\xd1\x56\x5e\xb4\x3d\x92\xaf\x10\x5b\xdb\x75\x73\x6b\x71\xb2\x8e\xf1\x4b\xc3\x73\x86\x23\xf3\x60\x3a\x28\x0f\x39\x55\x97\x17\x45\x01\x85\xda\xa1\x91\xb1\x71\xff\xa9\xbc\xfc\x85\x29\x65\x6b\x39\xd5\x69\x97\x67\x9d\x25\x23\x8f\x83\x8a\xc8\x9b\x52\x1a\x6e\x2a\x40\x0d\xae\x67\x86\x03\xf8\x6b\xf0\x1e\x85\xea\x20\x35\x1b\x98\x5c\x37\x42\xad\x3f\xf2\x70\x99\x1a\xc5\x38\xbe\x93\x83\x1a\xc6\xa1\xf2\x23\xdd\x1b\x87\x2a\x2c\x1a\x06\xa3\x0a\x8a\x62\xdf\x74\x48\x98\x3c\xd2\x8d\xa6\x65\x1c\x6a\xca\x0f\xf5\x0b\xa2\x4d\x4d\xcf\xdc\x50\xf1\xb8\x77\xaa\xef\xf2\xe8\x28\xc2\xc1\x7d\x41\xdc\xa9\x81\x6a\xfe\x25\x3a\xc8\x54\x5f\x3c\x52\x02\xec\xde\xe7\xdf\x51\x54\x57\x57\xb3\x79\x4b\x22\x38\x07\x77\xc2\x43\x7e\xcc\xd9\xf9\x77\x7a\x81\xdf\x02\xc2\x7e\xbd\xa0\x0a\xf9\x90\x44\xbd\x95\xf0\x5c\x7d\x53\x25\x11\x4e\x95\xc3\xf7\xc3\x8e\x29\x47\x1c\x2c\xdf\x37\x88\xd2\x29\x39\x33\x29\xc2\x2a\x40\xc6\x5f\x08\x4b\x85\x13\x78\x3e\x53\x46\xa1\x0b\x4e\x09\xc0\xba\xed\x9a\xa4\x57\x7d\xac\xee\x82\x7f\xe0\xa6\x69\x00\xb1\xab\x49\x8f\x2d\x0b\x83\xf9\x20\x3f\x43\x28\xae\xd2\xa6\xce\x76\x54\x5c\xac\x11\x57\x56\x11\xbd\xbd\xd1\x17\x14\x6a\x70\x04\x46\x64\x55\x41\xb6\xf6\x20\x61\x18\x1b\x82\xb0\x39\xf1\x10\x8a\x68\x30\xac\x97\x6f\xdf\xcb\x4f\xdc\x96\xd5\x78\xb2\xb8\x2e\xcb\x1e\xb5\x89\xdd\xc1\x9d\x4d\xdd\xc5\xb5\x3c\xb9\x42\x2d\x46\x4a\x7b\x61\x1c\xbf\x1c\x44\xd1\xe6\x57\x70\x20\xe3\xbf\x2e\x95\xe4\x77\x5f\xec\xac\x2d\x9f\x0e\x8b\x11\x72\x64\xca\x2e\xf0\xe1\xd2\xd5\x01\x8c\xff\xb8\xb4\x1c\x7e\xdd\xcf\x83\x91\x7b\x8c\x98\x03\x31\xd1\xef\xc3\x2e\xed\x2a\x36\xe3\x2b\xa1\x0f\x1a\x04\x95\xf9\x67\x5f\x40\x83\xb8\x54\x1d\x8e\x35\xf4\x2c\x43\x24\xbb\x6e\x95\x3a\xfc\x70\xdc\x81\x5e\xa2\x54\xe9\x1b\x95\xb3\xa8\xdf\x51\x69\x11\x0f\x4a\x9b\x6d\x3c\x74\xca\x12\x30\x62\xbc\x48\x70\xd1\x1d\x3f\xea\x49\x88\xe0\x98\xc7\x2c\x2d\xb9\x45\x54\x6d\xa8\xfe\x6b\x79\x31\x4a\xaa\x27\xc9\xc7\x45\xd1\x22\x21\xa8\x96\x40\x3e\x96\x07\xeb\x89\xc5\xfe\x8e\xca\xf8\x77\x69\xec\x30\xd7\x5f\x5e\xa7\x7c\x48\x55\x8b\xf0\x4e\x3c\x8b\x58\x1c\x55\x50\xc6\x1e\x74\x20\xe2\xe8\x96\x3a\xe6\xe2\x96\x23\x8e\x12\xea\x9e\x14\x92\x85\x2e\x97\x33\xf9\x72\x39\x2c\xbd\x8b\x08\xfa\x4e\xbe\xe4\xc5\xf4\x21\x35\x8d\xe3\xbc\x51\xde\xd3\xe1\x5c\x07\xf0\x0e\x01\xbf\x96\x8f\xf8\x6c\xa4\x21\xd9\x20\x15\x27\xa9\xbc\x8f\x28\xc5\xcc\x79\xfe\xf9\xd1\xa7\xd8\x1e\x7c\x37\x86\xae\x81\xae\x39\x25\x14\x4f\x32\x23\x6a\x67\xa7\x2b\x5b\x29\xf0\xba\x8a\x97\x0b\xa8\xc7\x2f\x18\xb8\x3f\x8e\x16\x9a\x08\x5f\x1e\x2a\x3e\xe0\x9a\x00\x96\xad\x46\xb3\xbc\xf9\x77\x08\x33\xbd\xbb\x58\x3b\x43\x37\x2b\x84\xed\x65\x4b\x87\x3b\x2b\x22\x92\xb9\x63\x2f\x19\xb5\x16\x1e\x2b\x48\x13\xf7\x6c\x1e\xc3\x35\x10\x3b\x6d\x05\xf5\xe8\x16\xcf\x6e\x80\xba\x46\x46\x5b\xbc\xeb\x8d\x3e\x19\x89\x6d\xcc\xbe\x93\xe4\xb7\xa6\x5d\x7e\xf4\xcf\x8d\x38\x9b\x71\x64\xf6\x85\xe5\x80\x61\x5c\xa0\xef\x3d\x80\x3e\xf8\xb7\xaf\xd1\xc8\xf1\x35\x2f\xba\xf1\x7b\xdd\x62\xb7\x91\x57\xa1\xe0\x8a\x68\x41\xb6\x66\x16\xd4\x42\x5e\x3a\x50\x1f\xc1\xb0\x39\x89\x35\xe1\x3d\xcf\x3e\xe8\x85\x58\xf5\x5c\xe2\x78\x08\xfc\xc1\x8f\x51\xf0\x93\xf1\x6c\xb4\x15\xa7\x92\xb7\x48\x20\x96\x88\x04\x3c\x96\x22\x16\x38\xfa\x9b\x20\xcc\xbe\x9a\xa9\x39\x55\xbf\x34\x7d\x10\xca\x3f\x0a\xbd\x1f\x04\xe1\xc0\xd3\x1a\x91\x63\x23\x57\x0e\xac\x4c\xb8\x3c\xbb\xd7\x5a\xb4\x13\x82\x42\xa4\xde\x05\x1d\x45\xb0\xe2\xb5\x2e\xce\xf2\xbc\xaa\x73\x71\x1f\xd5\x5b\xd0\x4a\x22\x78\xee\xa3\x8e\xee\x07\x76\x33\xdf\x4c\xc0\x39\x56\xe2\x0f\xed\x8b\xe1\xed\x5f\x76\xb5\xfc\x49\xe0\xa3\xc0\x35\xaa\xcc\xe7\x12\x81\x4e\x92\xd3\x35\xe9\x85\xeb\x48\xbb\x47\x45\x2c\x4f\xff\xb4\xe7\xa9\x81\xf1\xf3\x36\x5f\x1f\xb6\x68\x5c\xc7\xdd\x81\x8b\xfe\xa8\x73\xe2\x74\xc8\xfb\xd0\x84\x39\x88\x7d\xef\xb2\xa6\x82\xe0\xff\x11\x6f\xc2\x18\x34\x60\x32\x11\x0a\x5c\x4d\x5f\x7a\x7c\xa9\x4e\x8a\x44\xa9\xff\x9e\x8f\x62\xfc\x20\xcc\xb0\xd7\xa3\x20\xf0\x51\xa7\xbf\x2e\x18\xfc\x5e\x47\x88\x88\x57\x0c\x55\xfa\x51\x04\x46\x0c\xf0\xce\x22\x71\x3c\xc6\xb0\xc3\xce\x88\x1b\x38\x22\xe8\x09\x9d\x44\x62\x94\x83\x9c\xfb\xc3\x31\xee\x39\xa6\xbd\x2b\x2e\xe3\xb0\x97\xcc\x63\xdc\x5d\xf8\xb0\x93\x77\x96\x08\xa5\x8c\x66\x70\xe4\xf7\xc7\x63\x35\x4e\x9f\xbe\xb1\xca\x7f\x63\x96\x4e\x48\x25\x86\x3f\x6f\x3f\x62\xf5\xcd\xf0\x25\xfa\x9d\x67\xb4\x1e\x73\x90\x27\x05\xb9\x83\x07\x88\x94\x6b\xcf\xfc\xfb\x35\x59\x14\x9f\xf1\xc4\xbf\x90\xe3\x43\x35\xfe\xe0\x8a\xa9\xdb\x81\x05\x77\x1e\xa4\x7b\x4e\x09\xc7\x79\x75\xac\xf0\x40\xf2\x1b\x32\xdf\x64\xce\xb0\x7c\xdc\x86\xbe\x98\xda\x36\xeb\xd2\x75\x34\x3d\xa7\x5f\xbe\x7b\xf1\x35\xf2\xb8\xa0\x2b\xe3\xd2\x55\x4d\xd6\x47\xa1\x7c\x6f\xe4\xc1\x1f\x84\x7b\x08\x52\x75\xb7\x0c\xe6\x4a\xe4\x64\xad\x1d\x6a\xc7\x0f\x43\x68\x79\x81\x55\xf7\xd5\xf7\xfc\x98\x0c\x36\xd5\x19\x6e\xa5\xcb\x53\x38\x9a\x12\x37\x2a\x69\x2c\xb1\x68\x88\xe0\x54\x82\x17\x6a\x10\xd9\x71\xfe\x20\x3e\x1c\xf6\x14\x17\x19\xce\x5e\x94\x62\x81\x5b\xa3\x21\xd4\x72\x44\x19\x07\x4c\x93\x5a\x21\xb0\xfb\x66\xe5\x5a\x41\xd4\x6e\x08\xf1\x25\x0d\x73\x3f\x47\xcd\x1d\x98\xc1\x13\x76\x28\xb5\xc4\x4a\x68\x75\x69\x45\x5e\xa6\x76\xfd\x70\x6f\x9f\xfb\x7e\x84\x10\x5f\xd2\x0f\x6e\x05\xd7\x73\x45\x81\xbb\xa3\x3f\xa4\x71\xeb\xdb\x09\x91\x63\xd3\xb0\x8b\x3e\x72\xd9\x65\xb0\x93\xc3\x39\xac\x18\x48\x26\x7c\xbe\x30\xde\x52\x25\x47\x3c\x56\x26\x84\x07\x71\xd4\x9c\x8c\xae\x7c\x3f\x13\xc0\x3d\x68\x2e\xe9\x40\x03\x17\x4c\x0f\x36\xb9\x2f\x49\xbf\xbc\xb0\x07\xe9\x4b\x79\x83\x66\xde\xbf\x25\x0b\x9c\xc5\x15\x16\xc9\x2f\xdc\x54\x20\xfa\xd9\x4c\x16\x80\xf0\x6e\x10\xbc\xc0\x82\x56\xc7\x95\x39\x66\x0e\x28\xc7\xc4\xc7\x70\xb6\x62\x43\xb9\x2d\xb0\xbe\x33\xdb\x3e\x30\x69\xd6\x79\x5b\x01\x8a\x0f\x92\x43\x07\x54\x8e\x07\xdd\x84\x57\x28\xab\x3b\xaf\x44\x8d\xbb\xe2\xf7\x75\x79\xb3\xce\x11\xcc\x5e\xa5\x67\x16\x2e\xf5\x31\x81\x78\xb2\x5b\xb6\xb8\x22\x6e\x73\xcd\xcc\x22\x20\x05\x54\xf8\x83\x1b\x25\x9b\x1f\x06\xdc\x00\xde\x17\x54\xd1\xa3\xbb\x98\xc2\x57\x74\x00\x6c\xe3\xee\x1e\x80\x2d\x48\xbc\x11\xea\x46\xc0\x02\xee\xea\x88\xac\xf9\xaf\xe8\x08\xf8\xc6\x17\x76\xe4\xc0\x7a\xa1\xef\x48\x15\xc5\xe4\xfa\xbf\xab\x7f\x03\x45\x08\xc4\x19\x3d\x6c\x66\xcc\x00\x5e\x49\xd0\xd4\x26\xbd\x92\x02\xf3\xec\x6c\x36\x5c\x25\x81\x5b\x55\xb0\x52\x02\xdf\x56\xeb\x0b\x1c\xa8\xf4\x0e\x80\xee\x72\xbe\xaa\x9a\xe6\x1d\xaf\x2f\xd4\x7d\x78\x4f\x20\x8e\x31\xc9\xee\xce\x7d\x7b\xab\x92\x0e\x63\x24\x0e\x91\xe9\x3d\x17\x45\xa7\x83\x23\x81\xbc\x4d\xf7\x1b\xe6\xea\x63\xe2\x9e\xd6\xe7\xf5\x6f\xdf\x89\x58\xbe\xe4\x30\x15\x4f\x8e\xf9\xb7\xc6\xd2\xe1\xdb\x63\x77\x3e\x14\x17\x3f\x48\x38\x7c\xa1\xb0\x93\x50\xde\x4b\x13\x11\x97\x3b\xbd\x28\xa5\x1e\x9b\x8c\xf1\x5b\xc2\xc1\x86\x0d\xc5\x9c\x90\x6c\x9a\xba\x12\x1f\xaf\x13\xf9\xaa\xf8\xa1\xb8\xf0\xb6\xdf\x2b\xfe\x21\x4f\x28\x68\x0a\x5f\xee\x4a\xfa\xa6\x47\x6c\xde\x4b\xfe\xfb\x43\xfa\xb0\x48\xfc\xd0\x61\x03\x66\x73\xdb\x42\x2c\x9d\xf2\x1d\xe4\x07\xaf\x94\xe1\xae\x72\x6b\xcf\xae\xf9\x1a\xd0\x4d\x58\xac\x77\x41\xb7\xb5\x93\xa8\x74\xd7\x4d\xb5\x68\x57\xf8\xe0\x79\xc0\xd6\xf2\xb9\xd9\x5a\xf8\xa1\xf1\x82\x1f\x1a\x17\x3b\xe4\x41\x90\x10\x4d\x48\x98\xb1\x75\xcf\x7a\x44\xc9\xf1\x56\xea\xd3\x25\x42\x70\x94\xc4\x81\x40\xa3\x84\x7c\x31\x6a\xc5\xce\x2b\xc2\x34\x73\x42\xf6\x29\xe6\x8e\x1c\xd5\x1e\xbf\xed\x10\x66\x89\xdf\x7d\x94\x24\x77\x3c\x06\x23\x11\x2b\x6f\x98\xb6\x6e\x96\xfc\x98\x21\x6c\xc5\xf1\xf0\x54\x5e\x8f\xeb\xb4\xab\xb0\x51\x15\x88\xce\x13\xa6\xe0\xe8\xb4\xcf\xbb\xb8\x34\xd6\x67\x98\xa0\xf7\x37\x47\x80\xa4\xbf\xe7\x8b\x95\x06\x66\x98\x20\x24\x53\xc3\x1d\x31\x89\x2e\x3e\x05\xd9\xdd\x54\x12\xb9\xf5\x02\x1f\x93\x30\xed\x0e\x36\xc4\x5d\x1d\xe4\xf2\xf5\x72\x0e\x65\x80\xe7\x2f\x1a\x8d\x73\xcc\x77\xcd\xdd\x53\x17\xe9\x29\x96\x63\x77\x67\xa1\x60\x5f\xe4\x28\x79\xfa\xbc\x86\x96\x0c\xfc\xfd\xa7\x37\x48\x5f\xb3\x6e\xb5\xea\x53\x14\xbc\x8a\xde\x79\xc9\x23\x47\xd8\x0b\x3d\xdb\xb7\xec\x2f\xaa\x63\xd0\x4b\x0f\xe1\xaa\xf9\xfa\xae\x82\xff\x33\xbf\xa7\xde\x0c\x3a\x19\xf1\x3c\x03\xb9\xa7\x86\x41\x17\x27\xab\xf8\xfa\x4e\x62\xa7\xad\x97\xb2\xeb\xec\xe9\xe4\x2d\xde\x47\x69\x0b\x55\x5c\xd7\xec\xc0\xf9\xda\x9c\xca\xee\xa9\x72\x5f\xaf\xef\xac\xf3\x2b\x86\xb1\xac\xfa\x6c\xb9\xf0\xdd\xe7\xb7\xa1\xda\x39\x33\x6e\xde\xdc\xcb\x85\x84\x54\xa9\x63\xa3\xe5\x74\xf1\xbb\x10\x8c\x0e\xb1\xb9\x62\xaa\xfa\x7d\x7d\x6b\xcb\xee\xb6\x5e\xb0\xa1\x8e\x9f\xd2\xd2\x03\xf6\xf3\x52\x0e\x4d\x1e\xcd\x28\xed\x59\xae\x21\xc3\x4b\x1c\x45\x77\x8f\xe4\x15\xc1\xc7\x8b\x1c\x37\x04\x7f\xa0\xad\xb8\x7e\x0a\xd6\x8e\xd2\x26\xd9\x32\xb6\x9e\xdc\xd9\xd0\x60\x2c\x01\x5f\x0f\x70\xdb\xa2\x2b\x7d\xf9\x45\x23\x08\xdc\x49\xc2\x61\x30\xa1\x28\x13\x03\xcb\x1b\xbc\x76\x9b\x3e\x66\xd7\x20\x7e\xed\x8b\xfd\x9e\xd4\x9f\x50\x37\x6d\x04\xeb\x76\x06\xb6\x62\xcf\x80\xc2\x76\xef\x98\xa1\x47\x51\x2f\xbe\x6e\x8c\xfc\x08\xc0\x68\x21\x9c\x23\x59\x1f\x05\xf8\x43\xcb\x61\xaa\xe2\x7f\x77\x39\xb4\x41\xaf\x46\x0f\x44\x06\xe2\x01\x02\xaf\x13\xee\xf8\x42\x0b\xe4\x4e\x04\x62\xff\x80\xdf\x21\xbb\xd6\x17\x30\x97\x4d\xdb\x10\xc5\x49\x34\x5d\x7d\xc9\xf1\xb5\xa5\x75\x13\x05\x70\x62\x71\x9b\xed\x34\x3c\x81\x95\x39\x41\x32\x89\x7d\x7c\xb7\xdf\x97\x82\xf0\x64\x65\xd8\x0e\xbd\xd0\xd3\x0b\x48\x53\x56\xea\xd0\x32\x82\x92\x5a\xa6\x99\xf3\xb5\x2b\x0d\xdb\x04\xe0\x53\x4d\x09\x60\x71\xea\xc7\x21\x6a\x89\x02\x76\xdb\x8c\x87\x8a\x5b\xfb\x92\x9c\xbe\x43\x72\x7a\xc9\xc9\xe3\x16\xac\x57\xae\xd8\xa0\x53\xfb\xca\x71\xa0\xc2\x61\x99\x57\x1c\xcf\x70\x08\x6f\x98\x5b\x95\xf9\x76\x84\xb7\x37\x94\x38\xc2\x1a\x20\xc7\x08\x00\xec\x7e\x2c\x84\xa5\xaa\x02\x4a\x74\x58\xe2\x2d\x25\xed\x83\x86\x2f\xce\x10\xbe\x66\x21\x7e\x4f\x09\x95\xa6\x86\xbd\xd2\x93\xba\x51\xaf\x9a\x39\x47\xe1\xe8\x0c\xfa\x54\x7e\x06\x50\xf3\xa6\xe9\x49\x97\x23\x50\x12\x23\xe1\x96\x29\x68\x7a\x69\xe9\x2c\x08\x2f\x3e\x8d\x30\x25\xd0\x63\x54\x09\xf4\x7e\x5c\x6d\xf8\xd5\x04\x6a\xab\xdd\x2d\xfa\x1d\xf1\x1c\xd7\xe0\xc9\x05\xbf\xb6\x70\xe1\x32\x46\x2d\x8e\x4a\x86\x14\x3a\x2c\x3c\xd5\xf2\x82\xdf\xbc\x98\x6c\xfa\x88\x73\xee\x6c\x7b\x54\x36\x6c\x7c\x54\x7c\x6a\xa5\xe0\x05\x61\x66\x4a\xf3\xdd\xe2\x53\xd9\xf3\x95\xf2\x55\x06\x17\x8d\xb0\xae\x33\x03\x4b\x5f\x02\x2c\x7d\x43\x60\xe9\x25\x2c\x6e\x13\xb5\xd2\x3e\xba\x29\xfb\x1c\x2e\x3b\x41\x2d\xaf\x8f\x68\x06\x24\x79\xaa\x14\x2c\x71\x99\xea\x3f\xba\x0a\x59\x24\x0d\x6a\x38\x85\xb1\x4e\x55\xa2\x43\x07\x32\x55\x1b\x07\xca\x95\x0d\x7d\x71\xbb\x58\x8b\x37\xcb\xe7\x9e\xfb\x70\x2e\x29\x01\x2c\x74\x3c\x82\x35\x1e\x09\xaf\x12\x44\xf2\x20\xf0\xcb\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x8c\xa3\x75\x4d\x01\x6e\x73\x59\x4c\x7b\x21\xad\x79\x03\xb4\x96\x87\x70\xda\x68\x27\xa8\x14\xb6\x22\x0a\xb6\xdc\x31\xd2\xd7\xe6\x88\xe6\xe0\xb5\x80\x2b\x46\xf6\xd6\x1c\xa7\x29\x2c\x1e\x4e\xf6\x27\x2a\xfe\x90\xd6\xbd\xf5\x2d\x60\xa2\x57\x40\x9b\x90\x14\x93\x84\x79\x26\x0e\xed\xdb\xf2\x60\x75\x54\xfb\xad\xa6\xf9\x0d\x94\xfe\x6a\x9a\x45\x84\x72\x51\xac\x35\x1d\xae\xc9\x6d\xb9\x64\x43\x85\x5c\xe7\x46\xe4\x25\xdc\x3e\x39\x47\xb2\x69\x37\xe1\x7d\xa2\xcb\x06\xa3\x0c\x06\x16\xbb\xf0\xd9\x30\xef\x8f\x4a\x35\xd3\x3a\xc2\xf8\xa8\x3a\x32\xa8\x2e\xe6\xc3\x16\x9b\x1d\xcc\x97\x4d\x20\xe5\x91\x11\x39\xd8\x5c\x87\xa5\xa1\x57\x9a\xa2\x36\xa8\xe1\x1d\x74\xce\x00\xcb\xee\xc9\x62\x67\xea\xc6\x61\x01\x9b\x5c\xe4\x12\x04\x4c\xed\x70\x52\xdd\xd5\xf6\x24\xb2\x91\xc1\xbe\xe7\xc2\xed\x9d\xb2\x2f\x7c\x31\xdc\xe3\x22\xa0\x14\x78\xa9\xc4\x34\xb2\xc9\x3f\xeb\x8b\x1b\xfe\x49\x9f\x13\x7d\xbc\x27\xb8\xab\x79\x64\xb9\xef\xf8\x1d\x9f\x7d\x65\xcd\xc6\xf7\xf8\x82\x18\xcc\xd3\x6f\xf1\xa2\x1c\xad\x87\xe5\xba\x99\xe7\xec\x92\x22\x6f\x25\xe1\x29\xa0\x27\x5a\x47\xd5\x65\x21\x51\x0e\x9f\x59\xcb\x07\x44\xca\xe0\x4a\xa7\x11\x28\x22\x64\x70\x86\x90\x59\xd3\x06\x47\xf9\x46\xb8\x38\x34\xe7\x8b\x20\x99\xfa\x42\x8f\x6a\x08\xca\xc0\x42\x2c\x0b\x8b\x65\x37\x89\xcc\x13\xd6\x23\xef\xd9\x64\x46\x31\xf7\xd5\xb5\xf7\xf9\x9b\xc9\x79\xf7\x46\x7a\x9b\x76\xf7\x9c\x3c\xa0\xef\x3c\x03\x8e\x27\x18\x01\x24\xf9\x2e\xaf\x37\x1d\x06\x3d\x95\xf0\x92\xdc\x5f\x7f\x1b\xb7\x61\xf1\x92\x05\x57\x44\x51\x67\x3d\x29\xbc\x75\xee\x02\x45\x58\x9c\xcb\x12\x7e\xfe\x3e\x0c\x05\xf1\x75\x35\x2c\x86\x1d\xe0\x40\x27\xe2\x08\xb3\xa7\x7d\x7f\xd0\x89\x90\x66\x61\xf3\xa1\x89\x2b\xee\x80\x1c\xc6\x35\x6d\xe8\xee\x14\x5b\x28\xa3\xae\x4c\x78\x34\x1d\x0e\x9f\xfe\xdc\xe3\x0e\x4b\xb5\xca\x85\xd3\x01\x8b\x8e\x4e\xa8\x23\x56\x8d\x12\x21\x0b\x46\x42\xec\xab\x83\x24\x7f\x7a\x63\x07\x37\x62\x47\x05\xf7\x1d\xb6\x17\xac\xc9\xa8\x35\x29\x31\x7e\x53\x30\xee\x82\xa4\x8c\xcf\x77\x25\x5d\x4d\x80\xa9\xbd\x11\xa6\xf6\xdc\x19\xec\x80\x22\x82\xb5\x96\x36\x7c\x6e\x06\xe6\x5d\x65\x96\x83\x2e\x0f\xd8\x65\xd4\x6d\x29\x25\xa1\x29\xed\x6e\xb6\x72\x64\xcd\x0a\x7a\x2f\x29\xe1\x5b\x0e\x92\x52\xd6\xf6\x22\xbc\x04\xee\x29\x34\x7d\xec\x59\x15\x74\x52\xab\x19\x74\x2e\xa8\x15\x50\xd3\x1c\x3f\xe8\xcd\xf0\xb2\x81\xa4\xe2\x5e\x2c\xdf\x8c\xe8\x7a\x4d\xd9\xca\x0b\x0d\x67\xfc\x42\x83\xa4\xc0\xac\x56\xc0\xed\x97\xad\x68\xc7\xef\xc3\xf4\xe0\xd9\x7e\xe4\xba\x07\xfb\x27\x60\x02\xbf\xa7\xbc\xe5\x07\x22\x7e\xd0\xa0\xac\xc1\xf3\xfd\x7c\x61\xb2\xc4\x1d\xae\xed\x9a\xfb\xcb\xaf\x8e\xe1\x44\x8c\xcf\x07\x76\x08\xc8\xc8\xef\x6b\xc3\x15\x80\xd8\xcc\x52\x3c\xd1\xe5\x45\x58\x45\x26\xcb\x27\x1a\x6b\x1a\x72\x89\x9e\x7f\xbc\x64\x27\xc6\x00\x04\x23\x02\x80\x1b\x51\xde\x4b\x9c\xa4\x72\xea\x6e\x56\xea\x72\xf7\x42\x0f\x1f\x52\xc1\xa2\x77\x3b\x29\xf7\x9e\xc3\xca\x3f\xad\x10\x41\x92\xb9\x4f\xb9\x2e\xf4\xa2\x61\x14\x0f\x6a\x36\x6a\xc1\x1c\xa0\x10\x0a\xf0\x9e\xde\x74\x3b\xeb\xfa\xc5\xee\xbe\x9e\xeb\x73\xf3\xf2\x8a\xfd\x5e\xb0\x8e\xd5\x34\x7d\xa1\xf8\x55\xc9\x86\x5d\x9f\xc5\x53\xa5\x74\x21\x77\x28\x3e\x1b\xdd\x48\x58\x42\x43\xb2\x84\x25\xb4\x9a\x71\xe6\xe6\x00\xe4\x24\x3e\x82\xd8\xf0\xfe\x99\x75\x39\x33\x1b\xda\x29\x8a\xf4\xe2\x50\x73\xba\x4d\xbf\xb5\x17\xf0\x2e\x4e\x2e\xcf\xee\x58\x19\x0c\xaa\x14\x0e\xc8\x80\xcc\x39\x4b\x49\x1d\x59\x01\xbd\xdb\x2d\x7d\x59\x31\x6a\x35\x81\xd7\x9b\x2c\x9d\x6e\x1a\xee\x2e\x21\x4a\x9e\x7b\xa6\x1d\x9f\xa3\x26\xe3\x6e\x8b\x94\x99\xa5\x27\x24\x68\x54\xec\x44\x69\xad\xa9\x23\xdf\x9c\x68\xa5\xdc\xe6\xad\xbd\xbe\x82\xa7\xbf\xd2\x47\x07\x8f\x66\x11\x2f\xc9\x7a\x3c\xac\xa4\x71\xc0\x2e\xdf\x5d\xd0\xe7\xa2\xbd\x15\x2f\x01\x1d\xe9\xa7\x6a\xcb\x60\x19\x5f\x8d\x12\x49\x97\x52\x00\xfb\x0b\x52\x6c\xe1\xf3\x71\x72\xd9\x5e\x73\x24\x44\xa5\x9f\xb3\xc3\x13\x58\x71\x28\x29\x64\x25\xda\x34\xc2\x1e\x9b\x1c\xed\x3b\x41\xd3\xd1\x44\x72\xb4\xb1\xc3\x6a\x8b\xfd\x84\xfe\x58\x3d\x41\x44\xd6\xa1\xb0\x2b\x47\xfe\x86\xe9\x91\xe0\x15\x43\x07\xf2\x97\x67\xd4\x43\xf9\x3c\x2e\x72\xdf\x35\x9b\x59\xc4\x9a\xc3\x7d\x38\xae\xe7\x0b\x5d\xe7\xc2\xca\x02\x99\xe9\xae\x41\x4f\x46\x1b\x8a\x4b\x44\x90\x99\xec\x16\xf6\x5a\x70\x5c\xb5\xf3\x66\x18\x97\x88\xde\x0d\x1e\xe1\x75\xc2\x25\xed\x0e\x37\x34\xa5\x38\x08\x52\x95\xbb\x65\xb5\xa7\x6a\x11\xa9\x00\x43\x04\x0e\x3f\x08\x3d\x34\xd4\x03\x60\x2f\xb5\xf9\x80\x6a\x1c\x2b\x5f\x0e\x7a\x83\xb8\x61\x72\x98\x86\x8d\x52\xc5\xa8\x60\x98\x03\x31\x2a\xee\xc6\x7d\xd2\x94\x58\x8d\xcd\xb4\xe9\x0e\x7e\xd5\xb4\x19\x9f\xff\x2a\x6c\xbe\xdd\xba\xdd\x38\x78\x99\x1a\xeb\x27\x00\xb9\x16\xce\x17\x40\xfc\xa2\x01\xdc\x02\x20\xb9\xfa\x1b\x02\xf1\x0d\x60\x05\x18\xee\xe8\x9a\xdc\x5c\x5d\xf1\xfb\x80\xfc\x90\x86\x46\xd3\xe4\x9f\x1c\x58\xd8\xb5\xaf\x17\xda\x33\xb6\xb5\xc2\x76\xc9\x63\x3a\xd6\x5b\xee\xe7\x48\x64\x65\xd1\xc0\xdb\x1d\xa6\x92\xfb\x7b\xbe\xab\x45\x0d\x0e\xb2\xb4\x21\xce\x0a\x1b\x81\x50\xd8\x36\x4d\x6f\x0f\x64\x06\x12\xe1\x39\x25\x93\xa8\xd0\xaf\x1c\x82\xf9\x68\x79\x91\xc9\x3b\x7d\x41\x19\x1c\x6c\x2f\x70\xab\x68\x5c\x88\xfa\x3d\x2e\x41\xfd\xde\x03\x2e\xee\x53\x26\x4f\x5d\xe0\x97\xec\x16\xae\xc7\x88\xf9\x27\xcb\xc2\x06\x2c\x69\x43\xba\x01\x0e\x5c\xc5\xdd\x2a\x20\x8d\x8b\x37\xd3\x74\xc1\x50\x63\x01\x30\xc8\x64\xe9\xb5\xcf\x34\x32\x66\xa6\xcf\x98\x8a\x30\xdb\xa7\x2f\x35\x60\xa6\x50\x5e\x58\x6c\x0f\x19\x70\x56\x28\xcb\x05\xc9\x6b\xb8\x68\x58\xee\x3b\xfc\x1a\x01\x45\x33\x37\x42\x25\x01\xf0\xcd\x3d\x84\xd8\x50\xa0\x3f\x97\xb7\x12\x5a\x63\x02\x70\xc9\xcd\x39\x30\xfa\x95\x3e\x7e\x44\x59\x4f\x25\xeb\xd1\x93\x51\x19\x56\x90\x49\xb3\x97\xab\x92\xd5\x3f\x4a\x79\x82\x80\x85\x01\xc9\x40\x6b\x17\x7c\x4a\x72\xc4\x19\x77\x15\xed\x26\x4a\x75\x6e\xee\x8a\xb9\x9f\xba\x63\xf3\x64\x98\x9c\x3f\x82\x0c\x25\x7a\x9f\x1a\xca\xd0\x3e\x35\xd4\x07\x7c\xaa\x52\x55\xb8\x84\x28\xb5\xeb\xd6\xb6\x8a\x2e\x2e\xde\xc5\x4b\xd5\xe7\x06\xaf\x81\xb3\xb4\xf8\x80\x1f\x47\xe2\x97\x16\x1e\xa4\x7c\x35\xf7\x49\x50\x42\x51\x1d\x22\x55\x53\x87\x75\x74\x7f\x5f\x57\x7d\xf9\xfd\x03\x78\x27\x3d\xe8\xab\x62\xfe\xe0\x49\xc8\xf4\x2a\xdc\x6b\x0b\xb8\x5e\xb5\xd8\x83\x1e\x67\x50\x63\x7b\xd1\x3a\x08\x51\x79\x2e\x2f\x28\xa9\x8c\xa9\x5e\xd5\x31\x66\x8d\x1d\x79\x59\xc2\x31\xa3\x50\x8e\xb0\x7e\xf1\x15\xc9\x36\xc8\xf0\x51\x9e\x71\xe9\xf2\xdc\xaa\x79\x89\x64\xdf\x41\x79\xc9\xc9\x5e\x76\xd2\xdb\x62\xd6\x3d\x3c\xcc\xf4\xb6\x96\x4b\x96\x5a\x04\x23\x71\x06\xc2\x13\xee\x7f\x68\x13\x1c\xf6\x7f\x44\xac\x36\x8a\xbb\x89\x56\xc5\xa9\x45\xbe\x25\xc9\x3a\xf7\x82\xd4\x91\x24\xb8\xfd\x40\x82\x04\xf0\x2d\xc3\x6c\xad\xa7\xfb\x12\x48\x00\x77\x0d\x69\x1d\x5f\x97\x9d\x1f\x2c\x09\x26\x5e\xf1\x8a\x0a\x9d\x73\x9e\x53\xd4\x26\x0a\x5b\x7c\x11\x37\xf1\x76\x7f\x7f\x72\xe2\x11\x26\x27\x5b\x97\xf5\x12\x44\xf7\x17\xfe\x49\x22\x30\xff\x74\x08\x92\x8b\xf9\x30\x29\xf3\x05\xb9\xe7\x76\x55\x1f\x96\x65\x4a\x71\x53\x7b\xaf\xac\x1a\xcc\x4c\xb8\x21\x9f\xe0\xf7\x74\x07\x15\x76\x2f\xef\xd5\x7c\x9b\x45\x5a\x21\x4d\x30\x77\x6f\x7e\x7e\x77\x3a\x80\x9c\x58\xda\x9a\x33\xc1\x0a\x34\x67\x62\xe1\xc3\x0e\x0d\x0e\xaa\x5a\x18\x2c\xd0\x60\xa1\x58\x2b\x06\xe7\x40\x32\xf7\x40\xf4\x2b\x2e\xc0\xce\xa3\x25\x1e\x85\xef\x58\xd5\xd0\x24\x16\x6c\xf1\x5e\xf4\xa8\x74\xa7\xcf\xe2\x79\x70\xff\x4e\x80\x46\xbf\xe1\xc2\x33\x27\x48\x60\x1f\x74\x28\x86\xf7\xcc\x34\x86\x05\x72\x2f\x82\xe5\xe8\xc8\x7b\xcd\xe1\xb0\x68\xb2\x22\x81\xcc\x0b\xa2\x7c\xb9\x5a\x0a\xd0\x43\xf9\x1d\x03\x05\x4f\xd7\x0b\x94\xbd\x5c\x3f\x6a\xb5\x0e\xdb\xac\xc5\x7d\xc2\xcf\x81\xf8\x7c\x06\x3c\x4e\x6e\x55\x4d\x6f\xe1\x0a\xcd\x57\x68\x2b\x73\xae\x14\xf8\x33\x4d\x32\x50\x03\xf1\x35\x1b\x84\x56\xed\xba\x49\x0b\xab\x72\x1a\xd7\x11\x7e\x45\xa4\xa5\xec\x81\xd7\xb3\xc0\x7a\x0e\xc1\xd6\x6b\x29\x61\xc0\xcb\x85\x43\x8c\x9d\x1a\xbd\x3e\xf2\x8f\xfa\xe3\x80\x69\x30\x98\x75\x75\x55\xba\xe3\x28\x1d\xcd\x3b\x4a\x8b\x80\x57\x7d\xbf\xed\x2c\x18\x0c\x1e\x5e\x4f\x4f\xe9\xc7\x60\x10\x61\x55\x3a\x92\x51\x4d\xdb\x0a\x47\x84\x01\x5e\x24\x61\x1a\xe3\x06\xad\x7b\x51\x00\xae\x9b\xd1\x90\x07\x2f\x5b\xbd\xd3\xe4\x57\xf0\x6b\x4d\x0a\xc5\x46\xd7\x3a\x8b\x8b\x93\x2d\x33\x94\xee\xc9\x0c\x83\x3d\xd9\x3c\x39\x67\x8b\x56\x62\x20\xf2\x9f\x4b\x76\xa3\x73\x39\x21\x6f\xb0\xb4\x8e\x68\xaf\xd8\xc9\x95\x74\xfd\xf4\xf0\xfe\x91\x4d\x41\x93\x65\x4c\x3c\xcc\x19\x03\x94\x9f\xcb\xc5\x2e\xf0\x1d\xf8\x59\x7e\xeb\x61\x9d\xaf\xa6\xb1\xdb\x1e\xbb\x1a\x8f\xb2\x9e\x49\x4a\x00\x33\xf5\x36\x8c\x75\x1d\xc2\xa7\x09\xa1\x7b\xdb\x77\xcd\xc3\x00\xc3\x50\xe6\x0d\x6b\x4e\xa6\xfa\xc4\xc2\x5a\xae\xd5\x0e\x1c\x64\x0d\x16\xd1\x04\x0a\xdc\x6e\xcf\xdc\x6d\x77\x84\x15\x10\x48\xbd\xf9\xee\xe0\xd5\xcd\x53\x37\x42\x3e\x40\x71\xad\x96\xec\x27\xc5\x47\xbb\xa0\x6a\x3c\xc0\x7b\xb8\xf6\x25\x69\xc8\x21\xc4\xb1\xfe\x8c\x60\xaa\x5a\xd4\x01\xc9\x92\x13\xa7\xb7\x92\xa6\x55\x06\x5e\xbf\xa6\x52\xbb\x07\x7e\x9d\xde\x7e\xa1\x29\x43\x48\x6b\x19\x40\xec\x97\x33\xc4\x46\x28\x6d\x86\x69\x08\x77\x1b\xb8\x66\x07\x63\x1a\x4e\xa3\x65\x35\x5b\x66\xe0\xdb\xd9\xa8\xb7\x4e\x2f\xd6\x19\x31\x1f\xe6\xfb\x7c\xe1\x92\xdf\x04\xf7\x1f\xed\x2e\xae\x9e\xd9\xd8\x79\x67\xe0\x63\x14\x05\xd2\x79\x28\x4f\xd5\xb6\x65\x1d\xc4\x92\x97\x5f\xc5\xe8\xc9\x7b\x7b\x0a\xee\x5b\xff\x14\x1c\xdf\x53\xd9\xfb\x00\xae\x7b\x90\x14\xb5\xb2\xe3\xbd\x44\xf4\x1b\x3c\xa7\xd7\xb5\x8b\x67\xc3\xb2\x7c\x8e\x13\x83\x71\xe6\x7f\x58\xc5\x32\x46\x7b\xba\xf5\x77\x7d\x2e\x55\x7e\x07\xe3\x7b\x26\x87\x0d\xcf\x64\xa4\x7f\x0a\xde\x33\x8d\xdf\x9a\xb5\x57\x5b\xbf\xa2\x82\xc1\x13\xb3\xfe\xcd\xd6\xaf\xe9\x84\x0c\x63\xf8\x50\xa1\xcd\x59\xf4\xc8\x57\x58\xa1\xbe\x3f\xb8\x67\x50\xa3\xea\x64\x6c\x5f\x5d\x9b\x8e\x70\x58\x9d\x1b\xe8\xd7\x77\x6f\xf0\xe2\x6e\xf0\xaa\x70\x53\x7f\x0d\xde\x26\x1f\x63\xfb\x5d\x1f\x8d\xfb\xea\x6e\xb9\x58\xc3\x4a\xa7\xf6\x7b\xb0\x6a\x84\xf6\xa7\x09\xdf\x2f\x24\x04\x20\xe3\x90\x04\x9e\xde\xe9\x47\xd8\x0d\x50\x7b\xf8\xb8\xee\x78\x45\x0c\xd6\x90\x3d\xc9\xa9\xaf\x27\x82\xff\x4a\x72\xd5\xe9\xe3\x57\x62\x87\x7b\xe8\x9e\x74\x24\x7e\xd0\x37\xcd\xfa\x63\x92\x2f\x79\x48\xf4\x7f\xc2\x2b\x58\x6f\x2b\x62\x31\xd3\x67\x22\x3f\xf9\xeb\x5b\xae\xf9\x5b\x8d\xa5\xc9\x91\xdb\xbf\xdd\x20\x81\x94\x77\xde\xc3\x38\x61\x85\x84\x15\x07\xd8\xe2\x9f\x05\x7e\x16\xf9\x2d\x7e\xdd\xe0\xd7\x4d\x59\x7e\x92\xc2\x60\xce\x54\xbc\xa9\x49\x46\xe5\x94\x5b\xfc\xbe\xe5\xc7\xca\x10\x17\x7e\x81\x98\x9d\x78\x13\xce\x7e\xe0\xe5\xb7\x1a\x67\x18\x48\xb7\x1f\x94\xce\xad\x6a\xaa\x7c\x3e\x64\x8f\xb1\x5b\x4d\xc2\x17\x3f\x55\x44\xcd\x6b\x92\x7c\x3e\xc4\x9e\xda\xaf\xac\x42\xf9\xa6\x54\xee\x87\x26\xca\x27\xa5\xb5\xf9\x4d\xe6\xfb\xa5\x5f\x48\xf5\xbd\xd2\x2f\x42\x6f\xd1\x36\x5b\x7e\xa9\xe3\x63\x62\xcf\x35\xf9\x77\x9a\x8e\x29\xcf\x9c\x36\x39\x98\x3c\x1b\x4c\xf1\x1e\x0b\x1f\x3a\x6d\x39\xfe\xc4\x2c\xb1\xe7\xd9\xaa\x7a\xbb\x73\x36\x30\xff\x34\xa0\x80\xf9\x88\x9d\x72\x65\x8d\xdf\x77\x4f\x60\x61\xa3\xd9\xcd\xe6\x10\x98\x60\x5b\x63\x2d\x37\x7d\xfc\xcf\x7f\x02\x9e\xbe\xff\xf5\xaf\xf4\xe4\xe5\x93\xb4\xfc\xcc\xc1\xb3\xbb\x74\xa3\x7e\x19\x06\x46\xbf\x5f\x45\x90\x1c\x2d\x03\x37\x89\xd4\x87\x40\x6e\x12\xa1\xf9\xe4\xff\x05\x00\x00\xff\xff\x91\x52\x90\xad\x8b\xc6\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4337,7 +4337,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 50813, mode: os.FileMode(420), modTime: time.Unix(1457217399, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 50827, mode: os.FileMode(420), modTime: time.Unix(1457227639, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/middleware/context.go b/modules/middleware/context.go index cd11c08b15..cee5d10032 100644 --- a/modules/middleware/context.go +++ b/modules/middleware/context.go @@ -84,12 +84,12 @@ func (r *RepoContext) IsAdmin() bool { return r.AccessMode >= models.ACCESS_MODE_ADMIN } -// IsPusher returns true if current user has write or higher access of repository. -func (r *RepoContext) IsPusher() bool { +// IsWriter returns true if current user has write or higher access of repository. +func (r *RepoContext) IsWriter() bool { return r.AccessMode >= models.ACCESS_MODE_WRITE } -// Return if the current user has read access for this repository +// HasAccess returns true if the current user has at least read access for this repository func (r *RepoContext) HasAccess() bool { return r.AccessMode >= models.ACCESS_MODE_READ } diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go index 7c99d2d0c1..3e1835f5c9 100644 --- a/modules/middleware/repo.go +++ b/modules/middleware/repo.go @@ -140,7 +140,7 @@ func RepoAssignment(args ...bool) macaron.Handler { ctx.Data["Owner"] = ctx.Repo.Repository.Owner ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner() ctx.Data["IsRepositoryAdmin"] = ctx.Repo.IsAdmin() - ctx.Data["IsRepositoryPusher"] = ctx.Repo.IsPusher() + ctx.Data["IsRepositoryWriter"] = ctx.Repo.IsWriter() if repo.IsFork { RetrieveBaseRepo(ctx, repo) @@ -150,7 +150,7 @@ func RepoAssignment(args ...bool) macaron.Handler { } // People who have push access and propose a new pull request. - if ctx.Repo.IsPusher() { + if ctx.Repo.IsWriter() { // Pull request is allowed if this is a fork repository // and base repository accepts pull requests. if repo.BaseRepo != nil { @@ -336,16 +336,16 @@ func RepoRef() macaron.Handler { func RequireRepoAdmin() macaron.Handler { return func(ctx *Context) { - if !ctx.Repo.IsAdmin() { + if !ctx.IsSigned || (!ctx.Repo.IsAdmin() && !ctx.User.IsAdmin) { ctx.Handle(404, ctx.Req.RequestURI, nil) return } } } -func RequireRepoPusher() macaron.Handler { +func RequireRepoWriter() macaron.Handler { return func(ctx *Context) { - if !ctx.Repo.IsPusher() { + if !ctx.IsSigned || (!ctx.Repo.IsWriter() && !ctx.User.IsAdmin) { ctx.Handle(404, ctx.Req.RequestURI, nil) return } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 5c7615054c..02ccd2f9db 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -273,7 +273,7 @@ func RetrieveRepoMilestonesAndAssignees(ctx *middleware.Context, repo *models.Re } func RetrieveRepoMetas(ctx *middleware.Context, repo *models.Repository) []*models.Label { - if !ctx.Repo.IsAdmin() { + if !ctx.Repo.IsWriter() { return nil } @@ -356,7 +356,7 @@ func ValidateRepoMetas(ctx *middleware.Context, form auth.CreateIssueForm) ([]in return nil, 0, 0 } - if !ctx.Repo.IsAdmin() { + if !ctx.Repo.IsWriter() { return nil, 0, 0 } @@ -624,7 +624,7 @@ func ViewIssue(ctx *middleware.Context) { ctx.Data["Labels"] = labels // Check milestone and assignee. - if ctx.Repo.IsAdmin() { + if ctx.Repo.IsWriter() { RetrieveRepoMilestonesAndAssignees(ctx, repo) if ctx.Written() { return @@ -664,8 +664,8 @@ func ViewIssue(ctx *middleware.Context) { if repo.IsOwnedBy(comment.PosterID) || (repo.Owner.IsOrganization() && repo.Owner.IsOwnedBy(comment.PosterID)) { comment.ShowTag = models.COMMENT_TAG_OWNER - } else if comment.Poster.IsAdminOfRepo(repo) { - comment.ShowTag = models.COMMENT_TAG_ADMIN + } else if comment.Poster.IsWriterOfRepo(repo) { + comment.ShowTag = models.COMMENT_TAG_WRITER } else if comment.PosterID == issue.PosterID { comment.ShowTag = models.COMMENT_TAG_POSTER } @@ -688,7 +688,7 @@ func ViewIssue(ctx *middleware.Context) { ctx.Data["Participants"] = participants ctx.Data["NumParticipants"] = len(participants) ctx.Data["Issue"] = issue - ctx.Data["IsIssueOwner"] = ctx.Repo.IsAdmin() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id)) + ctx.Data["IsIssueOwner"] = ctx.Repo.IsWriter() || (ctx.IsSigned && (issue.IsPoster(ctx.User.Id) || ctx.User.IsAdmin)) ctx.Data["SignInLink"] = setting.AppSubUrl + "/user/login" ctx.Data["RequireHighlightJS"] = true @@ -715,7 +715,7 @@ func UpdateIssueTitle(ctx *middleware.Context) { return } - if !ctx.IsSigned || (ctx.User.Id != issue.PosterID && !ctx.Repo.IsAdmin()) { + if !ctx.IsSigned || (ctx.User.Id != issue.PosterID && !ctx.Repo.IsWriter() && !ctx.User.IsAdmin) { ctx.Error(403) return } @@ -742,7 +742,7 @@ func UpdateIssueContent(ctx *middleware.Context) { return } - if !ctx.IsSigned || (ctx.User.Id != issue.PosterID && !ctx.Repo.IsAdmin()) { + if !ctx.IsSigned || (ctx.User.Id != issue.PosterID && !ctx.Repo.IsWriter() && !ctx.User.IsAdmin) { ctx.Error(403) return } @@ -883,7 +883,7 @@ func NewComment(ctx *middleware.Context, form auth.CreateCommentForm) { var comment *models.Comment defer func() { // Check if issue admin/poster changes the status of issue. - if (ctx.Repo.IsAdmin() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))) && + if (ctx.Repo.IsWriter() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))) && (form.Status == "reopen" || form.Status == "close") && !(issue.IsPull && issue.HasMerged) { diff --git a/routers/repo/pull.go b/routers/repo/pull.go index a5eec2a5bd..c9d92297f6 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -490,7 +490,7 @@ func ParseCompareInfo(ctx *middleware.Context) (*models.User, *models.Repository } } - if !ctx.User.CanWriteTo(headRepo) && !ctx.User.IsAdmin { + if !ctx.User.IsWriterOfRepo(headRepo) && !ctx.User.IsAdmin { log.Trace("ParseCompareInfo[%d]: does not have write access or site admin", baseRepo.ID) ctx.Handle(404, "ParseCompareInfo", nil) return nil, nil, nil, nil, "", "" diff --git a/routers/repo/setting.go b/routers/repo/setting.go index e6b3580a1c..cf6f6a11c7 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -142,6 +142,10 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { ctx.Redirect(ctx.Repo.RepoLink + "/settings") case "convert": + if !ctx.Repo.IsOwner() { + ctx.Error(404) + return + } if repo.Name != form.RepoName { ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil) return @@ -172,6 +176,10 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { ctx.Redirect(setting.AppSubUrl + "/" + ctx.Repo.Owner.Name + "/" + repo.Name) case "transfer": + if !ctx.Repo.IsOwner() { + ctx.Error(404) + return + } if repo.Name != form.RepoName { ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil) return @@ -205,7 +213,12 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { log.Trace("Repository transfered: %s/%s -> %s", ctx.Repo.Owner.Name, repo.Name, newOwner) ctx.Flash.Success(ctx.Tr("repo.settings.transfer_succeed")) ctx.Redirect(setting.AppSubUrl + "/" + newOwner + "/" + repo.Name) + case "delete": + if !ctx.Repo.IsOwner() { + ctx.Error(404) + return + } if repo.Name != form.RepoName { ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil) return @@ -226,7 +239,12 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success")) ctx.Redirect(ctx.Repo.Owner.DashboardLink()) + case "delete-wiki": + if !ctx.Repo.IsOwner() { + ctx.Error(404) + return + } if repo.Name != form.RepoName { ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil) return diff --git a/templates/.VERSION b/templates/.VERSION index 505aa1c97e..45a33980c6 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.8.58.0305 \ No newline at end of file +0.8.59.0305 \ No newline at end of file diff --git a/templates/repo/issue/labels.tmpl b/templates/repo/issue/labels.tmpl index 7fef4390c8..1edb15bccf 100644 --- a/templates/repo/issue/labels.tmpl +++ b/templates/repo/issue/labels.tmpl @@ -4,7 +4,7 @@
-{{if .IsRepositoryAdmin}} +{{if .IsRepositoryWriter}}