diff --git a/README.md b/README.md index e9efe3a46..075b9287b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Gogs [![Build Status](https://travis-ci.org/gogits/gogs.svg?branch=master)](https://travis-ci.org/gogits/gogs) [![Build status](https://ci.appveyor.com/api/projects/status/b9uu5ejl933e2wlt/branch/master?svg=true)](https://ci.appveyor.com/project/Unknwon/gogs/branch/master) [![Crowdin](https://d322cqt584bo4o.cloudfront.net/gogs/localized.svg)](https://crowdin.com/project/gogs) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/gogits/gogs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +Gogs [![Build Status](https://travis-ci.org/gogits/gogs.svg?branch=master)](https://travis-ci.org/gogits/gogs) [![Build status](https://ci.appveyor.com/api/projects/status/b9uu5ejl933e2wlt/branch/master?svg=true)](https://ci.appveyor.com/project/Unknwon/gogs/branch/master) [![Crowdin](https://d322cqt584bo4o.cloudfront.net/gogs/localized.svg)](https://crowdin.com/project/gogs) [![Sourcegraph](https://sourcegraph.com/github.com/gogits/gogs/-/badge.svg)](https://sourcegraph.com/github.com/gogits/gogs?badge) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/gogits/gogs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ===================== ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true) @@ -43,7 +43,7 @@ The goal of this project is to make the easiest, fastest, and most painless way - Add/Remove repository collaborators - Repository/Organization webhooks (including Slack) - Repository Git hooks/deploy keys -- Repository issues, pull requests and wiki +- Repository issues, pull requests, wiki and protected branches - Migrate and mirror repository and its wiki - Web editor for repository files and wiki - Jupyter Notebook diff --git a/README_ZH.md b/README_ZH.md index 731c5b4a8..4c4bf7302 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -24,7 +24,7 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自 - 支持添加和删除仓库协作者 - 支持仓库和组织级别 Web 钩子(包括 Slack 集成) - 支持仓库 Git 钩子和部署密钥 -- 支持仓库工单(Issue)、合并请求(Pull Request)以及 Wiki +- 支持仓库工单(Issue)、合并请求(Pull Request)、Wiki 和保护分支 - 支持迁移和镜像仓库以及它的 Wiki - 支持在线编辑仓库文件和 Wiki - 支持自定义源的 Gravatar 和 Federated Avatar diff --git a/cmd/hook.go b/cmd/hook.go index cb8b5112f..c65b76e2e 100644 --- a/cmd/hook.go +++ b/cmd/hook.go @@ -8,6 +8,7 @@ import ( "bufio" "bytes" "crypto/tls" + "fmt" "os" "os/exec" "path/filepath" @@ -64,13 +65,58 @@ func runHookPreReceive(c *cli.Context) error { if len(os.Getenv("SSH_ORIGINAL_COMMAND")) == 0 { return nil } - setup(c, "hooks/pre-receive.log", false) + setup(c, "hooks/pre-receive.log", true) + + isWiki := strings.Contains(os.Getenv(http.ENV_REPO_CUSTOM_HOOKS_PATH), ".wiki.git/") buf := bytes.NewBuffer(nil) scanner := bufio.NewScanner(os.Stdin) for scanner.Scan() { buf.Write(scanner.Bytes()) buf.WriteByte('\n') + + if isWiki { + continue + } + + fields := bytes.Fields(scanner.Bytes()) + if len(fields) != 3 { + continue + } + oldCommitID := string(fields[0]) + newCommitID := string(fields[1]) + branchName := strings.TrimPrefix(string(fields[2]), git.BRANCH_PREFIX) + + // Branch protection + repoID := com.StrTo(os.Getenv(http.ENV_REPO_ID)).MustInt64() + protectBranch, err := models.GetProtectBranchOfRepoByName(repoID, branchName) + if err != nil { + if models.IsErrBranchNotExist(err) { + continue + } + fail("Internal error", "GetProtectBranchOfRepoByName [repo_id: %d, branch: %s]: %v", repoID, branchName, err) + } + if !protectBranch.Protected { + continue + } + + // Check if branch allows direct push + if protectBranch.RequirePullRequest { + fail(fmt.Sprintf("Branch '%s' is protected and commits must be merged through pull request", branchName), "") + } + + // check and deletion + if newCommitID == git.EMPTY_SHA { + fail(fmt.Sprintf("Branch '%s' is protected from deletion", branchName), "") + } + + // Check force push + output, err := git.NewCommand("rev-list", oldCommitID, "^"+newCommitID).Run() + if err != nil { + fail("Internal error", "Fail to detect force push: %v", err) + } else if len(output) > 0 { + fail(fmt.Sprintf("Branch '%s' is protected from force push", branchName), "") + } } customHooksPath := filepath.Join(os.Getenv(http.ENV_REPO_CUSTOM_HOOKS_PATH), "pre-receive") diff --git a/cmd/serv.go b/cmd/serv.go index 57a674e56..3bd23ff9f 100644 --- a/cmd/serv.go +++ b/cmd/serv.go @@ -175,7 +175,7 @@ func runServ(c *cli.Context) error { // Prohibit push to mirror repositories. if requestMode > models.ACCESS_MODE_READ && repo.IsMirror { - fail("mirror repository is read-only", "") + fail("Mirror repository is read-only", "") } // Allow anonymous (user is nil) clone for public repositories. @@ -251,7 +251,14 @@ func runServ(c *cli.Context) error { gitCmd = exec.Command(verb, repoFullName) } if requestMode == models.ACCESS_MODE_WRITE { - gitCmd.Env = append(os.Environ(), http.ComposeHookEnvs(repo.RepoPath(), owner.Name, owner.Salt, repo.Name, user)...) + gitCmd.Env = append(os.Environ(), http.ComposeHookEnvs(http.ComposeHookEnvsOptions{ + AuthUser: user, + OwnerName: owner.Name, + OwnerSalt: owner.Salt, + RepoID: repo.ID, + RepoName: repo.Name, + RepoPath: repo.RepoPath(), + })...) } gitCmd.Dir = setting.RepoRootPath gitCmd.Stdout = os.Stdout diff --git a/cmd/web.go b/cmd/web.go index ea7d155fe..37c497e5b 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -435,10 +435,21 @@ func runWeb(ctx *cli.Context) error { m.Combo("").Get(repo.Settings). Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost) m.Group("/collaboration", func() { - m.Combo("").Get(repo.Collaboration).Post(repo.CollaborationPost) + m.Combo("").Get(repo.SettingsCollaboration).Post(repo.SettingsCollaborationPost) m.Post("/access_mode", repo.ChangeCollaborationAccessMode) m.Post("/delete", repo.DeleteCollaboration) }) + m.Group("/branches", func() { + m.Get("", repo.SettingsBranches) + m.Post("/default_branch", repo.UpdateDefaultBranch) + m.Combo("/*").Get(repo.SettingsProtectedBranch). + Post(bindIgnErr(auth.ProtectBranchForm{}), repo.SettingsProtectedBranchPost) + }, func(ctx *context.Context) { + if ctx.Repo.Repository.IsMirror { + ctx.NotFound() + return + } + }) m.Group("/hooks", func() { m.Get("", repo.Webhooks) @@ -452,15 +463,15 @@ func runWeb(ctx *cli.Context) error { m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost) m.Group("/git", func() { - m.Get("", repo.GitHooks) - m.Combo("/:name").Get(repo.GitHooksEdit). - Post(repo.GitHooksEditPost) + m.Get("", repo.SettingsGitHooks) + m.Combo("/:name").Get(repo.SettingsGitHooksEdit). + Post(repo.SettingsGitHooksEditPost) }, context.GitHookService()) }) m.Group("/keys", func() { - m.Combo("").Get(repo.DeployKeys). - Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.DeployKeysPost) + m.Combo("").Get(repo.SettingsDeployKeys). + Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.SettingsDeployKeysPost) m.Post("/delete", repo.DeleteDeployKey) }) @@ -555,13 +566,13 @@ func runWeb(ctx *cli.Context) error { m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer) }, func(ctx *context.Context) { if !setting.Repository.Upload.Enabled { - ctx.Handle(404, "", nil) + ctx.NotFound() return } }) }, reqRepoWriter, context.RepoRef(), func(ctx *context.Context) { - if !ctx.Repo.Repository.CanEnableEditor() || ctx.Repo.IsViewCommit { - ctx.Handle(404, "", nil) + if !ctx.Repo.CanEnableEditor() { + ctx.NotFound() return } }) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 28c60b4f0..59b6abd8e 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -639,6 +639,22 @@ settings.collaboration.admin = Admin settings.collaboration.write = Write settings.collaboration.read = Read settings.collaboration.undefined = Undefined +settings.branches = Branches +settings.default_branch = Default Branch +settings.default_branch_desc = The default branch is considered the "base" branch for code commits, pull requests and online editing. +settings.update = Update +settings.update_default_branch_success = Default branch of this repository has been updated successfully! +settings.protected_branches = Protected Branches +settings.protected_branches_desc = Protect branches from force pushing, accidental deletion and whitelist code committers. +settings.choose_a_branch = Choose a branch... +settings.branch_protection = Branch Protection +settings.branch_protection_desc = Please choose protect options for branch %s. +settings.protect_this_branch = Protect this branch +settings.protect_this_branch_desc = Disable force pushes and prevent from deletion. +settings.protect_require_pull_request = Require pull request instead direct pushing +settings.protect_require_pull_request_desc = Enable this option to disable direct pushing to this branch. Commits have to be pushed to another non-protected branch and merged to this branch through pull request. +settings.protect_whitelist_committers = Whitelist who can push to this branch +settings.protect_whitelist_committers_desc = Add people or teams to whitelist of direct push to this branch. settings.hooks = Webhooks settings.githooks = Git Hooks settings.basic_settings = Basic Settings diff --git a/gogs.go b/gogs.go index 497d0f6e1..5d4d32256 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.153.0217" +const APP_VER = "0.9.154.0217" func init() { setting.AppVer = APP_VER diff --git a/models/action.go b/models/action.go index ab8d9167f..e4c73f3aa 100644 --- a/models/action.go +++ b/models/action.go @@ -460,6 +460,7 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { opType = ACTION_PUSH_TAG opts.Commits = &PushCommits{} } else { + // TODO: detect branch deletion // if not the first commit, set the compare URL. if opts.OldCommitID == git.EMPTY_SHA { isNewBranch = true diff --git a/models/models.go b/models/models.go index 301102254..0d63ea1a0 100644 --- a/models/models.go +++ b/models/models.go @@ -65,8 +65,8 @@ func init() { new(Watch), new(Star), new(Follow), new(Action), new(Issue), new(PullRequest), new(Comment), new(Attachment), new(IssueUser), new(Label), new(IssueLabel), new(Milestone), - new(Mirror), new(Release), new(LoginSource), new(Webhook), - new(HookTask), + new(Mirror), new(Release), new(LoginSource), new(Webhook), new(HookTask), + new(ProtectBranch), new(Team), new(OrgUser), new(TeamUser), new(TeamRepo), new(Notice), new(EmailAddress)) diff --git a/models/repo.go b/models/repo.go index a06e9751a..71bc2b443 100644 --- a/models/repo.go +++ b/models/repo.go @@ -441,6 +441,10 @@ func (repo *Repository) AllowsPulls() bool { return repo.CanEnablePulls() && repo.EnablePulls } +func (repo *Repository) IsBranchRequirePullRequest(name string) bool { + return IsBranchOfRepoRequirePullRequest(repo.ID, name) +} + // CanEnableEditor returns true if repository meets the requirements of web editor. func (repo *Repository) CanEnableEditor() bool { return !repo.IsMirror diff --git a/models/repo_branch.go b/models/repo_branch.go index 9cf2e9c43..6fe2222de 100644 --- a/models/repo_branch.go +++ b/models/repo_branch.go @@ -5,6 +5,8 @@ package models import ( + "fmt" + "github.com/gogits/git-module" ) @@ -36,7 +38,7 @@ func GetBranchesByPath(path string) ([]*Branch, error) { func (repo *Repository) GetBranch(br string) (*Branch, error) { if !git.IsBranchExist(repo.RepoPath(), br) { - return nil, &ErrBranchNotExist{br} + return nil, ErrBranchNotExist{br} } return &Branch{ Path: repo.RepoPath(), @@ -55,3 +57,56 @@ func (br *Branch) GetCommit() (*git.Commit, error) { } return gitRepo.GetBranchCommit(br.Name) } + +// ProtectBranch contains options of a protected branch. +type ProtectBranch struct { + ID int64 + RepoID int64 `xorm:"UNIQUE(protect_branch)"` + Name string `xorm:"UNIQUE(protect_branch)"` + Protected bool + RequirePullRequest bool +} + +// GetProtectBranchOfRepoByName returns *ProtectBranch by branch name in given repostiory. +func GetProtectBranchOfRepoByName(repoID int64, name string) (*ProtectBranch, error) { + protectBranch := &ProtectBranch{ + RepoID: repoID, + Name: name, + } + has, err := x.Get(protectBranch) + if err != nil { + return nil, err + } else if !has { + return nil, ErrBranchNotExist{name} + } + return protectBranch, nil +} + +// IsBranchOfRepoRequirePullRequest returns true if branch requires pull request in given repository. +func IsBranchOfRepoRequirePullRequest(repoID int64, name string) bool { + protectBranch, err := GetProtectBranchOfRepoByName(repoID, name) + if err != nil { + return false + } + return protectBranch.Protected && protectBranch.RequirePullRequest +} + +// UpdateProtectBranch saves branch protection options. +// If ID is 0, it creates a new record. Otherwise, updates existing record. +func UpdateProtectBranch(protectBranch *ProtectBranch) (err error) { + if protectBranch.ID == 0 { + if _, err = x.Insert(protectBranch); err != nil { + return fmt.Errorf("Insert: %v", err) + } + return + } + + _, err = x.Id(protectBranch.ID).AllCols().Update(protectBranch) + return err +} + +// GetProtectBranchesByRepoID returns a list of *ProtectBranch in given repostiory. +func GetProtectBranchesByRepoID(repoID int64) ([]*ProtectBranch, error) { + protectBranches := make([]*ProtectBranch, 0, 2) + return protectBranches, x.Where("repo_id = ?", repoID).Asc("name").Find(&protectBranches) +} diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index b357c3b39..16e4ea4a3 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -106,6 +106,22 @@ func (f *RepoSettingForm) Validate(ctx *macaron.Context, errs binding.Errors) bi return validate(errs, ctx.Data, f, ctx.Locale) } +// __________ .__ +// \______ \____________ ____ ____ | |__ +// | | _/\_ __ \__ \ / \_/ ___\| | \ +// | | \ | | \// __ \| | \ \___| Y \ +// |______ / |__| (____ /___| /\___ >___| / +// \/ \/ \/ \/ \/ + +type ProtectBranchForm struct { + Protected bool + RequirePullRequest bool +} + +func (f *ProtectBranchForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + // __ __ ___. .__ .__ __ // / \ / \ ____\_ |__ | |__ | |__ ____ | | __ // \ \/\/ // __ \| __ \| | \| | \ / _ \| |/ / diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index a7fb610ab..b80a49bce 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -306,7 +306,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 14564, mode: os.FileMode(420), modTime: time.Unix(1487214964, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 14564, mode: os.FileMode(420), modTime: time.Unix(1487353092, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4371,7 +4371,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\x1c\xb9\xb1\x30\xf8\xbf\x9e\x02\xd6\x09\x86\x66\x22\xa8\x9e\x18\xfb\xfb\x76\x37\x26\x46\xe3\xe5\x50\xa3\xcb\x39\xd4\xe5\x90\x94\xbd\x5e\x85\xa2\x06\x5d\x85\xee\x86\x59\x0d\x94\x0b\x28\xb6\x7a\x1c\x8e\xd8\x07\xd8\x07\xd8\x7d\xbd\xf3\x24\x5f\xe4\x05\xb7\xaa\x6a\x4a\xb2\xcf\x1f\xb2\x0b\x48\x24\xee\x89\xcc\x44\x22\x53\xf6\x7d\xdd\x2a\xd7\x88\xa7\xe2\x42\xf4\x52\x9b\x4e\x39\x27\x9c\xea\x36\x4f\x76\xd6\x79\xd5\x8a\x17\xda\x0b\xa7\x86\x7b\xdd\xa8\xaa\xda\xd9\xbd\x12\x4f\xc5\x4b\xbb\x57\x55\x2b\xdd\x6e\x6d\xe5\xd0\x8a\xa7\xe2\x59\xf8\x5d\xa9\x4f\x7d\x67\x07\x00\xfa\x85\x7e\x55\x3b\xd5\xf5\x50\x46\x75\x7d\xe5\xf4\xd6\xd4\xda\x88\xa7\xe2\x46\x6f\x8d\x78\x65\x28\xc5\x8e\x3e\x24\xbd\x1d\x3d\xa5\x8d\x7d\x48\x7a\xdf\x57\x83\xda\x6a\xe7\xd5\x20\x9e\x8a\x6b\xfe\x59\x1d\xd4\xda\x69\x0f\x35\xfd\x99\x7e\x55\xf7\x6a\x70\xda\x02\xf6\x3f\xd1\xaf\xaa\x97\x5b\x00\x78\x27\xb7\xaa\xf2\x6a\xdf\x77\x12\x0b\xdc\xf2\xcf\xaa\x93\x66\x3b\x12\xcc\x15\xff\xac\x9a\x41\x49\xaf\x6a\xa3\x0e\xe2\xa9\xb8\xc4\x8f\xd5\x6a\x55\x8d\x4e\x0d\x75\x3f\xd8\x8d\xee\x54\x2d\x4d\x5b\xef\xa9\x9b\xef\x9d\x1a\x04\xa7\x0b\x69\x5a\x01\xe9\xd8\x05\xd5\xd6\xda\xd4\xd2\x71\x3f\x54\x2b\xb4\x11\xd2\x55\x88\xca\xc8\x7d\x28\x0d\x3f\x2b\xb5\x97\xba\x83\x51\x83\xff\x55\x2f\x9d\x3b\x58\x1c\xda\x77\xfc\xb3\x1a\x54\xed\x8f\xbd\xc2\x21\x78\x72\x7b\xec\x55\xd5\xc8\xde\x37\x3b\x09\xcd\xa4\x5f\x55\x35\xa8\xde\x3a\xed\xed\x70\x44\xb8\xf0\x51\xd9\x61\x2b\x8d\xfe\x4d\x7a\x1a\x9f\xb7\xd9\x67\xb5\xd7\xc3\x60\x61\x68\x5f\xe3\x8f\xca\xa8\x43\x0d\x78\xc4\x53\xf1\x46\x1d\x72\x2c\x90\xb3\xd7\xdb\x81\x46\x11\x32\x5f\xe3\x17\x60\xa1\x3c\xc6\x44\x59\x11\xdb\xc6\x0e\x77\x9c\xfa\x1c\x7e\x4e\x50\xda\x61\xcb\xb9\x65\xbb\xa4\x91\x5b\xc5\xb9\xaf\xf1\xa3\x00\x70\x95\x6c\xf7\xda\xd4\xbd\x34\x0a\x86\xee\x02\xbe\xc4\x3b\xf8\xaa\x64\xd3\xd8\xd1\xf8\xda\x29\xef\xb5\xd9\xc2\x1c\x5c\x50\x92\xb8\xe1\xa4\x2a\xcb\x8b\x69\x47\x3b\xc6\x59\x16\x4f\xc5\x5f\xec\x38\x88\x77\xf4\x49\x79\x59\x21\xcc\x8c\x25\x2b\xd9\x78\x7d\xaf\xbd\x56\x54\x59\xf8\xa8\xfa\xb1\xeb\xea\x41\xfd\x6d\x54\xce\x43\xd6\xbb\xb1\xeb\xc4\x35\x7f\x57\xda\xb9\x11\x4b\xbc\xc2\x1f\x55\xd5\x48\xd3\x60\x77\x2e\xf1\x47\x55\x7d\xd0\xc6\x79\xd9\x75\x1f\x2b\xfe\x01\xc0\xf4\x8b\xc6\xc9\x6b\x8f\x8d\xe5\x44\x71\xe3\x55\xef\x60\xa0\xc5\x73\x3d\x38\xff\xc4\xeb\xbd\x12\xd7\xa3\xa9\x5a\xdb\xdc\xa9\xa1\x86\x0d\x89\x5b\xe9\xd5\x46\x1c\xed\xf8\x78\x50\x62\x18\x8d\xd1\x66\x2b\x5e\xd8\xad\x13\xda\x38\xdd\x2a\xf1\x0c\xa1\xcf\x45\xdf\x29\xe9\x94\x18\x94\x6c\xc5\x8f\x52\x78\x39\x6c\x95\x7f\xfa\xa8\x5e\x77\xd2\xdc\x3d\x12\xbb\x41\x6d\x9e\x3e\x3a\x73\x8f\x7e\x7a\x31\xea\x56\x75\xda\x28\xf7\xe3\x77\xf2\x27\xd1\xc8\x41\x6d\xc6\xae\x3b\x8a\xb5\xda\xc0\x5e\x39\xda\x51\x34\x3b\x69\xb6\xb0\x4f\x8e\x7e\x07\x15\x6a\x23\xfc\x4e\x3b\x01\x1b\xf5\x77\x15\x8c\x92\xf6\xaa\x6e\xd7\x81\x28\x61\x83\x30\x79\x50\x4e\xbc\x3e\xde\xfc\xe7\xd5\xb9\x78\x67\x9d\xdf\x0e\x0a\x7f\xdf\xfc\xe7\x95\xf6\xea\x0f\xc2\x0e\xe2\x56\x3f\xfb\x79\x55\xb5\xeb\x3a\x0c\xc8\x33\xe9\xe5\x1a\xda\x1e\x27\x09\x32\x69\x0f\xc5\x3c\xdc\x49\x40\xeb\x90\xae\x39\x8f\xbb\x93\x77\xe6\xe2\x3e\x6c\xd7\x35\x6f\xde\x88\xe3\x0d\xec\xe0\x76\x9d\x46\xf6\x1d\x8d\xd9\xe8\x94\x78\xf5\xe6\xcd\xdb\x67\x3f\x0b\x65\xb6\xda\x28\x71\xd0\x7e\x27\x46\xbf\xf9\x3f\xea\xad\x32\x6a\x90\x5d\xdd\x68\x18\x94\xc1\x29\x2f\x36\x76\xa0\x2e\xae\x2a\xe7\xba\x7a\x6f\x5b\xa8\xe5\xe6\xe6\x4a\xbc\xb6\xad\xaa\x7a\xe9\x77\xd8\x10\xbf\xab\xdc\xdf\x3a\x18\xa8\x58\xe1\xed\x4e\x09\x5c\xb3\x08\x64\x37\xd3\x71\x11\x2d\xb7\x75\x25\x7e\x5c\x0f\x3f\x65\xed\x93\x6b\x67\xbb\xd1\x73\xc9\xc3\x4e\x19\x9c\x28\xe7\xe5\xe0\x85\x74\x81\xf6\xaf\x2a\x35\x0c\xb5\xda\xf7\xfe\x08\xd3\xc3\x6d\x39\x55\x0b\x21\x6b\xa4\x31\xd6\x8b\xb5\x12\x58\x8e\x50\x68\x73\x2f\x3b\xdd\xd6\x5e\xa7\x81\x2c\xcb\x62\x62\x6b\x95\x13\x50\x5a\x76\x9d\x3d\xe0\x10\xc9\xc6\xab\xc1\x89\x47\xab\x47\x48\x67\x1f\x3d\x79\xb4\xaa\x8c\xad\x89\x08\x00\x45\x6e\xb5\x93\xeb\x4e\xd5\x74\x5a\x0c\x81\xd8\xfd\x05\xd6\x1d\x35\x85\x21\x44\x01\x01\x73\x02\x27\x10\x12\x7e\x58\x94\xd2\x08\x44\x2a\x98\x8a\xe4\x7d\x0f\x24\x27\xae\x0b\xa2\x3a\x31\x61\xd6\xe7\x2a\x4c\x74\x58\x95\x17\x7d\xdf\xe9\x86\xaa\x7e\x41\x79\x69\x81\xc2\x79\xcc\x83\x92\xc3\xe1\x02\x0b\x79\xd9\x32\x1b\x3d\x4c\xd6\x20\x0a\xf2\x8e\xe5\x77\x6a\x50\x62\x37\x6e\xe9\x4c\xea\xec\xd8\xfe\x0e\x0f\x87\x30\x73\x89\x04\x8b\x6b\x6b\x3d\xad\xaa\x08\x90\xaa\xb8\xe8\x3a\x64\x01\x06\xb5\xb7\x1e\x06\x8e\x8b\x01\x99\x3b\xe8\xae\x83\x9e\x3a\x79\xaf\x5a\xe1\x2d\x6d\xe5\x56\x0f\xaa\x01\xc4\xab\x6a\x18\x4d\xcd\xdb\xe9\x7a\x34\xb4\xa5\x42\x5a\xb9\x76\x11\x6a\x3f\x3a\x2f\x76\xf2\x5e\xc1\xc0\x03\x1f\xe2\xed\x62\x3b\xb1\x4b\xc3\x68\x90\x3a\xac\xaa\xd6\xee\x25\xf2\x14\xcf\xf0\x07\x7f\xe7\xf8\xb5\x13\x72\xb3\x51\x8d\x77\xe2\xe6\xe6\xa5\x68\x3a\x6b\x94\x78\x7f\x7d\xe5\x60\xa3\xed\xea\xde\x0e\xc8\x7f\xdc\xbc\x14\xef\xec\xe0\x63\x5a\x36\xd0\x00\x61\xc6\xfd\x5a\x0d\xe2\xb0\xd3\xcd\x8e\x86\x1d\x4a\xc0\xfe\x50\x83\xd0\x4e\x8c\x4e\x9b\xed\xb9\xe8\x14\xf4\x40\x7b\x5a\x00\xd0\x87\xb0\xea\x00\x7c\xa3\xa4\x1f\x07\xb5\xaa\x76\xde\xf7\xa1\xe6\x97\xb7\xb7\xef\xa8\xea\x98\xfa\x50\xdd\x32\x5b\x19\x38\x07\x1d\x70\x44\x46\x58\xb3\xc2\x45\x32\x0e\xdd\x64\xfd\xbc\xbf\xbe\x0a\x39\x27\xc6\x05\x9a\xf0\x1d\xfc\xb9\x49\xc3\x83\xe3\xec\xec\x5e\x1d\x70\x35\x69\x23\x90\x4b\x59\x55\x9d\xdd\xd6\x83\xb5\x3e\x2c\xa6\x2b\xbb\xa5\x05\x54\x64\xa4\x9a\x9e\x85\x25\x01\xa3\x71\x18\x80\x6b\xeb\xec\x16\x09\x16\x4c\xf2\xaa\xaa\x6c\x0f\xed\xcc\x76\xc9\x5b\x4e\x48\x5b\x03\xeb\x8e\xf9\xc8\x27\x89\x1b\x22\x4e\xd9\x99\xbe\xf7\x7d\xcd\xd4\xfc\xe6\xf5\xed\x3b\x22\xe9\x98\xba\x19\xec\x5e\x3c\x15\xcf\x07\xbb\x4f\x09\xa9\x8d\xaf\x01\x1f\xc2\xc8\xb6\x1d\x94\x73\xe7\xe2\xfa\xf9\xa5\xf8\x9f\x7f\xf8\xfd\xef\x57\xe2\x95\x87\x8d\x0d\x6b\xfd\xaf\xb0\x46\x25\x8f\x44\x02\xb5\x83\xf0\x3b\x25\x1e\xc1\x46\x7d\x24\x7e\xc4\xdc\xff\x53\x7d\x92\xfb\xbe\x53\xab\xc6\xee\x7f\x02\xe2\xbe\x97\x7e\x55\x41\x8e\x1a\xc2\xb6\xb8\x51\xa6\x55\x03\x73\x7d\x9c\x95\x11\x17\xce\xce\x78\x40\x62\x7e\xeb\xc6\x9a\x8d\x1e\xa0\x3f\xbf\x18\x5c\x5b\x81\x2d\x16\x97\x94\x13\x58\x28\xdd\xd5\xc6\x7a\xbd\x39\x26\x50\xec\xe9\x1b\x48\xe4\xe5\x51\xd1\x1a\xae\x99\xd4\xc7\x31\xbe\xa1\xa5\x0d\xab\xe0\xad\xdf\xa9\x21\x0c\xb7\x4b\xe3\x6d\x37\x1b\x38\xf1\xc3\x59\xc5\x35\xbc\xa5\x54\x3a\xb6\x72\x90\xba\xb7\x3d\x32\xf6\xcf\x78\x4b\x5c\x3e\x7b\x23\xd4\xbd\x32\xb0\xb8\xfa\xc1\xb6\x63\x83\xeb\x15\x60\xcf\x81\xf4\x8b\x41\x39\x3b\x0e\x8d\xe2\xc5\x12\x49\x0e\x34\x0d\xe8\x5a\x23\xbb\xee\xb8\xaa\x02\xe9\xdf\x0e\xf2\x5e\x7a\x39\x64\x55\xbc\x08\x49\xdc\xfa\x19\xec\xac\x51\xb1\x04\xf4\xbc\x19\x9d\xb7\x7b\x41\xad\x70\xd4\x28\xca\x76\x42\x0e\x4a\x8c\x7d\x67\x65\xab\x5a\xb1\x3e\x22\x15\x73\xb0\x16\x5a\xb5\x91\x63\xe7\x57\xd5\x46\xb5\x0a\xd8\xe5\xb6\xe6\xba\x3a\x6b\xef\xb0\x32\x1e\xaa\xe7\x01\x40\x5c\x30\xd2\x2b\x84\x38\x55\x32\x36\x96\xcb\x47\xb0\xd8\x28\xae\xc1\x5b\x3c\xde\x53\xbe\xed\x95\xe1\x6e\x84\x43\x5d\xc0\x79\xdb\x0a\x6b\x44\xa7\xd7\xdc\xe9\x34\x96\x93\x63\x34\x8c\xce\x0d\x08\x87\x79\xde\x62\x81\xd9\xa0\xe2\x82\x77\xd3\xb2\xe7\xc2\x9a\xee\xc8\xc7\x2d\x6c\x31\x92\xbe\xc2\xc9\xeb\x56\x95\xc2\x7e\xd6\x49\xd6\xe1\x8e\x07\x91\xa7\xcc\x8f\xd5\x5e\x13\xcf\x28\x90\xd9\x00\x8c\x01\x01\x30\x59\xcb\x6d\x59\x55\xcc\x68\xd6\x2c\xa6\xd6\xf7\x1a\x85\xc0\xb8\xc5\x08\x25\x8b\xae\x30\xc2\x7f\x02\x00\x90\x2e\xdd\x62\xd9\xd8\x9a\xb7\xd0\x49\x17\x85\x40\x5a\x27\xd0\x5d\xac\x01\x98\x5f\x77\x2e\xee\x35\x1e\x74\xbc\xc8\x71\x5c\xd6\xc0\x9f\x75\x0a\xaa\x72\x4a\x21\x06\xa1\xcd\x77\x63\x4f\x65\x56\x2c\x01\xb1\x50\x12\x98\x66\x60\x78\x5a\x8b\xdc\x13\x9e\xa6\xde\xc6\x61\x9d\x70\x36\x62\xd0\xdb\x9d\x17\xc6\x1e\xce\x69\x50\x0e\x3b\xab\x60\xcf\xbf\x7a\xf6\xf4\x7b\x6a\xc7\x16\xce\xd6\x58\x08\x4e\x65\x39\x7a\x0b\xf4\x85\xb7\x1e\x35\x21\x72\x37\x08\x39\x93\xb5\x08\x68\x2a\xf4\xce\x98\xa9\x48\xe8\x98\xbe\xe5\x79\x4c\xd8\x12\x0c\x95\x0e\x82\x33\x55\x4c\x84\x94\x05\xa5\x7a\x6b\x51\x50\x0b\x82\x11\xb0\x0b\x95\x57\xce\xd7\x5b\xed\xeb\x0d\x50\x5b\x40\xfc\x1c\x10\x00\xf7\xa2\x9c\x17\x8f\xb7\xda\x3f\x16\x8d\xdd\xef\xa5\x69\x7f\x10\x67\xf7\xcc\x6a\xff\x01\xc8\x28\x6c\x45\xdd\xe1\x8c\xb0\xf8\x37\x28\xe2\xa4\x83\xea\x21\xb2\xad\x6e\xec\xf1\x70\x67\x0e\x39\x8a\x51\xad\x3d\x18\x20\x18\x78\x5c\xd8\xcd\x46\x37\x5a\x76\x62\xad\x8d\x1c\x8e\x11\x0b\x1e\x43\x67\xee\x5c\xbc\x79\x7b\x8b\x80\x5b\xbb\x1e\x75\xd7\x06\x80\x55\x15\xb8\xe8\x76\x1d\x26\x3f\x97\x47\x42\x92\xa6\xb6\x34\x76\x80\xf3\x17\x7b\x13\x0a\x9e\xe0\x05\xe1\xf0\x26\xe6\x5d\x83\x20\x88\xb0\x58\x2e\xb2\x6d\x30\x0c\x7b\xe9\x9b\x1d\x33\x75\xb8\x6c\xb4\x33\x8f\x3d\xb6\xb4\x19\x87\x41\x19\x8f\xc9\x3f\x88\x33\x27\x9e\xfc\x24\xce\x5c\xac\x36\x3f\x89\xf1\x7c\x86\xe3\x58\x6c\xb4\xea\xda\xd0\xda\x54\x27\xf0\x95\x74\xd2\x6d\xe7\xb3\x05\x99\x82\x32\x47\xda\xbf\x45\xff\x8a\x8d\x11\x97\x47\x58\xf6\xd9\x00\xe5\x9d\x0c\xeb\xc6\x8d\xb4\xd2\x9f\x8a\x3f\xab\xae\xb1\x7b\xf5\x3b\xf1\x67\x05\x72\xf2\xb6\xc3\x99\x93\x9e\x85\x59\xeb\x14\xae\xaa\x73\xda\x68\x9b\xd1\xe0\x99\xe1\xe5\x9d\x42\xf9\x37\x4d\xd4\x12\xcb\x74\x72\xb0\xab\x0f\x3b\xbb\x57\x1f\xab\x91\xd8\x7d\xdb\xb5\x51\x24\xc5\x2d\x64\x07\xe2\x3f\xa2\x7c\x9a\x60\xe2\xee\x70\x07\xed\x9b\x5d\x1d\xb5\x74\x30\x90\x5e\x7d\x42\xc6\x08\xb3\x92\xd2\x0e\xb6\x16\x64\x55\xfb\x23\xae\x0b\xe8\xf8\xeb\x63\x5a\x16\x5a\xb9\xca\xed\xec\x01\x55\x5e\x11\xe2\x66\x67\x0f\xa8\xec\x2a\x84\x82\xd5\x6a\x55\x35\xb6\xeb\xe4\xda\xc2\xac\xdc\x27\xf8\xcb\x3c\xb5\x44\xbe\x3f\xd6\x76\xd8\x72\xb5\xa5\x8a\x67\x7f\x64\xad\x12\xe7\x92\x56\xc9\x55\x48\x5e\x59\x1d\x89\x54\xf8\xcc\x55\xac\x4c\x59\x69\x53\xa3\xae\x26\xd4\xfc\xca\x10\xbb\x9e\xb7\xb3\xaa\x3e\xb0\xaa\xf2\x63\x15\xe0\x8a\x36\x11\x8d\xa6\x41\x77\x85\xfe\xcc\x4d\x14\x68\xae\x72\x4a\x0e\xb8\x21\x6e\xf0\x47\x55\x7d\x90\xa3\xdf\x7d\xcc\x54\x89\x75\x58\x79\x41\xa5\x88\xea\x2e\x26\x93\x89\xad\xdb\xa9\x1e\x38\xc0\xbd\xc3\x25\xdb\x0d\x4a\xb6\x47\x96\x88\xe2\xe2\xfd\x23\x1d\x40\xda\x00\xd9\xfe\x5d\xe5\x2c\x50\x90\xfa\x2b\x51\xfc\xac\x4d\x4b\xe5\xcb\xc3\x9b\x74\x9c\xfb\x1e\x97\x89\x1d\x86\xe3\x79\x29\x2b\xef\xa4\x13\x6b\xa5\x4c\x90\x69\xda\x55\xd0\x75\xc0\xf2\x92\x0d\x11\x01\xd4\xcb\xe2\x0e\xa4\x92\x76\xc6\x55\x40\x0b\x89\x6e\x73\x2d\x91\x7f\x45\xee\x34\x67\x62\x17\xea\xac\x06\xb5\x57\x20\x10\xd5\x7b\xd2\x87\xd2\x97\x78\xad\xaa\x8d\x1d\xb6\xb8\xcb\x68\x1b\x3c\x15\xcf\x31\x21\xed\x0b\x00\x50\x3e\x3f\x58\x18\x22\xa4\xfc\x31\xe8\x9f\x6b\x63\x0f\xa8\x97\x04\xe6\x6a\x3a\xfc\x63\x0f\xc3\xb7\x0a\x07\x15\xf1\x3c\xc8\x6e\x3b\x65\x7c\x1a\xc4\x0b\x61\xd4\x41\xe4\x50\x2c\x3a\xc4\x5e\x01\x3c\x10\xb4\x1f\xd7\x3f\x9d\xb9\x1f\xbf\x5b\xff\x14\xcf\x8a\x66\xa7\x9a\x3b\x5a\xba\xda\xac\xed\x27\xd4\x54\xa0\xc6\x4c\x09\x03\x5b\xf9\xac\x15\x3b\x3b\x0e\x28\x28\x37\x16\x64\x0d\xaf\x30\xb7\x98\xb3\x7e\xb0\x40\xcd\x56\xa4\xa1\x54\xb4\x37\xd2\x7a\x44\x55\x25\xac\x48\x3c\xd0\xc2\x92\xec\x07\xbb\xd3\x6b\xed\x81\x70\xa1\x70\x7d\x85\xff\xdf\x71\xb2\x6a\x27\x10\x19\xef\x31\x44\x32\xab\x9d\xe8\x63\x01\x68\x24\x82\xa6\xfe\xf1\x92\x49\xcb\x05\x66\x16\xc7\xaf\xd3\x7b\xed\x67\x4b\x11\x88\xae\xe4\x25\xcd\x1a\xd5\x30\x37\xd8\x87\x34\xba\x83\x6a\x94\xf1\xdd\x31\x2e\xcf\x83\xd4\x5e\xfc\x41\xec\xb5\x19\x3d\x08\x9d\x3b\x65\x84\x1f\x8e\x42\x02\x7f\xb3\xaa\x76\xd2\xd5\xa3\xe1\x69\x52\x6d\x58\x9c\x2f\x35\x1e\xc3\x50\x6f\xd8\x42\x19\x54\x29\x04\x8a\x6f\xe2\x0c\x7e\xbb\x62\xdd\x2a\x96\x82\xa3\x11\xda\xa3\x41\x62\x91\x4b\x6b\xc1\x0e\xc2\x28\x1a\x21\xec\x3f\x80\xc1\xb2\xb1\x46\xa5\xc1\xea\x74\x73\x07\xac\x3a\xcc\xef\x7a\xf4\xde\x82\x3c\xda\xc1\x1a\xa4\x32\xa1\xcd\x97\x08\x88\x12\x7b\xc2\x77\xa4\x69\x29\x47\xa9\xc2\x62\x00\xe1\x97\x0b\x7f\x33\xa8\x6f\x53\xf1\xb8\x65\xb0\x04\xa3\xa0\xd2\xd9\x6e\xba\xc6\x4c\x52\x9c\x87\x3d\x17\x0e\xc1\x86\x35\x9a\x71\x36\x87\x72\x34\x30\x1f\x36\x86\xfa\xd4\xeb\x01\x24\x93\x21\xb1\x04\xab\x49\x5d\x49\x74\x9f\xf7\xd8\x97\x2d\x4e\xe7\xa4\xb7\xb6\x76\x3b\xd2\xba\x84\xe6\x89\x4e\x99\x6d\xa1\xae\xc4\x4b\x30\x5c\x22\xff\xdb\xaa\x32\xd6\xd4\x28\x67\x66\x7b\xe6\x8d\x35\x4f\x30\x2d\x0a\x2a\xa1\x34\x2b\xb8\x43\x85\x80\x66\xb0\xe3\x76\xc7\xba\xaa\xea\x03\x8c\xda\xc7\x8a\xa7\x42\x65\x38\x79\xa1\x86\x9c\x30\x65\xb4\x1d\x23\x7c\x60\x77\xff\xa4\x06\x10\xea\x11\xa8\x58\x86\xa7\x66\xa4\x1c\x90\x48\x85\x13\xab\x73\x9d\xd3\x0c\x4e\xde\x8c\xdd\xb9\x38\x10\x0f\x94\xca\x44\x85\x02\x73\x47\xb0\x2a\xe9\xf6\xaf\xfa\xb0\xb7\xad\xec\x3e\x56\x47\xbc\xd3\xf8\x8b\x72\x95\xc1\x7b\x24\x5b\xed\x6d\x4b\x85\x5e\xe3\x8f\xaa\xfa\xb0\xb1\xc3\xfe\x63\x05\xe7\xeb\x9b\x89\x5c\x00\x07\x31\xa7\x65\xbc\x29\x66\xfd\x92\xdf\x93\xc5\x3e\xbf\x5b\x10\x21\xae\x55\xba\x2e\xc3\x5f\xb1\xf3\x37\x37\x2f\x6f\x83\x8a\xe3\xe6\xa5\xb8\x53\x8c\xfb\xa5\xf7\xbd\x7b\x8f\xca\x33\xd2\x84\xbd\xbf\xbe\xaa\xde\xc9\x23\xf0\xeb\x94\xcc\x1f\x98\x71\xab\xe4\x9e\x1b\x09\x3f\x09\xc5\xc5\xe8\x77\x9c\x08\x3f\xed\x90\x2b\x65\x2b\x64\x42\x7f\x29\x04\x16\xda\x45\xd5\x1b\x75\xf8\x79\x90\xa6\x09\x85\x81\x3b\x58\x63\x02\x95\xbc\xb4\xfb\xbd\xf6\x37\xe3\x7e\x2f\xf1\x6a\x8f\xbe\x85\xa3\x04\xce\x7e\xad\x9c\xa3\xcb\x4c\xce\xde\x53\x02\x67\x5f\xee\x2c\xc8\xfc\x31\xb7\xc1\xef\xea\x76\x50\x8a\x6b\x7d\x1e\x6e\x10\x2a\xe4\x08\x89\x5d\xa1\x5f\x55\x14\x70\x15\xdf\xf1\xfd\x3a\xd3\x75\xff\x5a\xc9\xae\xdf\x49\xe4\x39\x33\x30\x54\xeb\xae\x59\x14\x17\x08\x82\x1b\x7b\xdc\xab\x41\x37\xa8\x2e\x91\x6e\xf7\xcd\x93\xfa\xdb\x4c\xcd\x5f\x22\x6b\xad\xff\xe7\x10\xc2\x6f\xda\x95\x09\xaf\xd3\xbf\x85\x5e\x14\xe8\x20\x5d\x9c\x01\x04\x8a\x0e\x09\x2a\x02\xe1\x81\x05\x62\x84\x17\xb0\x59\x3d\xc8\x37\x05\xea\xbd\xfc\xf4\xb9\x82\x7b\xbb\x50\x8e\x74\x9b\xa9\x10\x8b\x42\x92\xbb\x58\x6c\xf0\xd5\xaf\xd5\x38\x3c\x00\xfc\xfe\xfa\x6a\xf5\x6b\xa5\x4d\xd3\x8d\xed\xc9\x86\xb8\x71\xed\xfc\x00\x22\xd0\xe3\x33\xf7\x18\x50\x9a\x3b\x63\x0f\x26\xc2\xbf\xa7\x6f\x81\xdf\x3f\x84\xab\xe6\x5a\x1b\x16\x26\xd3\xa5\xb3\x68\x75\x0b\x47\x1c\x0a\x85\xab\x44\x6a\x73\x41\x31\xee\x4f\xd4\xa8\xb1\x20\x1f\x49\x94\x1c\x14\xc9\xcc\x72\xaf\x56\xe9\x7a\xbc\x06\xf6\xa8\x06\x59\xca\xe4\xc2\x0f\x9c\x0f\x81\x09\x40\x06\x0a\x21\x56\x74\x79\x31\x2f\x37\x21\x20\x27\x8b\xdb\x61\xbb\x50\xfa\xed\xfc\x62\xe5\x44\x79\xaf\xe4\x7e\x01\x41\x24\x0d\x27\x0b\xd2\xdc\x63\xa1\xd1\xa1\x88\x5b\xd0\xb6\x79\x39\x80\x5a\xa5\x51\x8a\x03\x9e\xcf\x4d\x2e\x2a\xc6\x71\x2e\xd5\x01\xab\x4a\x19\xaf\x86\x01\xcd\x14\x32\xa5\x00\x2b\x69\xf8\x38\xda\x83\x28\xeb\x46\x38\x5a\x41\xec\x25\xe6\xb2\x1c\x51\xe0\x73\x10\x95\xc2\x2a\x4e\xa3\xb7\x07\x03\xa7\xc7\xe7\xf0\x23\xd8\x57\xa2\xce\x75\x48\x73\xc4\x8c\x3c\x02\x9d\x42\x1b\x15\x1c\xea\x93\xc6\x2b\x84\x17\xfa\x5e\xb1\x8a\x23\x6a\x76\x30\x6f\x55\x75\xd2\x79\x90\x5a\xa9\x57\x24\x85\xd8\x7b\xd8\x51\x50\x1f\xe4\x52\x39\xba\x52\xe0\x4e\xc1\x22\x61\x65\x09\xde\x6b\xaa\xf6\x5c\x48\x64\x35\x06\x45\x1b\x54\x76\x07\x79\x74\xa8\xf8\x0b\x44\xc6\x9a\x30\x26\x40\x41\xcc\x51\x6c\xb1\x55\xb9\x48\xba\xaa\x92\x86\xc5\xed\x6a\x38\xd1\x22\x9b\x75\x40\xcd\x05\x52\x08\x56\x25\xde\x67\xbc\x03\x1f\x80\x3f\x80\xfc\x3c\x92\x2a\x95\xb2\x33\x44\x78\x09\xcf\xc4\x7e\xa1\xec\x39\xb0\xa3\xe2\xa0\x84\x74\x6e\xdc\xf3\x58\x6b\xe4\xfe\xb1\x49\x99\xee\x6b\x5c\x77\xea\x09\x89\x35\xda\xaf\x2a\x90\x92\x93\x66\x07\x0e\x4c\x65\x7c\xb8\xb3\xa2\x74\xd2\x87\x38\xaf\xbb\x0e\x46\x3a\x18\xa6\x14\x62\x06\xe6\xe2\x3e\xc1\x61\x72\x3b\xdd\x0b\x8b\x37\x17\xf9\x10\xa6\x65\x9b\x31\xf4\xde\x8a\x56\xa1\xd8\x64\x07\xe1\x07\x69\xdc\x46\xe1\x55\xce\x5e\x6c\xf4\x00\xf3\x4c\x55\x83\x7c\x40\x86\x28\x27\x6a\x26\x09\x14\xab\xce\x0f\x08\x9c\xbb\x6c\xa2\xca\xaa\xe9\xaa\x10\xef\x0b\xb0\x0d\x38\xaa\x09\x93\x0b\x6d\x80\x65\x36\x1b\x02\xbc\xbe\x2b\x2e\x7e\x17\xc7\x61\x53\xa8\x3d\xa8\x7e\x5c\x69\x9f\xe9\x77\x45\x86\x1e\x35\x71\x21\xc5\xae\xb8\xc5\x9c\xc0\x9f\x4c\x37\x46\xf5\x01\xd6\xfd\xc7\x8a\x38\xe1\x3a\xde\xc7\x5c\x12\x67\x4c\x6c\x2d\x26\x56\x7f\xb5\xda\xd4\x78\xb9\xf0\xef\x56\x1b\xbc\x89\xa8\x8a\x1b\xe6\x89\x4e\x86\x4d\x6c\x8e\x78\xf5\xbd\xee\x74\x13\xec\x6c\x8e\xd5\xc6\xe2\x7e\x42\x95\xcd\xf3\xf0\xbb\x72\x5e\x02\x99\x80\xcd\xc0\xbf\x0a\x1d\x10\x15\x22\x05\xe1\xf3\xf0\x9b\x53\x63\x52\x35\x9a\x98\xf2\x9e\x7f\x56\x15\x30\xaf\x2b\xa4\xbf\xc0\x6f\xe3\x65\x54\x46\x75\xe1\x50\x85\xf5\x1f\xf2\x56\x19\x7c\x2f\xbd\x57\x83\x21\x7d\x32\x11\x81\xbc\x28\x67\x47\x14\xd1\x06\x02\xb0\x54\x1f\x82\xfd\xd1\xc7\x2a\x59\x29\x05\x03\xa5\x25\x45\x7a\x1c\x7e\xba\x5e\xaa\x78\x57\x3b\xe6\x7d\xff\x43\x1d\x1d\xab\x90\x90\x62\xe0\x0f\xd6\x01\xa0\x35\x42\xb8\x42\x76\xe5\x8d\x32\x6a\xc4\xe6\x8a\x30\x5e\x53\x4f\xc5\x33\xfa\x11\xb4\x09\xa3\xc6\x3e\xea\xb6\xaa\x7a\x9c\xb8\xcc\xc6\x8a\x67\x32\x76\x82\x4d\xec\x72\x7d\x42\x29\x67\x6b\x27\x08\x09\x72\x13\xe1\x46\x10\xcf\xce\x8d\x1d\x90\x42\xc6\xeb\x0d\xd5\xe1\xdd\x97\xc9\x6e\x3b\xdd\x39\x96\x03\xb0\x83\x5a\x87\x2b\xb0\x5e\x0d\xdc\xcf\xbd\x6c\x95\xb8\xd7\x32\x6a\xb2\x32\x9e\x26\x1e\xba\x41\x15\x55\xc8\x82\x28\x65\x90\xde\x30\xb0\x34\x61\x82\xbd\x0d\x92\xa1\xdf\x29\x4d\x37\x50\x06\xd9\x9d\xcd\xd8\x75\xe1\x4c\x7c\x3e\x76\x1d\xd9\x7a\xcc\x8d\x1b\xa1\x0a\xbe\x89\xbb\xe2\x9f\xd5\xd8\xb7\x20\x13\xa6\xb1\x7c\x8f\x09\x71\x2c\xcb\xfc\x4c\xd6\xc3\x51\x0d\xc5\xa2\x26\x8a\xc0\xdb\x4c\xf8\xeb\x8e\xab\xb0\x8f\x17\x8c\x16\x79\x4b\xb7\x53\x90\xa4\xb7\x41\x1a\xc5\x1d\xc7\x89\x22\x73\x03\x1c\xda\x83\x3c\x8a\x9d\x3d\x88\x4e\x9b\x3b\xc7\x33\x05\xe3\x94\xcb\xbd\xa8\x5f\xf3\xda\x8c\x8a\x25\x11\xf8\x39\x37\x91\xe3\xab\x51\xbe\x28\x5d\x1f\x83\x36\x83\xae\x52\x79\xe9\x8b\xf5\x51\xa0\xb0\x75\xfa\x4e\x76\x7a\x19\x1b\xee\x62\xc3\x1d\x23\x5e\x05\x27\x8a\xf6\xde\x29\x71\x49\xd7\xc3\xbc\xbb\x9a\x9d\xb5\x8e\x15\xbe\x89\xee\x41\x1a\xea\x73\x98\xec\xf1\xb4\x24\x3c\x34\x6b\x17\xe1\x9a\x1a\x77\x38\xef\xa5\x9a\x2f\x54\x12\x34\x6f\xad\x4b\xbe\x68\xb9\x08\x38\xe9\x1a\x3a\xf4\x09\xa9\x4b\xad\xf7\x24\x0f\xbe\x0f\x97\xd4\x38\xe1\x51\x60\xc0\xec\x55\xd9\x9e\xe9\x2a\xe1\x7a\xc3\x8d\xc9\x67\x16\x4b\x58\x0a\xf9\xbd\x1d\x4d\x7f\xa4\x48\xb6\x2b\xd8\xb5\xd0\x8f\x98\x0f\x83\x97\xe5\xbf\xc1\x1b\xd6\xa8\xb6\x80\x3d\x56\x4f\x40\x58\xd2\x2f\x20\x17\xb9\xe2\x50\xd7\x49\x8e\x78\xd2\xfa\xd9\x8e\x09\xe5\x0e\xd2\x15\x1d\xe7\x35\xde\xae\x82\xb1\x99\x30\xf6\x40\xd7\xb5\x68\x15\x44\x96\x51\x06\xef\x7a\x09\x45\x46\x54\xb8\xd2\x7f\x95\xa4\x24\xcc\x24\x52\xb8\x28\x49\x5c\x10\xe1\x54\x2e\x98\xd4\xc6\x7c\xb6\xaa\x2d\xe8\xab\x0a\xa6\x36\x39\x05\xee\x07\x8d\x9a\x87\x92\x12\xcf\x68\x6f\x41\x67\x91\xcc\x5a\x34\x1c\x49\xe4\x75\x55\x05\x54\x70\x6e\xe1\xaf\x90\x12\x75\x5b\x37\x0a\x2d\x0f\x39\x39\x6c\x84\x90\x4b\xeb\x3f\xb6\xb1\x53\x4c\x15\xa9\xaf\xcf\x38\x61\x92\x1f\x3a\x43\xd9\x61\x42\x16\x7a\x33\x00\x17\xaf\xe2\xc1\xa1\x0d\xd9\xed\xc4\x5b\xd9\x82\x3a\x89\x67\x48\xae\xc4\x41\x92\x0a\x3f\x10\xab\x3f\x4e\x6b\x4f\xeb\xe8\x97\x52\xf9\x4f\x7d\x2b\x77\xd1\xef\x2a\xd9\xb6\xb8\xc6\xd3\xdd\x76\x8b\x8b\xa7\x54\xf4\x01\x54\x0e\x41\xaa\xa4\x98\x5a\x17\x57\x13\x8e\xb4\x39\x5f\x7e\x1d\x01\xfc\xc7\x7f\xc3\x4d\x44\x51\x55\xba\x89\x88\x8d\x9c\xec\xb0\x59\x2f\xe7\x5b\x4d\xb6\x2d\xb2\x42\xbc\x96\x33\x86\x86\x57\x73\xe4\x6b\xa0\x16\x92\x60\x60\x78\xfe\x43\x1d\x91\xfb\xe1\x95\x80\x47\x93\x76\x42\xa2\xf5\x1c\x9a\xcc\x92\x38\xe3\x40\x8e\x01\x46\x08\xe6\x05\xed\x75\xcb\x39\xbf\x40\x79\xcd\x29\x86\x45\xce\x50\x9a\x23\x70\xfa\x61\xaf\xab\x3d\x8c\x03\x59\x4e\x44\x4b\xc6\xd9\x15\xe4\x39\x0b\x49\x3b\xbd\xdd\x75\x47\xa1\xf7\xbd\x1d\x3c\xae\xa4\x70\xc1\x9c\x64\x58\xf8\x1a\x54\x63\xb7\x46\xff\x86\x03\xbb\x27\xd3\xc5\xa8\x03\xff\xd1\xf9\xc1\x9a\xed\x4f\xcf\x2c\x08\x97\x77\x40\x7e\x76\xf6\xf0\xc7\x1f\xbf\xe3\x74\x71\x89\x53\x68\x47\x2f\x5e\x68\xff\x72\x5c\x3f\x76\x62\x3b\xea\x16\x8f\xdc\x1f\x65\x66\xc6\xcd\xa6\x22\x64\x57\x7a\x30\x71\x58\xd0\xa8\xdb\x0e\xc2\xd9\xee\x5e\x4d\x8a\xd8\xfd\x9e\xa6\x77\xdd\xa9\x3d\x41\x62\xfb\xd1\xba\x44\x19\x1c\x39\x35\xf0\xf8\xdc\xdc\xbc\x5c\xc5\x25\x9e\xe6\x87\xa7\x2d\x70\xa8\x85\x46\x84\x79\x44\x00\x6e\x58\x33\x99\x0e\x22\x54\x87\x84\x52\xc8\x7f\xcc\x4b\xe1\x3c\x3a\xe0\x59\x66\xba\x18\x14\x5b\x00\x45\x28\x2e\x9e\x42\x3b\x88\x0f\x83\xb4\x66\xa6\x0b\xe5\x85\x95\x2d\x5e\x38\x7b\x82\x2e\x19\x39\xf7\xd8\x3c\x5c\xae\x93\xfd\xcd\x14\x8d\xfa\xce\xf4\x2c\x74\x20\xa3\x68\x3c\x22\x89\xa6\x4d\x61\x0a\xaa\xa6\x88\xa6\x85\x56\xe4\xd4\x8c\x0c\xe9\x88\xa2\xd1\x82\x54\x0e\xe9\xf5\x17\x52\xb3\x59\xbd\xa9\xe3\xa1\xba\x2f\xa0\x68\xd8\xa7\x0b\x1c\x0e\x6b\x48\x7f\xc2\x13\x75\xc5\xda\x12\xcc\x30\xb6\xce\xe4\xbc\x37\x96\xef\xf2\x44\x48\xc4\x39\x71\x1e\x38\x96\x7c\x2b\x43\x23\xd0\x08\x97\x4c\xac\x50\x01\xf3\xbf\x8b\x56\x1e\x5d\xe5\xed\x9d\x32\x0b\x45\x30\xfd\x54\xa1\x48\x5f\x82\x70\xc4\xd4\xe5\x22\x11\x87\xa9\xb8\xc4\x57\xf1\x27\x09\x4c\x46\x57\x18\x6b\x34\x73\x23\xed\x11\x3e\x8c\x10\x6b\x6d\x5a\xa2\x23\x4c\x06\xd8\x96\x2b\xee\xff\x55\x35\x1a\x00\x42\x81\x14\x7e\xf0\x77\x3e\x2d\x05\xfe\x6c\xb3\x98\xb5\x1d\x4d\x46\x3e\x69\x39\xd4\x34\x14\xb1\x93\xef\xd4\xe0\xd0\xfa\xf6\x82\x10\xde\x42\xb6\x63\x53\x76\xb6\x68\x08\x45\x5e\x70\x22\xee\x01\x04\xa4\x01\x77\x71\x20\xf0\x2b\x29\x3e\x02\x16\xb6\xa4\x61\xc3\x5a\x9c\x03\x6f\x23\xc1\xdc\x91\x65\x8d\xb8\x78\xf7\xca\xad\xaa\x58\x61\x40\xfa\x8b\x6c\x76\x3c\x81\x07\xd2\x7a\xa0\xfd\x4d\xd7\x4d\x29\x6e\x94\x24\xa8\x78\x78\x71\x80\x25\x71\x8b\xc7\x4e\xcd\x3a\x44\x9d\x29\xf3\x69\x8c\x95\xcb\x34\x41\x54\x1b\xb6\x64\x7a\x56\xc5\xae\xfe\x4e\xbc\x4e\xfa\x48\xd8\x5a\xfd\x11\xa8\x7f\x66\x7e\x27\x69\x84\x0e\x48\xbf\x27\x76\x7f\xda\xd3\x3d\xb5\x80\x2d\x3c\x44\xfa\x11\x1a\xcc\x14\x24\x9f\xca\x9c\x8c\x2c\x4e\x66\x22\x2a\x8b\xc5\x96\x28\x4b\x1f\xf0\x94\x7d\xfe\x1c\x9d\x81\x85\x9f\x14\x07\x0f\x50\x99\xbc\x57\xd9\x52\x7e\xb7\x58\x6d\x5c\xd1\x54\xf5\x84\xde\x08\x3a\x06\xc9\xd6\x03\x4d\x61\x49\xc4\xa2\x15\x91\x19\xc6\x4b\x27\x0e\xaa\xeb\x56\x15\xea\x33\x56\x06\x4e\x71\x32\xa0\x8c\xec\x36\x2b\xe4\xb0\x1f\xe6\x58\x68\xdc\xdc\x8a\x8a\xa1\x1e\x2f\x9a\x40\x5e\x29\x36\x15\xc8\x41\x73\xc0\xcc\x4c\x93\xcc\xf7\xad\xcb\x9f\x3c\xd0\x28\x66\x5a\x30\x34\x29\x53\x72\xef\x84\xdc\xc0\x31\x0a\xc3\xd7\xa9\x0d\x6b\xcb\x73\x35\xf0\xe9\xc1\x0d\xa3\x9b\xee\x9b\x79\x6a\x0b\xab\x0f\x06\xca\xe4\x77\x95\x78\x77\x6a\x6c\xae\xaa\x0c\xc8\x7a\x35\xec\xa5\x41\x83\x0b\x52\xae\x04\x6e\xe4\xf2\xe2\xcd\x9b\xb7\xb7\x89\x09\x81\x7d\x6e\x5a\x6b\xd4\xef\xa2\x85\xe7\xac\x5d\xc1\xce\x33\x2e\xd0\x12\x22\x59\x9a\x72\x89\x53\x70\x39\x19\xce\x0c\x52\xb6\x16\x69\xab\x85\xb6\x84\xb3\xaa\x68\x7f\x7b\x72\x08\x3f\xc0\xac\x7c\xac\x82\xc2\xff\x2d\xfc\xaf\xf2\x3b\x93\xec\xae\x09\x49\x4b\xba\x92\x4a\xef\x69\xc4\xd6\xda\x76\x76\x87\x82\x87\xd0\x28\x51\x94\xb4\xfb\xde\xe2\x59\xb8\x11\x68\xaa\x70\x0e\x2b\xd0\x0e\x48\x10\x60\x70\x47\xa3\xff\x36\x22\xfb\x89\x16\x06\xab\xea\x5e\x3b\xbd\xd6\x1d\x1d\x98\x7f\x8a\x1f\x94\x0e\xbf\x26\x6f\x3e\xb2\xca\xb5\x13\x3f\xba\x5e\x1a\xd1\x74\xd2\xb9\xa7\x8f\x46\x2d\x06\xa0\xc3\xea\x93\x7f\xf4\xd3\xbb\x01\x6d\x0e\x7e\xfc\x0e\x20\x7e\x9a\xa1\xab\x37\x76\x68\x48\xb9\x1a\x0d\x78\x70\x5f\x72\x3a\xac\x63\xe0\xe7\x8b\xb5\x4c\x03\xff\x4f\xd4\xb9\xb1\xc3\x5d\xea\xc7\x37\xac\x55\xb0\x1b\xa2\x4d\xf7\xb2\x1b\x4b\x15\x13\xd4\x0e\x65\xdc\xb7\x15\x3e\x68\x49\x65\xd1\xa0\x0b\x5f\x25\x43\x86\x36\xdb\x3f\xe2\xa0\xf9\x87\x5f\x37\xbe\x54\x5d\x0f\x8c\xed\xef\x2a\x6c\x09\x2b\xe1\xa7\xcf\x59\x31\x2f\xbc\x34\x81\x3c\x7c\x6e\x82\xa9\x0b\xb3\x91\xbd\x4c\x93\x9d\x27\x05\xbc\xc8\x66\x13\x48\x0e\x76\x22\x57\x5c\x1f\xf9\xaa\x33\x52\x68\xd7\x0c\x1a\x5f\xcb\x50\x7a\x27\x51\x9f\x1d\xdf\x33\x63\xe2\x56\x7b\xbd\x35\x76\xc8\x86\xe1\x46\x75\x30\x4e\xab\x98\x25\xc2\x0b\x69\x57\x75\xba\x51\xc6\x21\x31\xa3\x5f\x21\x65\x56\x1c\xb8\x1b\x82\x45\x8d\x23\xb0\xd4\xbc\x15\xe0\x07\x7f\x2f\x94\x62\xc0\x50\x65\x25\x47\x6f\x6b\x6d\xb4\x47\x7b\x4d\xed\xb5\xec\x48\xd2\x29\xd7\x2b\xf1\xf1\x88\x84\xb5\x59\x81\x3c\x32\x1e\x36\xb9\xe4\xe9\x61\x5b\xcb\x6c\x82\xf8\x65\x06\x5f\x6b\xe0\xf8\x61\x82\x20\xf3\x0b\x7e\x0c\x5d\xf7\xc3\x68\x48\xb5\x3e\x1a\x55\x24\x86\x71\xcf\x18\x36\x7a\x1b\xf7\xc4\x0f\xb2\xb9\x03\xe2\x32\xa8\x8d\x1a\x94\x69\xd0\xce\x4c\xc2\xf9\x2e\x3a\x6b\xb6\x6a\x20\x59\x23\x18\x71\x51\xb1\x80\x5c\x83\x84\x74\x4f\x9c\x26\x3d\xa3\x7e\x15\x52\xbe\x01\xd1\xfa\xdb\x00\x18\x04\xe3\x08\xc7\xea\x9d\x49\x7e\x68\x27\x5f\x87\xb2\x3d\x80\x30\x0a\x8e\x19\x39\xd0\x63\x15\xd1\x0c\xaa\x55\x06\x46\xdb\x09\x96\xe7\x83\x99\x41\xc0\x87\x8c\xba\x3b\x9a\x26\xb1\xea\x37\xf8\x55\x1d\xa4\x6f\x76\x74\xe5\xf2\x67\xfe\x89\x37\x2e\x5b\xf9\x1b\xa5\xde\xc4\x0f\xdc\x02\x8e\x37\x85\xe3\xeb\x93\x41\xc9\x66\xc7\xa6\x7e\x76\x53\xd3\xfb\x4b\x64\x59\x6e\xe3\x35\x30\xd0\x13\x84\x53\xad\xd8\xcb\x4f\x7a\x3f\xee\x45\x04\xc4\xa2\xb0\x4b\xce\xca\x8b\x9d\xd5\xf2\xf5\xcc\xd4\x14\xe0\xeb\x6f\x69\xa6\x18\x1e\xbe\xac\x31\x4a\xb5\xb5\x1c\xd1\xde\x1b\x89\x4e\x61\x12\x54\xf1\x4b\xfa\xf0\x22\x39\x3e\xa5\xa7\x27\xc9\x79\xee\x69\xfa\x1d\x34\x70\xb2\x24\xa9\x68\xe8\xbd\xee\x46\xf5\xe8\x27\x9a\xc5\x40\x4f\x03\x56\xde\x1f\xaf\xf9\x31\x7f\xb6\x41\x18\x62\x45\x44\x33\x2d\xb6\x4b\x7c\x15\x98\xd6\xda\x02\x54\x71\xe4\x32\x5b\x2f\xb3\x97\x85\xdf\xbd\x78\x75\x8b\xe6\x29\x0f\x14\xaf\x49\x0d\x42\x16\x77\x44\x22\x1f\x0f\xc0\x59\x3a\x9b\x6b\x3e\x83\x17\x02\x99\x0f\xc6\xfa\x48\x0f\xc2\xc2\x9b\xcc\x5e\xfa\x5d\xaa\x0b\x0e\x79\xed\x1c\x31\xb7\x46\xe3\x7c\x16\x8c\x5e\xc2\x4e\x6d\x60\x64\xe5\xc2\x0a\xd8\x92\x5d\x7f\x23\xbb\x60\xd4\xff\x8a\x12\xb9\x20\x24\xa2\x8e\xa7\xbc\x21\x0d\x46\x8d\x32\x7f\x29\x1b\xd0\xc6\xcb\xf0\xb4\x1a\xf2\x7b\x70\xde\x92\x7c\xc0\xb0\xbb\x05\xbb\xa9\xe8\x8c\x08\xe9\x7c\x62\x6c\xe2\xd1\x83\x2f\x1d\x9d\xea\x36\xe5\x99\x83\x6e\x19\x8a\x11\xcc\x0d\x6c\xed\xc1\x00\x97\xd6\x1f\xeb\x4e\x9b\x3b\x64\xcc\xfa\x63\x4a\xc8\x38\xf4\x4b\xdb\x6b\xd5\x66\xc0\xd1\x8a\xe8\x1d\x2e\x9e\xff\xfa\x7f\xff\xbf\x27\x97\xd0\xed\x4b\x3f\x74\x4f\x2e\x83\x00\x04\xf0\x34\x0d\x84\x40\xbc\xfd\x8f\x6a\x34\x07\x36\x19\x7a\x4f\xbf\xaa\xf0\x8d\x14\xa6\x1a\x8d\xe3\x3b\x13\xfc\x51\xf1\x17\x10\x9a\x8a\xbd\x4c\x00\x85\xa9\x2a\x13\x0f\xc8\x37\xb6\x38\x23\xff\x36\xea\xe6\xae\x26\xd5\xd7\x53\xf1\x9f\xf0\x25\xd0\x73\x01\xb3\x09\x70\xe2\xc4\xe3\x03\xd7\xfc\xe4\x0c\xca\xad\xfa\xf1\x6c\xe5\xc7\x42\xe9\xb8\x91\x25\xdb\x73\x0c\x04\x3f\x00\x76\xda\xa8\xaa\x1f\xdd\x8e\x6e\xd4\x43\x6d\xef\x46\xb7\xc3\xa7\xa5\x90\x48\xe7\x48\xc4\x80\x33\x3b\xc3\x81\xd5\x6b\x47\x4f\xd3\x97\xb9\x3b\xcc\xca\x2c\xae\xf7\x4a\xac\x65\x73\x17\x24\xc9\x8a\x8e\x50\x32\xfd\x73\x55\x3c\x15\xf9\x34\xf4\x83\x42\x69\x79\x50\x0a\x20\xbd\x1a\x82\x3d\x80\x34\x6d\xed\xe5\x96\x4a\x02\xeb\xc2\x45\xed\x20\xbc\xdc\x32\x22\xc4\xfc\x33\xff\xac\xbc\xc4\x1b\xe3\x5b\xb9\x9d\xbb\xbd\xe8\xc7\xae\x9b\x3b\xc7\xe8\xe4\x5a\x61\xf2\x15\xfe\xa8\xf6\xd0\x48\x6f\x8d\xa2\xd3\x2f\x7c\x54\x0d\x1a\x34\xba\x68\xda\xe8\x2a\x7e\x97\x45\x16\x04\xf4\x13\xbb\x5a\x0f\xf2\x00\x69\xf2\x40\x9f\x3b\xed\xd8\x59\xca\x4b\xfa\x45\xc9\xf8\xba\x84\x40\xf1\x71\x49\x84\x47\x49\x81\xf7\xc3\xbb\xf0\x9b\xb2\xbc\x05\xde\x6b\xc0\xfb\x36\x9c\x88\x70\xd7\xe6\xad\x15\x94\x41\xcc\xaf\xdb\xd9\x83\xa9\xee\x75\xab\x2c\x1e\x2f\xfc\x54\x8c\xdc\xc5\xac\x07\x7b\x70\x81\x39\x84\x51\xa5\x4f\x20\x21\x20\xd1\x86\x67\x65\x2f\x6f\x5f\x5f\xfd\x4f\x81\x38\x60\xbc\x57\x55\xa5\x5a\x98\xf3\x15\xba\x5b\xa1\xcb\xe0\x37\xea\x40\x4c\x19\x67\xd1\x15\x61\x1d\xaf\x8a\xd1\x92\x35\x07\x80\x7f\x21\xfb\x97\x56\xfb\x22\xb3\x1f\x14\x8e\x0a\xdd\x39\x39\xda\xdc\xf8\x7c\x91\x58\x71\x17\x00\x89\xb8\xd4\x88\xcc\x58\x53\xc3\x59\x54\x87\x65\x76\x49\x94\x07\x32\x85\xb1\xe6\x09\x1e\x54\x98\x59\x34\x02\x37\x61\xde\x12\x1f\x06\x34\x80\xed\x47\xe7\xeb\xb5\xaa\xad\xa9\x65\x62\xe6\xfe\x12\x8c\x5b\xd6\x68\x94\x2c\xc3\xaa\x84\x13\x43\xde\x91\x35\xdc\x60\x41\xbc\x12\xa1\x1f\xc1\x6d\x41\x8e\x1c\x89\x26\x79\x2d\xc1\x7e\xe4\x98\x91\xca\x4c\xd9\x52\xf6\x70\x02\xb0\xc1\x02\x2c\xc7\x17\x34\x1b\x59\xaf\x72\xc5\xca\xac\x5f\x3b\x79\xaf\x6a\x7c\x27\xcf\xfa\xb9\xbc\x01\xa8\xe9\xa2\x47\xf4\x49\x67\xf0\x55\xbd\x23\xf3\x0a\x6c\x52\x22\xe2\x68\xfb\x5b\xaa\xae\x97\x55\xb9\x61\xa1\x01\x97\x84\x4f\x49\xc2\x72\x63\x83\xbd\x01\x2b\x5b\xad\x56\x79\x7d\x51\x08\x46\xdd\x1b\xf0\x98\xe9\xf4\x3b\xa7\x47\xf5\xc8\x06\x69\x8f\xec\x7c\x8f\xe7\xc6\x77\x2b\x80\x0d\xba\xa5\xbc\xc0\xd6\x52\xcf\x94\x58\xab\xad\x26\xdf\x35\x28\x0a\x2a\x7e\x4b\x98\x90\x00\xb5\x73\xbd\x44\x0f\x26\xd4\x1e\x3c\x99\xec\x90\xad\xd7\x46\x75\x35\x5a\x0c\x89\xa7\x82\x3e\x63\x26\xd2\x93\x6c\xd1\xb3\xed\xf4\x64\xcd\xcb\xb6\xad\xfd\xbe\x0f\x37\x71\x8f\xcf\xdc\x77\x3f\x86\x6e\xff\xf4\x38\x83\x4a\x00\x8f\xd3\xb6\x6c\xc9\x9f\x12\x9b\x01\xe4\x79\x53\x7b\x9a\x3c\x8f\x9b\xc6\x36\xde\xd1\x8b\x57\x8b\x0f\x62\x82\x3f\x05\xa1\x3e\x79\x65\x5a\xd5\x8a\x36\x9d\x81\xd9\xdc\x30\x12\x1a\xda\xee\x58\x7b\x4b\xab\x34\xee\x28\xee\x6f\x00\x08\xc3\xce\x0a\x9e\xc0\x6f\x12\xf8\x13\xe8\xee\x23\x7c\x03\x13\x15\x3e\x98\x91\xaa\x4b\x47\x67\xaa\x21\x1c\x9a\x41\x69\x64\xa2\xed\x7b\xc2\xb3\x41\x07\x0b\x68\xab\x89\xed\x41\xcf\x14\xe4\xa2\x46\xc0\xd9\x11\x9e\x03\xad\x72\x3a\x18\x4c\xd7\xd0\x60\x87\x99\x81\xd2\xae\x3e\x1f\x89\x89\x51\xc9\x74\xf1\x32\x59\x5b\xab\x78\xda\x3e\xe7\xac\x05\x3f\x37\x54\x36\x1c\x95\xc4\x50\xd1\x61\x9f\x4e\x44\xda\x6c\xc5\x2d\x94\x8b\xfe\x90\x72\x69\x3f\xac\x85\xb0\xfc\xe1\xc4\x97\x91\x3a\x1a\x3f\xf0\x95\x13\xcb\x6f\xbd\x64\x1b\x07\x7a\x57\x2a\xe9\x1c\x9a\x70\x9c\x0f\x55\x84\xf4\x01\xeb\x70\xc7\x3d\x9f\x75\xd1\xbf\x50\x90\x74\xa4\x08\x99\x41\x89\xcf\x43\x80\xef\x3c\x34\xb3\x9f\x64\xe8\xa3\xd6\x82\x51\xcf\x46\x15\xab\x49\xad\x4a\x15\x15\x02\x5a\xce\x14\x7d\x79\x17\x98\x1a\xd7\xc6\xd6\x24\x7e\xa7\x19\x28\xbb\x73\x64\x29\x20\x90\xef\x89\xbc\x1e\x25\xe3\x53\x15\xb1\xf1\x47\x7d\xd8\x65\xd5\x06\x92\x3a\xbb\xaf\x64\x68\xe1\xb4\x69\x54\xf2\xb5\xa4\xda\x50\xff\xea\x61\x45\x54\x7a\xed\x84\xf7\xac\x7c\x45\x70\x80\x59\xc0\xa3\xa1\xa8\xc4\x0e\x71\x5b\x11\x39\x0c\xfb\x67\x2b\xb5\x49\xdb\xcb\x5b\x34\x98\xa5\x53\xc5\xef\xb2\x13\xa4\xec\xe9\x6c\x29\x5f\xd0\x30\xa2\x5a\x26\x4d\xd9\x97\x2f\x6a\x63\x03\x6d\x05\xd2\x03\x9c\x11\xcd\x0e\x88\x7c\x28\x97\xe5\x27\x19\x64\xa7\xf6\xa0\x37\x18\x5b\xb3\xf1\x12\x6f\x87\xe7\x24\x3f\x45\x8d\xff\x77\x7c\x9b\x9d\x26\x1b\x9b\x4a\xaf\x1a\x40\xa4\xca\x08\xb8\x1b\xd7\xad\x1e\x98\x86\xd2\x07\x8b\x67\x89\x4a\xb0\x89\x34\xd6\x1b\xb9\x29\x37\xa9\x38\x32\x56\x2e\x18\x52\x9c\xa8\x35\xc7\x01\x38\xa9\xfa\xf7\x0b\x08\xaa\xc0\xe3\xae\xe6\xbc\x6e\xc8\x99\xbc\x42\xe6\xa9\x4e\xf9\x1b\xba\x32\x7c\xae\x4d\x1b\xd3\x24\x6a\x24\xe2\x6b\xa5\x98\xbe\x8f\x4f\x89\xf8\x51\x51\xcc\xe1\xc3\xea\x19\x2a\xdb\x38\x2d\x3c\x3e\x7f\x0b\xff\x63\xaa\x51\x07\xd6\xb7\x1e\xd4\x10\x1f\x67\x93\x5f\x45\xa0\xc3\xc8\xfa\x67\xc9\xab\x29\xbb\x9f\x65\xc1\x1e\x86\x44\x92\xe7\x30\x3f\xcf\x6e\x3a\x25\x87\x3a\x96\xbf\x84\x4f\xd1\xcd\xb0\x44\xf9\x21\x17\x1f\x26\xd5\xe4\x30\x6f\xec\x32\x18\x55\x97\x43\x52\x8d\xfb\x25\x60\xdb\x2b\x53\xc0\xbe\xed\x95\xc9\xa5\x97\x02\xb1\x75\xaa\x9d\x60\xc6\xcb\x80\x65\x78\xe9\xd0\xa9\x08\x5e\x87\xf0\xcf\x79\x3b\x33\x20\x6a\xa6\x5c\x00\x35\x36\x87\x7b\x63\x67\x40\xbc\x91\xe2\x79\x3d\x9d\xbd\x34\x3f\xea\x30\x9b\x20\xca\xac\xfb\x4e\x36\x2a\xba\x2a\x40\xa0\x78\x0c\x17\xd5\x44\x64\x5c\x59\x81\x8f\x70\x45\x65\xf5\x2a\xde\xbb\xc1\xae\x91\xc0\xf6\xb5\x6a\x83\xe6\xe4\x4e\xa1\x76\xb0\x5c\x08\xd3\xe2\xda\x6c\x6c\x4e\x74\xcc\x7f\xfd\x3f\xff\xbf\x47\xbd\x2e\xaf\xa7\xa3\xf2\xc9\xae\xaf\x78\x86\xfb\x28\xf6\xf5\x51\x78\x92\x2b\xd7\xb6\xf0\xb8\x42\x0f\x00\xc8\xd3\xde\xb4\x69\xfc\x7c\xf7\x44\xbb\x16\x34\xed\x38\x28\x4e\xf9\x53\x45\x46\xc7\xe6\xb9\x44\x6f\x3f\x0b\x1f\x68\x68\x2e\x17\x26\x42\x86\x54\x88\x70\x44\xdf\xa9\x91\x8e\x92\xbf\x0c\x42\x8b\x2b\xdc\xcb\xb5\x78\x2a\xce\x5a\x5c\xde\x71\x36\x61\xf1\xa6\x2c\x5a\xcb\x21\x93\x15\x0a\x61\xaa\x8b\x39\xce\xf3\xe0\x00\x27\x95\x3f\xad\xcc\xa8\xfe\xef\x16\x4a\x3c\xb8\xc5\xa7\x30\x27\x31\xcf\x36\x32\x97\x7c\x60\xbf\x25\x88\xad\x36\xea\x34\xea\x13\xe5\x58\x09\x8c\xaa\xdf\x79\xce\x4a\x76\x5d\x1d\x75\x26\x17\x5d\x27\xe8\x63\x11\xd4\xb1\xf3\x59\x6f\x41\x3e\x4b\x4d\x6d\xd9\x26\x62\xa9\x10\xad\xd6\xb6\x5e\x1f\xb9\x0c\x6d\x3c\xf4\x6a\x75\xa2\xc8\x5e\x19\x10\x26\x80\xc3\xa2\x22\xaf\x63\xc2\x42\x11\xc7\x3e\xf6\xec\xe0\x17\x72\x56\xb8\x1e\x3d\x1f\x16\x6e\x11\x04\xc8\x06\x82\xbc\xc5\x1f\x4b\x20\x64\x29\x14\x05\xaa\x6b\x76\x02\x10\x6c\x95\x17\x2b\x56\xd2\xa5\x12\x57\xf8\x68\x67\xf8\x82\x72\x7b\xeb\x3c\x1c\x74\x64\x18\xf6\xda\xe2\xdb\x4a\xfc\x7c\xa0\x9e\x54\x80\x2a\x9a\x95\x80\x9d\x84\xb3\x00\x12\x2a\xfe\x16\x67\x1f\xbe\xff\xe8\x60\x1a\x92\xc5\xdd\x87\xdf\x7f\x74\x8f\x7e\x3a\xfb\xf0\x87\x8f\x68\x6a\x37\x2b\x5c\x6f\xe4\x9d\x5a\xc0\x80\x05\x03\x34\xea\x73\xec\x18\x15\x39\x76\xcc\x4e\x96\x4f\x34\x15\x9f\x7c\xb9\xc5\xa3\x6f\xbe\xc9\x0e\x6f\x63\x56\xb9\xc3\xcd\xb8\xaf\xb9\x8f\x8e\x28\x40\xf8\x8a\xc5\xc3\x08\xd4\x12\xaa\xfc\x35\x7e\xa7\xee\xfe\x1b\x30\xbd\x67\xd8\xd3\x5f\x43\xb1\x60\x1b\x4f\xd0\x99\x37\xbc\x0b\xb6\x95\x8c\x46\x93\xe1\x1a\xbf\xcd\xf4\x2d\x5c\xec\x8f\xb1\x99\x36\xb3\xf1\xa3\x73\x00\xef\x72\x22\xef\x0e\x27\x40\x49\xd2\xf0\x23\xf4\xb7\xcc\x0a\x8d\x8a\x20\x3c\xe9\xf8\xf4\x35\x07\x1f\x14\x8e\x6a\x80\xbb\xc6\xcf\x49\xe6\x43\xc8\x86\xa2\x00\x1f\x9c\x69\x89\x31\xe8\x64\xa2\x78\x98\x89\xa9\xf8\x51\x0a\xdd\xc2\x82\xfa\xfe\xa3\x7b\x14\x87\x1b\xbf\x7e\xc2\xc5\x52\x0c\x3a\xd5\x17\x71\x84\xcf\xaf\xc4\xc2\x1a\x87\x41\x6d\x22\x1e\xbe\x2d\x6d\x69\x76\xa8\xab\xfc\x6c\x92\xc5\x95\xaf\xab\xa2\xb7\xec\x2b\xfc\x1d\xfe\x48\x35\x07\x07\x44\xc8\xf1\x5e\x66\x9f\x71\x99\x17\xa6\x1d\x9c\x18\x3c\xba\x85\x07\xf0\xac\x4a\x28\x2c\x60\xd9\x25\x4f\x90\xc8\xfe\x6a\x83\xcc\xd3\x58\x73\xaf\x06\xc7\xaf\x34\x19\x23\xeb\x14\x7f\x69\x75\x9a\x9e\x89\xfa\x21\xd4\x0d\x12\xdd\x53\x71\x23\xef\xd5\xe4\x10\x0f\x4c\x4f\x64\xa2\xca\xfc\xc6\x76\x36\x31\x59\xf8\x35\x05\x20\x73\x9b\xb3\x76\x91\x3f\x4a\x4b\x93\x77\x2e\xba\x0f\x2c\x4f\x1d\x82\x5c\xe8\x0c\x65\x4c\x94\x57\x65\x66\x74\x07\x41\x0d\x44\xa7\x10\xc1\x1d\xe5\x1c\x0b\xbf\x7b\x42\xd0\x68\xef\xb3\x08\xb6\x6c\xe8\x4f\x3c\x46\x6e\xaa\xa6\x51\x2e\x4d\xc6\xfd\xda\x14\xd6\x6b\x8c\xfb\xb4\x3d\xd5\x72\xe5\x49\x9d\x4a\x6d\xfd\x8c\x2a\x35\x23\x93\xbd\x1c\xbc\x6e\x74\x2f\x23\xa9\x7c\x97\xa5\x04\x48\xe9\xbd\x6c\x76\xb0\xad\x73\xa6\xeb\x57\x52\x09\xb0\x26\x00\xd6\x23\x76\x07\x6f\xa1\xbc\x5c\xff\xba\x50\x3a\xba\xa1\xcb\x4b\xc7\x44\x40\xf1\x6b\x45\x97\x32\x99\xc0\x96\x5f\xce\x70\x66\x63\xf7\xbd\x1c\x54\xa9\x20\x85\x94\xa8\x21\x5d\x84\x0b\xb3\x14\x80\xfd\xc1\x8a\x78\x65\x84\x4e\xf4\xe1\x04\x2b\x55\x7b\xa8\x03\x8c\x5a\x89\x12\x2d\x7a\xbd\x7b\x8a\x6f\xf9\xa6\x15\x72\x0d\x4f\x05\xff\xe2\xfc\xe2\x36\x6b\x7a\x8b\x15\x7a\x6e\xeb\x41\xb9\xb1\xc3\x19\x41\x43\x64\xfa\xd8\x90\x09\x6d\x00\x42\x4f\xe6\xc0\x6d\xa5\xba\xb2\x43\x84\xfc\x9c\xf3\xb3\x08\xc8\x5d\xab\x46\x02\xa3\x8e\x6d\x86\xbe\xee\x94\x6c\xb3\xde\x0f\x0a\x3d\xa2\x06\xfc\x3b\xe9\xea\xdc\x85\x3c\xcc\x58\x44\x1f\x14\x2d\x93\x91\x5a\x2b\x7f\x40\x0f\x03\xf8\x4e\x01\x06\x97\xd4\x49\xee\x87\x9c\x8b\xf8\xfe\xa3\xfb\x0e\xeb\xf8\x0e\x58\x89\x96\x29\xe9\xbf\xe1\x07\xd1\x53\x1e\xca\x89\xe4\xb7\xb0\x0c\x90\x1a\x85\x49\x3d\xe0\x1a\xf6\x56\xec\xd5\xb0\x55\xc8\x7e\xb4\x41\x19\x41\x74\xfd\xc7\xc6\xb6\x2a\x10\x6e\xfc\x2d\xb4\xf1\x36\xa6\xff\x21\xa6\x33\x7e\xc4\xc4\x5c\x46\xa8\x86\xd2\xfe\x35\xf4\xe2\xec\xc3\xff\xf8\x18\xd6\xa8\x97\xeb\x3a\x27\xd7\x64\x8b\x18\x3f\x0b\xa8\xa9\x0e\x26\xe5\x15\x17\xaa\x41\x0f\xc7\xf9\x7c\xa8\x7b\x5b\xd3\xd0\x44\xeb\x1c\xca\x60\x33\xdb\x7c\x26\xbd\x15\xbd\x1a\x80\x4c\xf1\x68\x46\x6b\xcc\x55\x31\x34\xc8\x7e\x0f\xa9\x26\x58\x35\x31\xe7\x76\x86\x36\xd2\x25\x86\x29\xc9\x12\xa1\x68\xa5\x97\xf5\x7a\x08\x36\xc6\xd2\xcb\x68\x6d\xb7\x8c\x8b\x61\xdb\x31\x3d\xab\x87\x51\xb4\x1b\xba\x33\xcb\xa8\x6d\x68\xbb\x76\x35\xbe\x2c\x22\x75\xe9\x2d\x3f\x17\xea\x74\xe3\x45\x4c\xd7\x8e\xdf\xb5\x93\x87\xe0\x2d\xf9\x5b\x8e\x41\x09\x36\x83\x72\x3b\xf4\x86\x0a\x00\x1b\x75\x10\x7b\x8b\x1c\x66\x24\x11\xd2\xd4\x68\x5c\x86\x5d\x2d\x4c\x54\x8a\x6e\xb0\xbd\x0a\x0f\xc8\xc4\xc7\x69\x44\x85\xe6\x40\x5f\x86\x8d\xcc\xb8\x97\xf0\x45\x12\xe0\xa3\xa2\x33\xf4\xdb\x9d\xae\x6b\x1a\x5c\x80\xd6\xc3\x5e\x1a\x32\x1b\xd5\x46\xd8\xa1\x55\x03\xbb\xc0\xc2\x47\x3a\x7e\xb7\x80\x99\xb0\x4d\x48\x0a\x2e\x9e\xa5\x9d\x8d\x0b\x76\x34\xbc\x01\xb1\x54\x54\xfe\xfe\xca\x4a\x91\xc7\x3e\x2e\x52\x5e\xc8\xc9\x66\xb8\xec\x6a\x4e\xb2\x0c\xb1\x14\xc5\xb0\x7d\xf3\x6f\x67\xed\xb7\xb4\x89\xf1\xb1\xce\xcc\xf2\x0f\x12\xa9\xe3\xf9\xe1\x0d\x54\x54\x3b\xf4\xf1\x06\x4b\x06\x0e\x0a\x00\xd2\x66\xbb\x0a\x44\x8c\x25\x86\xcc\xec\x0f\x99\x93\x9f\x73\x7a\x5f\xc0\xa0\xcb\x07\xa3\x0e\xd9\x66\xe7\x7b\x9b\x74\xd7\x11\x4e\xf5\xd0\x49\x4d\xbb\x81\x9e\xd8\x51\x29\xb2\xd8\xc6\x26\x9b\x46\xad\xaa\xcc\x86\x21\x3b\x59\x93\xa6\x22\xcb\x5e\x50\xab\x64\xb9\xcb\xaa\x95\x29\x40\x9b\x34\x88\x67\xae\xa8\xdb\xd6\xed\xa8\x6a\x96\x7b\xdf\x58\xdc\xb6\xf0\x35\x6d\x41\x90\xf7\xa6\x98\xa3\xf0\x53\x76\xa8\x76\xe3\x1a\x0e\x34\x72\xcc\x46\x07\x46\x66\xb6\xe1\x6d\x30\x58\xe7\xbb\x62\x66\x4d\x0a\xf4\x93\xf3\x66\x71\x70\x02\xff\x8b\x8e\xbc\xf2\x8c\x05\xb3\xd8\x3c\x37\xf5\xf9\xd9\xa8\x50\x8b\x2d\xbe\x09\x97\xa5\xdf\x96\x9d\x54\xf4\x7c\x1b\xfe\xe7\x19\xd1\xf5\x2e\xa3\xaa\x69\x1d\x32\x46\x44\xce\x29\xc9\xab\xeb\x79\xb4\x4a\x78\x7c\x3c\x1e\x8f\x4f\xf6\xfb\x27\x6d\xfb\x78\xa1\xd7\x19\x07\x19\xbb\x3d\xb9\x95\x67\x55\xcd\x84\x66\x67\x98\x32\x86\x7c\x79\xec\xd0\xc4\x22\x9f\xa7\xf7\xa8\x9d\x5c\x2b\x0f\x6b\x35\xbb\x28\xa6\x9d\x94\x66\xcf\xc1\x69\x64\xfb\x4e\xa5\x67\x2a\x40\x5e\xe8\x05\x5e\xde\x97\x89\x30\x93\x65\x4d\xdc\xc0\x3d\xd8\xc0\x68\x5f\xc6\xcc\xa5\xdd\xa4\xc6\x4c\x06\x85\x42\x50\x9c\x1c\x92\x4c\x88\x48\xc3\x1a\x05\x89\x05\xc0\x65\x31\x22\xd5\xfe\xdf\x29\x4a\x2c\x55\xbf\xb4\x0c\x3e\x23\x4c\x54\x07\x7d\xa7\xc5\x53\xf1\x67\x7d\xa7\xf1\xf7\x8a\x1d\xf7\x65\x8e\xfa\xbc\xc5\xec\xdf\x15\xf9\xa1\xaf\x90\x83\xf6\x4a\x3b\x25\x50\x53\x2f\x28\xee\x03\x3d\x4b\x1a\xbb\x56\x74\xfa\x8e\xce\x76\xdb\x8c\xa8\x65\x38\xb2\x1f\x89\xbf\xa2\x53\x07\xbb\x55\xf8\xda\x3b\x32\xf0\xda\xf3\xa2\x5a\x51\x85\xbc\xc6\xd1\xc3\x4c\xcd\xb1\xb9\x78\x93\x93\xe9\xc6\xe0\x3c\x9e\xe5\x04\x9e\x47\xef\xc2\x04\x66\xda\x39\x9d\x59\xf6\x04\x4f\x6e\x01\x72\xac\x6f\xd8\x3d\x3b\xe5\x07\xdb\xef\xd2\x72\x02\x7a\x4e\xd6\x34\xc0\xad\x2b\x21\xd7\x76\x64\x83\x23\xd6\x0b\x26\x02\xc1\xfd\x40\xc7\xd4\x5c\x13\x88\xe6\x59\x1d\x68\x2d\xcd\x15\xf0\xcd\xc2\x99\xc3\x9b\xdd\xa0\xdf\xc0\x72\x67\x8e\xc0\x71\xa5\x43\x4a\xcd\xf7\x07\x2c\x48\x17\xfd\x49\x79\xd3\xfe\xd0\x6b\x9d\x02\x84\x0f\xb6\x65\x28\x63\xbd\x6e\x54\xfd\x7d\xe0\x59\xf2\x17\x3d\x64\x3b\xb0\x55\xcc\x26\x83\x0c\xc8\x5c\x72\x74\xa2\x0a\xfb\x5d\x0d\x1e\x3d\xa6\xc6\x19\x9a\x5f\x0a\xe3\x42\x42\x54\x93\x67\xb7\xe5\xbd\x70\x86\xc3\xf1\x34\xbb\x6c\x10\x83\x83\x89\xf0\x3c\x94\x3f\xcf\x5c\xb5\x18\xb9\x2b\xa4\xad\x68\xb2\x5c\x8c\x21\x92\x65\x65\x8e\xa9\x99\xbd\xcf\xbe\x4f\x80\xad\xe8\x5d\x0b\xfb\x6b\x3c\x05\x44\x37\xe7\xbc\x92\x4e\x01\x61\x08\x2d\x7a\x1a\x71\x0a\x64\x34\xe1\x82\xe8\xa9\x78\x1f\x7e\x27\xe0\x9d\xb5\x77\xe4\x96\x7c\x8d\x3f\x53\xce\x56\xfb\x90\xf9\x42\x7b\xf1\xb2\xcc\x5d\x4b\xa7\x9b\x3c\x76\xd9\xcf\x90\xb0\x30\x78\x6c\x60\x9c\x41\xf2\x23\x83\x39\xa8\x3b\x9a\x26\x45\x7c\xbb\x39\x9a\x46\xbc\xb1\x87\x39\x2a\x00\xd3\xa6\x0e\xbc\x7b\x42\x09\x39\xd1\x09\xfb\xe7\x79\x7b\xda\x97\x92\x5d\xf8\xae\xb2\x86\xd0\xd0\xbf\x0d\xce\xf4\x6f\x8a\x29\x60\xfb\x80\xac\x47\x6c\x67\x35\xef\x11\x3b\xe2\x00\xa6\xf3\xcb\xdc\xd8\x2c\xb9\xaf\x99\x1a\x8a\x44\xec\xb2\xbd\x87\xd3\xb0\x2d\x62\xd2\x71\xda\x42\x63\x60\x23\xc4\xc7\xae\x14\x80\x02\x09\xbc\x3b\x3a\xaf\xf6\x59\xff\x9c\xa2\xb7\x23\x46\x76\x35\x1f\x01\x70\x9e\xaf\x47\xdd\x79\x6d\xb0\x50\x09\xad\x3e\xcd\xa1\x43\xda\x04\xbc\x00\xe5\xb8\x42\xbf\x04\x50\xdc\xe6\xef\xaf\xaf\x1e\x00\x0f\x1d\xf8\x53\x11\xda\x62\x0d\x23\x44\xd6\x15\x74\x29\xf5\xfe\xfa\x8a\x22\x8f\xf9\x9d\x3a\x96\x57\xac\x5e\xae\xb3\x31\xa4\xb3\x74\x32\x2c\xa4\x30\xc6\xd7\x37\x6a\x38\x31\x30\x08\x53\x33\xcc\x64\x84\x3a\xbd\xdd\xf9\x83\xc2\xa7\xb8\x0f\xe0\x8a\x9d\x5b\xc2\x15\xc7\xef\x04\x82\x58\x98\x73\xa6\x63\x89\xb7\xe9\xe2\x96\x71\x2e\x0f\x6a\x56\xf4\xbf\x7b\x5c\x73\xd4\x91\x9d\x3d\xdd\x38\xf1\x1c\x61\xe6\xe5\x69\x68\x9c\x3f\x92\x6d\xda\x32\x82\x37\x72\x8f\x6e\x20\x00\xea\x87\x07\x71\xac\x82\x4b\xd7\xa7\xe2\x0d\xfd\x7a\x18\x1c\x5d\xc1\xa6\x32\x17\xd9\xe7\x43\x7d\xcd\x1f\xe4\x36\x12\x3d\x4a\x88\xdc\x54\x81\x0e\xc4\xbf\x8f\x4e\x0d\xff\x10\x7f\x87\xcd\xfd\x0f\xf1\x77\x6d\x5a\xf5\xe9\x1f\x41\x8f\x14\xa3\xca\x00\xe1\x38\x9f\x3d\xef\x24\x01\x15\x06\x01\x8b\x65\x23\x8f\x92\xe7\x64\x41\xe7\x22\xb1\x0b\x6f\xe2\x7b\x1f\xbc\x9e\x01\xe7\x38\xe8\xf5\x38\x39\xdc\x5a\x89\x36\x6e\xbf\xd1\xdd\xf7\x33\xfc\x12\xff\x37\x70\xd6\x11\x04\x83\x6d\xa2\x13\x4e\x10\x6e\x1d\x3d\x8f\x62\x67\x82\xe4\xa1\x8a\x2e\x40\x64\x0c\x1b\xe0\xca\xf7\x21\xe5\x79\x9e\x7c\xff\x93\x8b\x2b\x69\xc8\xdb\x0f\x39\x36\xcb\x4e\x38\x73\xaf\x06\x1f\xd5\x69\x5e\xdc\x5a\x71\xad\xb6\x63\x27\x87\xfc\xe5\xd1\xb4\xc0\x74\x5a\x02\x1e\x66\xc5\xf1\x0c\x81\xc1\x11\x03\xe3\xca\xc8\x6e\x7c\x83\xc4\x92\xfa\xa0\xee\xd5\x40\x8e\x42\xa6\xb5\x10\x4f\xe4\x90\x29\x7a\xc2\x5e\x15\xcb\x27\xcf\x45\xc5\xd9\x68\x70\x1b\x50\xb7\xb8\xd4\x0a\xba\xf2\x8b\x6d\xa0\x97\xcf\x0b\x2d\x48\xd7\x97\xe1\xed\x33\xeb\x1d\x27\x5c\x09\x41\x93\x03\x82\xc9\x6b\xb4\x24\x1d\x12\x54\x70\x26\x4f\x4d\x42\xe3\x82\xd2\x51\x57\xbe\x1d\xc8\xf9\xe3\x53\xd8\xa0\xf4\xf3\x6d\x70\x1f\x39\x07\x8b\x2a\xaf\xe4\x33\xb2\x1c\x14\x18\x0b\x5e\x07\xb8\x21\x78\x92\xca\xd7\xf0\x70\x9e\xc7\x38\x7a\xec\x5a\x1f\xd9\x2c\x74\x88\xe0\x16\x9a\x37\x99\xa6\xc5\xb7\xf3\x7a\x93\xad\x61\xb4\x51\xd5\xa6\xd5\xf7\xba\x1d\x65\x87\x8d\x79\x08\xef\xef\x4b\xbc\x8d\x35\xf8\x8a\xec\x24\xee\x49\x87\x70\x87\xc7\x78\xaa\x68\xf5\xb3\x49\xde\x6c\x17\x7b\x04\xc4\x27\xde\xe3\xf1\x4e\x42\xaf\xb4\x22\xf9\xa5\xcc\xe5\x4a\x12\x1a\x71\x7d\x90\x73\x9e\xb0\x4a\x7f\x98\x71\x0d\x7c\xf1\xf6\xcb\x00\x38\xf1\x9c\x7e\x26\xbd\x5c\x04\x0b\x13\xfa\x36\x58\xa3\x2a\x2c\x84\xbc\x41\x2b\xbd\x4c\x9a\x3b\x63\xf9\xf1\xfc\x5a\x36\x77\x8b\x32\xc1\x22\xfe\x85\xfd\x95\x8b\x1d\x30\x70\x21\x40\x22\x5a\x0b\x43\xc5\x40\x4e\xcf\xe6\xcc\xd0\x4c\x38\xbe\xce\x49\x53\x68\x70\xb2\x82\xc5\xae\x4c\x5d\xd4\x25\x82\x39\x31\xae\xc7\xa6\x2d\xd1\xa3\x13\x03\x15\x3a\x50\x78\x96\xfd\x67\x46\xeb\xf4\x40\x25\x42\xf4\x59\x8f\x0a\xa7\xf1\xfd\xfe\x24\x61\xcb\xfc\x1e\xe4\x52\x20\xd0\x4a\x8e\xcf\x1b\x34\xfe\x79\x17\xe9\x29\x31\x86\x0b\xd6\x1e\x87\xfc\x9c\x95\x1c\xe7\xd1\xbe\x83\x5c\x6c\x66\x2e\x40\xf2\xcb\x77\x77\xba\xad\xf8\xf2\x86\x06\xe0\x22\x3c\xe0\x0f\xcc\x0d\x6a\x30\xe0\xfc\xec\x95\x69\xd1\x08\x62\x43\xfa\x2a\x5a\x16\x53\xa4\x27\x57\xca\x67\xf4\x28\xa7\x24\x87\x65\x64\x41\xda\xfc\x8c\x5f\xc4\xf9\xee\x0f\xa6\x06\x18\xf6\x1a\xcd\x0d\x92\xe4\x24\xef\x90\xbf\x0c\x74\x19\x5d\xc7\x04\x82\xbb\x80\x6a\xf1\x44\x48\x2e\x80\x63\xd3\x42\x81\xe1\x74\xf3\x4a\xaf\x1c\x4b\xde\x38\x32\x79\xa6\xad\x27\x26\x15\x17\x6d\x8b\xfd\x29\x4c\x2b\x4e\x16\x98\xb8\xcf\x2a\x70\x95\xee\xb3\xe6\xeb\x65\x52\x71\xf0\xa1\x35\x17\xaa\xed\x90\x5b\x10\xe4\x0d\x5b\xe8\xd2\x62\xb1\xe2\x92\x87\x82\xe4\xc1\x7a\x4c\x8f\x04\x76\x14\x89\x2c\x57\x2d\xa4\x87\x59\xd3\xe3\x71\xb2\x66\x1f\xf0\xb9\x15\x1a\x45\x5a\xc6\x53\x23\x77\xb9\x38\x6a\xec\x14\x27\x17\x92\xd1\x26\x9c\x42\xb8\x95\x66\xb8\x6c\x2d\x8e\xe7\xe3\x2a\x2b\x81\x0e\xf1\xd3\xeb\xf7\xda\xdb\x7a\x3d\x1b\xf8\xc2\x3f\x7e\xf9\x00\x9e\x5f\x3b\x92\xff\x33\x64\x24\xf3\xb2\xab\x42\xb8\x02\x36\x1e\x9d\xa9\xb3\xaf\x1d\x0e\xab\x3f\x75\x70\xcd\xb9\x87\x9d\xcd\xd8\xaa\xcf\x57\x00\x0b\xef\x40\x1a\x13\x5e\xa4\xac\x3f\x99\x28\x56\xa2\x22\x94\xb5\x2b\x78\x33\xb7\x1f\x9b\x1d\x29\x3e\x51\x89\xc2\xb1\x7a\xdf\xde\xdc\xe2\x2d\xbd\x17\x7e\xd0\xdb\x2d\x9c\xf0\xe2\xcf\x3b\x65\x30\x78\xa2\xb3\x7b\xc5\xe4\xb3\x69\xc6\x01\xd5\x1b\x14\x25\xee\xa0\x82\xb7\x2a\xd3\xf2\x79\x97\xbb\xcc\x0c\xfa\x03\xba\xad\x17\x18\xc7\x16\xad\xd9\x7a\xd5\xe8\xcd\x71\x25\xae\x94\x1c\x0c\x05\x5d\x0b\x06\x46\x0f\xbe\x15\x89\x3d\xc1\x17\xce\x3f\x7e\x27\x7f\xca\x0f\x69\xca\xcc\xf7\x07\x9f\x84\xb3\xe1\x99\x82\x2e\xb9\x87\x0a\x23\xfc\x90\x6a\x1c\x4f\x05\x3a\xfb\x35\x1c\x32\x82\xdf\xdf\x7e\xc9\x3e\x98\xb5\x21\x8f\xd2\x47\x55\x7f\x29\x65\x67\x54\x2b\x8c\x05\x19\xdb\xf2\x54\xdc\x2a\x87\xfe\x84\xf0\xfb\x33\xe0\x61\x08\x6e\x28\x5c\x13\x9a\x5c\xf6\xa3\xdb\xf1\xb2\x88\x58\x43\x60\x49\x64\xd9\xc2\x18\xb9\xb9\xba\x67\xb1\x8e\xd4\x45\x6c\xda\x61\xda\x4f\x5a\xfb\x74\xdb\x4e\xd5\xfd\x6d\x54\xa3\xc2\x80\xc5\x7b\x79\xa4\x40\x84\x1b\x75\x10\x4e\x35\xd6\xb4\x2e\x3c\x54\xd5\x1e\x1f\xd3\x38\x31\xf6\xe1\x71\xd3\x6c\x4a\xe6\x6d\x4b\xd7\xc5\xe1\x8e\x78\x01\xc4\xf5\x96\x3c\xc7\x5c\xf3\xcf\x39\x10\xdd\x3b\x41\xaf\x5e\xd2\xaf\x39\x48\xcf\x81\x76\x62\xc8\x9d\x39\xc8\xda\xb6\x30\x67\x3f\xdb\xf6\x38\x57\x83\x86\xd9\x89\xba\x50\xdc\xcb\xbd\x3d\x60\xcc\x87\xf5\x11\x33\xb4\x77\xaa\xdb\x90\x4b\x7c\x10\x30\x55\x78\xf3\x8c\x1c\x4b\x7c\x96\x2d\x68\x0b\xf1\x38\xa1\x33\x3f\xb4\xdc\xcf\x8d\x33\x38\x4a\x70\xee\xe7\x76\xda\x26\x7a\x11\xcd\xed\x7a\x45\xc2\x01\xce\x26\xea\x3f\x29\x36\xdb\x39\x08\xd7\x7d\xf6\x6a\x2c\xe8\x75\x7a\x8a\x8b\xa6\x5a\xa4\x01\x18\x66\x22\x80\x90\x74\x45\x8f\x12\x33\x37\x48\x89\xa7\xd6\x0e\xeb\x59\x68\x11\xbb\xad\x82\x01\x22\x87\x55\x33\x88\x64\x17\x8b\x40\xc1\x01\xe6\x94\x47\x62\xf0\xa4\x5c\x7d\x59\x90\x8f\x8c\x00\xc7\x89\xb1\x5b\x66\xec\x38\xde\x19\x29\x59\x80\xb0\x06\x9d\x4a\x66\x03\x03\x63\xf5\xfe\xfa\x2a\x27\x86\xe7\x42\xc2\xf9\x4b\x2a\x89\x41\x6d\xe5\xd0\x86\xa7\xd7\x4c\x98\x77\xd2\x13\x01\xce\xfd\x32\xa3\x23\x11\x46\x41\x8f\xe6\xee\xb4\x41\x5f\x5b\x28\x3b\xb0\xf2\x0b\xc4\xb8\x74\xdd\x05\xb4\x78\xec\x81\x3c\x13\xad\x0f\xf5\x60\x97\xbf\xf9\xf7\x9b\xb7\x6f\xce\xc5\xa7\x27\x87\xc3\xe1\x09\x14\x7f\x32\x0e\x9d\x32\xd0\x85\xf6\x5c\xfc\x5f\xaf\xaf\xce\x85\xf2\xcd\xb7\x2b\xf1\x9a\xa8\x76\x22\x86\x6c\x71\x82\xd6\x64\x68\xbe\x31\x0e\xff\x02\x35\xe7\x1d\xc3\x8a\xc5\x3c\x50\x55\xce\xdc\xc1\xec\x85\xb7\x06\x21\xc6\x13\xbe\x39\xc8\x18\x85\x66\x50\x68\xaa\x8f\x3f\xb2\x8c\x4e\x36\x77\x4b\x6e\xe0\xa7\x20\xba\xb1\x86\x9b\xf1\xaa\xe1\xe0\xf3\x13\x90\x60\x9d\x7a\x89\x76\xa9\x49\xd5\x09\x13\x17\x4f\xe1\x9d\x32\x40\xa5\xc6\xae\x2d\x0f\x98\xb5\x0a\x13\xa1\xda\x3f\x4e\x0b\xa3\x5b\x0d\x8c\x9d\xfc\x54\xfc\x3b\x3e\x2b\xdf\x85\x1b\x2d\xc8\x0a\x6b\x0b\x81\x57\xd3\xc2\x18\x0f\x2f\x93\x7e\x9e\x8a\x57\x14\x98\x2f\x48\x5f\x29\x2f\x4a\x60\x33\x24\xac\x0c\x7b\x2a\xae\x94\x17\xfb\xa8\x1c\xc3\xb5\x46\xe8\xe6\x45\x4a\x8b\x87\xe5\xec\x30\x2e\x64\x85\x72\xce\x9e\x36\x82\x39\xc0\x7c\x1c\x0a\xfb\x9e\xc2\xb2\xe7\x01\xd0\xe8\x35\x2a\xb7\xca\x21\x3b\xef\x73\xb2\x5e\x6f\xcf\x45\xb0\xfc\x3e\xe7\x7b\xcd\xf3\xf0\x58\xac\x3d\x17\xa3\x49\xbf\xc9\xea\x96\x05\xa2\xf0\x89\x76\x15\xf0\xc9\x37\x40\xbb\xc1\x1a\xfd\xdb\xc2\xa0\xe0\x61\x4a\x5e\x51\x16\x27\x39\xa3\xf0\x08\xca\x4a\xb8\xb9\xf8\x4e\xa4\x35\x44\xba\x54\xd3\x8c\x64\x58\xf5\x4c\x79\xf4\x8b\xbe\x44\x4d\x48\x5b\x15\xd7\x5d\xda\xff\x81\x42\xf3\xf9\x49\xac\x28\xf9\x94\x2c\xe8\x1f\x12\xbf\x52\xe2\x59\x3e\xce\x57\x33\xea\x9a\x78\x57\xa6\xae\x33\xfe\x8c\x01\x27\x75\xcc\xd8\x22\x9e\x8a\xb9\x38\x95\x6a\x38\xc5\x01\xd2\x9b\x98\xc0\x99\x84\xd8\x2c\xe8\x98\xf7\x59\x4c\x2b\xf9\xe9\x40\x67\xf0\xe4\x28\x89\x0c\x3e\xb7\x45\x4a\x90\x9f\x09\xc0\x99\x97\x56\xf5\x00\x82\x36\xf5\xda\x78\x15\x1c\x22\xcd\x7c\x69\xe7\xbc\x0a\x61\x0d\x9e\x51\xc9\x83\xeb\x24\xb3\xb5\x7b\x89\x37\xba\xcf\xf0\xc7\x8c\x36\xed\xa4\x31\x64\xbd\x42\xbf\xf2\xd1\xea\x3b\x7b\x0c\xee\xc6\x9f\xe1\x17\x87\x50\xc9\x7b\x96\xc0\xb8\x53\x09\x72\x09\x57\x62\xa6\x11\x0a\xb1\xa3\x4c\x39\x28\xd9\x3e\xa1\xf8\xf8\x38\xa5\x2b\x71\xbb\x53\xc7\xe8\xb0\x0a\xe3\x93\xe0\xed\x42\xe9\x9b\x95\x22\xaf\xb3\xd7\xee\x6c\x68\xd0\x25\x52\xde\x81\xbf\x64\x01\x4a\x59\x8a\x32\x47\xd1\xa6\x66\xe4\x7a\x8b\xc2\xde\x6a\xa9\x17\x73\x37\xd9\x11\x6a\xea\xce\x3b\xf5\xf4\xa4\x3b\xef\xbc\x68\xee\xd3\x3b\x2b\x8a\x27\x7f\x1c\x84\x45\x03\x83\x62\x5a\xe6\x1e\xbb\x53\x57\xbf\xc0\x69\xf7\xf2\xcc\x4d\x45\xa7\xcf\x4e\xf5\x43\xf6\x45\x6d\xde\xb9\x2f\x70\xdf\x3d\x7d\x55\xff\x05\x52\xd4\x52\x5b\xd2\xa0\x64\xa3\xfb\x39\x6b\xa3\x56\x6f\x36\x2b\x72\x4f\x54\x3b\x3b\x0e\x18\x59\xf2\x67\xfc\x16\x37\xf8\x4d\x20\xec\x8e\xe2\x29\xfb\xa5\xa0\x44\x7e\xd6\xf3\x94\xcd\x24\x29\x11\x0d\x8e\xa7\x51\xf6\x9f\xe9\xcd\x86\x8c\x8f\xdf\x58\x0c\x76\x42\x39\x2b\x2a\x82\x51\xc9\xe1\x17\x7a\xf7\x8e\x51\xc9\xb1\xd0\x0d\xa4\x64\x60\xae\xef\xb4\x47\xcf\x4e\x00\x06\x1f\xe8\xdb\x29\x83\x18\x0d\x7a\xae\x08\x30\xef\xe9\x33\x87\x02\x94\xf1\xfd\x4f\x50\xc1\x9e\xb5\xd1\xdd\x02\x0a\x0f\x49\x39\x8b\x2b\x34\xc0\x9d\xb5\xb0\xac\x34\x4a\x07\x09\x24\xf7\x96\x7b\xd6\x46\xc5\x50\x82\xe0\x81\x46\x82\xf5\xf3\xab\x37\xf4\x89\x9e\x98\xf8\xc1\x2e\x3a\xa8\x7a\xae\x3b\x1e\x6f\x8e\xf4\xd3\xa3\xbb\x07\x8a\x98\x0f\x70\x90\x27\xb2\xe4\xcc\x64\x35\x77\x51\x45\x38\xbc\xb5\xf5\x5e\x9a\x63\x34\x66\xbf\xb1\x7b\xc5\x92\x11\x48\x50\x14\xad\x71\x67\x0f\x99\x7d\xaf\xb5\x02\x8a\x30\x54\x18\x90\xa0\xa5\x00\xb4\x55\xf0\xca\xb5\x5a\xf2\xce\x15\xf2\xc8\xad\x1a\x69\xcb\x69\x97\x32\x48\x84\x68\x07\xb9\x41\x73\x4b\xf8\x1f\x53\xfb\x41\xa5\x62\xef\x06\xf5\x64\x5a\xcc\x79\x5e\x52\x37\xf8\x23\xa6\xb3\xb9\x24\xfc\x8b\x69\x72\x47\xa6\x3a\x69\x66\xd2\x8c\x05\xcb\x5e\x6f\xc5\x99\x63\x2f\x1e\xbc\x11\x27\x15\xe2\x2e\x48\x41\x8f\x71\x8f\x5c\xda\x56\x15\x7d\xcd\xed\x30\x31\x60\x81\xdb\x89\x38\x3e\xde\x0a\xed\xc9\x19\x79\x3f\xd8\x76\x6c\xfc\xaa\x68\x77\x51\x9a\xd8\x17\x15\x56\xa3\xe8\xec\x16\x65\x0c\x74\xbb\x44\x31\x64\x46\x03\xe2\xb6\xc7\xb8\x59\xe4\x30\x84\x37\xb9\xde\xf7\x03\x69\x0c\x03\x7a\x2f\xb7\xd1\x59\xba\xdc\xd2\x0b\xb3\x94\x87\xfa\xa9\x10\x09\xae\x28\x93\xa2\x32\x87\x4b\xe1\xe4\xbb\xc5\xcb\x2d\xf2\x7d\x4d\xee\x27\x0f\x98\x58\x6b\xe8\x72\xdb\xed\xb2\x06\x14\x27\x4e\x48\x9d\x9f\x32\x21\xa7\x34\xc1\xca\x96\x05\x6f\x67\x76\x57\x16\x73\x40\x3e\x22\x26\xff\x8a\x7e\xad\x56\xab\x85\xd5\x34\x77\xe7\xdf\x0f\xea\xc9\x74\xae\x33\xf8\x38\x00\x7f\x56\x8f\xbb\x4e\xf4\x56\x1b\x2f\xc8\xa4\x50\xfa\x62\xa5\x04\x85\x29\x4f\xad\xb6\xe6\x09\x1e\x5f\xa9\x19\x53\x43\xda\x58\x1d\x2f\x94\xb4\x64\x66\xab\x1d\x1d\x8d\xf3\x4e\x41\x1b\xc5\x72\xbb\xe0\xea\x49\x1b\x06\x8d\x85\x67\x1b\x8d\x98\xc3\x04\x55\x5e\x94\x2d\x00\xd3\x51\xc8\x59\x49\xc1\x3e\x85\x59\x3e\xfd\x42\x3d\x53\xa3\x44\x8c\xce\xe4\x7a\x6b\xe2\x9d\x93\x97\xdb\x07\xce\xba\x59\x6d\xf9\xc5\x0d\x55\xf1\x99\xc3\x6d\xba\x07\x4a\x13\xc7\x0c\x0f\xb3\x20\x40\x41\x79\x8f\xcc\x58\x90\x19\x2e\x36\x09\xcf\xf6\x55\x58\x07\x31\xcc\x39\xb7\x9f\x9f\xe3\xe1\xc1\x1c\x7e\x57\xd5\x07\x3b\x6c\x3f\xa6\x70\xb5\x51\x8f\x5f\xa8\xe2\x51\x9b\x03\x30\x31\xbc\xdc\x09\xc0\x14\x72\x2e\x61\x0c\x0b\xf8\x05\x6c\xd3\x52\x03\x0f\x00\xa4\x4b\xa3\x28\xea\x68\xea\x1b\xbc\x93\xaf\x82\x6b\x4c\x8a\x94\xc9\x36\xb8\x79\x75\xe4\xb1\x32\x59\x76\xbe\xe7\x07\xf6\x6c\x55\xfe\x54\xbc\xc3\x1f\x95\x36\xf7\xda\x03\x5f\xb1\x57\x64\xce\xf2\x0a\x13\xf0\x1c\xb2\x46\x55\xe4\x0d\x9f\xa2\xeb\xba\x0a\x5d\xb7\xf1\xd5\x81\xc3\x97\x61\xf8\x8b\xd3\x27\x01\x25\x8b\x00\x90\x99\x3f\x32\x0c\xcd\x5a\x18\x0e\x03\x72\x1c\x95\x85\x27\x05\x31\xda\x6f\x08\xf1\x8b\x43\x88\xa9\x0f\x41\x17\xae\xbf\x81\x3a\x8c\xc1\x57\x07\xe2\xc2\x37\x73\x86\x84\x1c\x5c\x54\x18\x2e\xd6\x14\x8f\x88\xdd\x2a\x55\x93\xd1\x9a\x1d\xbd\x37\x48\xc5\x80\x69\x44\x93\xc9\x3f\x12\x7c\xe1\xfe\x96\x15\x2c\x92\x5c\xf7\x53\xb2\xe8\xd4\xbd\xea\x0a\x8d\x0b\x22\x02\x09\xe1\x8f\x27\x02\x5e\xce\xc3\x23\x7f\xbd\x4f\xe5\x39\x8e\x07\xbd\x2a\x23\xba\x34\xa0\x59\x63\x52\xa8\xe5\x79\x23\xfe\x69\x93\xe1\xe5\xf0\x8c\xb9\x32\x7a\x12\xa7\x31\x66\x2d\x05\x6c\xfc\x67\xac\x52\x4b\xd0\x8c\x98\x15\x03\x17\x31\x7d\xe9\x45\x34\x1b\xbb\xda\x61\xfb\xaf\xd9\xba\x96\x61\x88\xa7\xad\x9e\xc5\x14\x2c\x1a\xfd\x75\xb1\x05\x4f\x1a\x6e\x14\x14\x66\xaa\xda\x98\x05\xbc\xc0\x0e\x3e\x58\xa4\x0c\x7f\x91\x37\x38\xaa\xe3\x33\xc3\x09\xbe\x6b\xa5\xc0\x17\x74\x25\xf7\xf9\xe8\x17\x27\x2e\xdc\x1f\x0a\x83\x31\x6d\x25\x50\xa6\xe8\x91\x23\x6f\xe4\x83\x25\x72\x6e\xc6\x4e\x2e\x6f\xff\xf9\xd0\x18\xcb\xf7\xa8\x17\x6d\x1b\x74\x5c\xec\x09\x3f\x8c\x5f\xd2\xa3\x6d\x32\x0f\x75\xd3\xc0\x27\x69\xe4\x90\x6f\xa5\xc1\x9d\x84\xbd\x66\x5a\xbf\x4a\x51\x93\xeb\x22\x1c\xc6\xeb\x14\x97\x39\x45\xc6\xf8\x21\x16\x63\x93\xca\x10\x2b\x6c\x92\x9e\xe8\x2b\x3e\x67\xe9\x29\x36\x45\x02\xa2\x6f\x8a\x64\xb8\x94\x33\x2d\x5f\xd6\x41\xff\xeb\xc1\x76\x2a\x36\x54\x5c\xdb\x4e\xa5\xe6\x95\xfe\x28\xca\x82\xb1\x4c\x4c\x67\x75\x41\x88\x4d\x10\xd3\x29\xcc\x34\x07\xa6\x89\xa9\x7c\xc6\xe6\x7e\x43\x91\x1f\x67\xec\x28\xde\xfc\x30\x85\x36\xe8\xa0\x8f\x4f\xe3\x37\xf6\x50\xd1\x51\xbc\x42\x87\x17\x14\xc6\x99\x53\xca\x4a\x29\x0d\x38\xa3\xe4\xd1\xf6\x1a\x64\x2c\x8a\x49\x34\xcf\x9f\xb8\xbc\xc7\x93\x28\x3a\xbb\x0f\x71\xcc\x81\xb1\x67\xb7\x2a\x86\x2e\x9b\x4b\x67\xed\x84\x75\xe2\x48\x97\x1e\xfb\x14\xf5\xe6\x10\x5f\x52\x31\x3e\xe4\x98\x56\x77\x1e\x14\xbf\xa8\x8f\x63\x8d\x34\x45\xea\xa3\x5a\xd0\xc2\x31\xb5\x03\xdf\x93\x94\xed\xc8\x21\xbe\xa4\x1d\x50\x0b\x3e\xe1\x27\x41\xf1\x81\xf6\xc8\x36\x84\xe2\x2c\x0c\xb1\xa6\x4d\x4c\x5e\xd3\x6f\xb3\xf3\x1f\x8d\xd9\xda\x09\x3f\xe3\x56\x4b\x47\x2a\xe5\x90\xed\xd1\x02\xcb\x41\x86\xa5\x8b\xc1\xba\x3e\x4f\x04\xd0\x57\x02\x94\x8c\xa0\x99\xc9\x68\xe1\xcb\x72\x7e\x2e\x51\xbb\x12\x8b\x88\xbc\x02\xd3\x06\xce\xfc\xfc\x91\x4c\x70\xc1\x99\x33\xf1\x8b\xf9\xa1\x82\x0c\x63\x98\xc9\x16\x21\x92\x41\x0b\x6c\xb0\xac\xd6\x39\xb2\x48\xcc\x11\x2a\x12\xf1\x39\x5c\xd8\xb1\x39\xb7\x97\xdd\x42\x28\xbc\x6c\x09\x5d\x0d\x06\x7c\x08\xb5\x97\xc7\x69\xb0\x29\x60\xb1\xcb\x5d\x73\x5a\xb0\x9a\x37\x25\x9d\xeb\x2f\xf4\xbd\x32\x69\xc1\x9c\x14\xae\x56\xf9\x56\x9f\x2f\x90\xb4\xec\xb6\x03\xba\x91\x08\x73\x0d\xc4\x22\x5b\x0a\x88\xf0\x87\xd8\xcb\x46\x9a\x29\x35\x40\x3b\x1a\x25\xf7\x8f\x1f\x22\x0a\x5f\xd1\x00\x24\x1b\x0f\xb7\x00\xc9\x02\x39\x2e\x32\x6d\x4e\x02\x1e\x6a\x08\xed\xf9\xaf\x68\x08\xd2\x8d\x2f\x6c\xc8\x79\x68\x05\xc7\x3c\x6f\xdb\xc5\xfd\xff\x50\xfb\x26\xe2\x13\x2e\xce\x22\x28\x7f\x20\x06\x68\x5f\x86\xf2\xdd\xa2\x7d\x59\xa6\xa6\x5e\xad\xa6\xbb\x24\x33\x90\xcb\x76\x4a\x66\x8b\x1b\xda\x82\xa6\x70\xfc\x66\x81\x4f\xb9\x84\xca\x58\x43\xc1\x3c\x8d\xcf\xdf\x35\x94\xf1\x2d\x1e\x0f\xc0\x7e\x1c\x99\xd3\x41\x47\xe4\x45\x78\x8e\x14\x2b\x81\x24\x41\x34\x09\x19\x9c\x5f\x55\xd5\x07\x9c\xab\x8f\x55\x2b\xdd\x6e\x6d\x25\xc6\x9e\x7e\x16\x7e\x57\xa4\x61\xa3\x6b\x71\x0c\x8f\x9f\xc2\xc4\xcd\xe2\xe4\x4f\x06\xb5\x18\x4f\x39\xfa\x1d\x08\x81\x51\x7a\xb8\x28\x12\x1c\x45\x4e\xdb\x06\x16\x71\x3b\xf2\xf3\x45\x36\xa1\xc5\xb7\x78\xce\xab\xbd\x78\x43\x09\xd5\xde\x1a\x4d\xd6\x7a\xaf\xe9\x97\x36\xdb\xaa\x78\x83\xfb\x1c\x3e\x28\x22\x27\xa7\x5c\x49\xe7\x2b\x6f\x3d\xc6\x60\xb9\x85\xff\x3f\x88\xb3\xb6\x4a\x5d\x47\x5d\xb8\x76\x1e\x99\xa7\x9b\xf0\xdb\x65\x00\x59\x48\x7d\x74\x21\xc0\x1f\x39\x0a\x6c\x27\xaa\xee\xc7\xac\xdd\xdc\x4a\xc4\x3a\xba\xa5\x2a\xc3\xcb\x5a\x34\x22\x69\xa5\x97\xeb\xa0\xd4\xf9\x71\x8d\xba\xda\xf5\x4f\xa4\xf0\x3c\xcf\x12\x8a\x19\xc9\x33\xfa\x18\x26\xb6\x48\x2e\xcf\xd2\x94\x4e\x51\x8f\x8a\x24\xe7\x65\x59\x97\x6c\x66\xb5\x84\x8b\x9b\x3c\x2d\x58\x4d\xa7\x94\x60\x3f\x5d\x60\x2f\x63\x85\xe6\x59\xf4\x50\xa0\x48\xa2\x47\x29\x93\x9e\x90\x3a\x39\x4f\xeb\xec\x56\x1b\x41\x2a\xea\xb2\x7b\xcc\xb0\x97\x38\xc3\x0b\xf5\x02\x05\xba\x0d\xcb\x53\xf0\x0e\xd9\x4b\x57\x96\xc6\x0d\x9a\x27\xf0\xb3\xea\x19\x60\xf2\x4f\xe5\x56\x4b\x0b\x29\xc8\xe1\x71\x31\x91\x30\xbe\x04\xe9\x0e\x9a\xc2\xc6\xdc\xe0\x8f\x45\x98\x61\x44\x65\xe5\x68\xb2\xdc\xa6\x53\xd2\xd4\x1c\x4e\xd5\x72\xec\xa6\x4b\x48\x0c\xa1\x53\xc5\x5b\xdc\x8f\xee\xc1\x42\xd9\xc1\x78\xd1\x75\x82\xc3\xb5\x72\xc9\xec\x81\xc2\xf2\x09\x99\x30\xf3\x59\xcb\xe6\x61\x32\x09\x88\x2e\xb1\x1e\x12\x7d\xe3\xb0\x91\x43\xc8\xfe\x22\x1c\x93\x56\x26\x88\x88\xe6\xeb\x9b\x8a\x07\x00\x10\x7c\x7d\xaf\x26\x8d\x2c\x63\x5a\x32\xc8\x67\x30\x4c\x9a\xb8\x88\xe2\xeb\x1b\x89\x47\xad\xd9\xd2\xb1\x73\xa2\x91\x47\x8c\xb7\x3b\xb4\x2c\xb9\x76\xd6\x61\xe4\x6c\x0e\x56\xf2\x30\xca\x53\xad\x7e\x10\xe7\x57\x74\x63\xab\x7d\xbd\x6d\x52\xf3\xad\xd8\xca\x61\x0d\x94\x1b\x4e\x77\xd5\x90\xdf\x25\x53\xea\x3a\x97\x8b\x3f\x34\xc0\xd8\xa0\x16\x98\xa9\x05\xf4\xa7\xda\x36\x28\x7c\xf1\x2d\xbb\xae\x76\x6e\xc7\x96\x06\xd7\x8a\x6e\x67\x1e\xaf\x9c\xdb\x7d\x27\x39\x0c\x9a\xc2\x3b\x79\xf7\x98\xbc\x0a\x7f\xd3\x48\x7c\xd2\xf8\x03\x06\x86\x41\xd2\x8e\xa5\x03\x6b\x0b\xa3\xf5\xed\x83\x15\x4d\xfa\x92\xd1\xf5\x6c\x6c\x07\x6c\x8a\x57\x5f\xd4\x83\xf0\xa4\xfe\x1a\x93\xf8\xe6\xa7\x51\x68\xa9\xc9\x54\x0c\x59\x3d\xeb\x7c\xc8\x60\x6b\x51\xbb\x99\xad\xf9\x87\xea\x78\x60\x1a\x1e\x7f\x4d\xb5\x79\x3f\x39\x66\xdf\xe9\x6e\x6a\xa3\xfd\x6c\x2f\x5c\x63\x32\x87\x5f\xfc\xa7\x76\xc4\x12\xe2\x7f\x75\x47\x0c\x59\xab\xa6\x5d\xca\x39\x04\x0c\xfc\x56\x8f\xbd\xd7\x78\x52\xdc\x50\x20\xb8\xf7\xf8\x9d\x53\xec\x71\x18\x80\x4b\xdc\xda\xc1\x8e\x5e\x93\xa3\x75\x4a\x13\x2f\x42\x9a\x5b\x28\x80\x77\x1d\xc7\x7a\x64\xc7\x21\xa1\xcc\x6b\x4c\x16\xef\xd1\x53\x7e\x2a\x85\x0c\x54\x28\x23\x3b\xd4\x08\x93\xaa\x1a\x39\x2b\x2e\x75\x11\x32\xb2\x92\x5c\xc6\xae\xbd\x64\x6f\x10\x0c\xfc\x96\x53\x32\x58\xbc\x61\x54\x43\xdd\x59\x7b\x37\xf6\x35\x74\x15\xfd\x69\x50\xb2\xb8\xc2\x64\x71\x0b\xc9\xf3\x1a\x42\xab\x62\xb1\x49\xa3\x4e\x95\xdb\x0c\x6a\x56\xe6\xf9\xa0\xe6\xf0\x61\xe4\x76\x4a\xf6\xb3\x71\x7b\xa9\x64\x3f\x1b\x35\x84\x9c\x0f\x00\xc2\x9e\x1e\x85\xbc\x94\x6e\x51\x90\xce\x4b\xbc\x6a\xbb\x53\x75\x68\xb4\x4b\x9a\xc2\x1b\x60\xe4\x4f\x94\x60\x86\x6a\xda\x2a\xbe\x15\x9c\xb5\xca\xae\xff\xaa\x1a\xef\x02\xf4\x5b\xfa\xcc\xa0\xd6\xd6\x7a\xe7\x07\xd9\x03\x2f\x8c\x46\xb6\x34\x4c\x3f\x87\x74\xe0\x85\x9b\xbb\xd9\x48\x11\xf4\x7c\xa8\x08\xfa\xf4\x58\xed\x5d\x2f\x4d\xed\xfc\x30\x36\x7e\x1c\x94\x8b\x15\xbe\xbe\xe9\xa5\x11\x37\x31\x63\x56\xe3\xac\x64\xbe\x42\xa7\x85\x97\x6a\x6e\x64\xb3\x53\x8b\x55\x5f\x42\xce\x83\x75\xcf\xca\xe6\x95\xcf\x8a\x2f\xed\x94\xc1\x6e\x74\x07\x44\x69\x3d\x36\x77\xca\xd7\x3b\xe9\x76\x35\x9a\x83\xe4\xb8\xde\x05\x30\xf1\x33\x82\x89\x97\xd2\xed\xc4\x2d\x6a\xdd\x16\xb0\x6e\x9b\x7a\xaf\xbc\x44\xf3\xa5\x0c\xcb\x8b\x4b\xf1\x9a\x93\x97\x4a\xa1\x36\xae\x66\x11\x88\x77\x21\x70\xa5\x19\x86\xb7\xa8\xb0\x63\xa9\xe8\x22\x82\x2c\x61\x33\xea\x13\x9f\xe9\xcd\xb1\xe1\xe8\x6f\x9f\x3c\xb4\xe1\x9a\x52\x32\x58\x94\xf3\xb6\x4d\x1d\x68\x24\x5a\xb0\xa0\x8f\x9d\x17\x97\xb8\x7d\x67\x14\x2c\x01\x13\xe1\x7a\x71\x29\xde\xc9\xd1\x2d\x02\xf6\x92\x36\xd3\x49\xc8\x50\x7d\x00\x0c\x35\x4f\xe1\xb8\x52\x47\x43\x49\x64\x85\x84\x6c\x7a\x31\xb6\x97\x46\x6e\x55\xdd\x4b\x32\xd6\xc4\x07\x63\xaf\x31\x4d\xbc\x83\x34\x86\x35\xea\x90\xdf\xaa\xa4\xeb\xdd\x10\xf3\x9c\xc1\x48\xb4\x40\x81\x82\x52\x02\x33\xdc\x06\xcb\x61\x24\xd1\x9c\x57\xf8\x04\xa2\xb4\x74\x80\xf6\xd6\x71\x5a\xf0\xd5\x16\xfd\xe9\x73\x3a\x1a\x9a\x0f\x6a\xab\x9d\xe7\x27\xe8\xe8\x13\x0d\xdf\x12\x5d\x63\x72\x10\x70\xf2\xd7\x61\xb7\x16\x7b\x99\x75\xac\x34\x67\x0c\xdd\xfc\xbc\xbf\xb8\x15\xe3\xc8\x7d\x37\x73\xcf\x50\x7a\x09\xf6\x7c\xa5\xea\x21\xd8\xf5\x11\x64\x88\xd0\x7a\x05\xff\xf3\xd2\x28\x5a\x06\x59\x6d\x82\xe1\x0a\xc5\xce\x6c\x94\x7b\xe9\xdc\xc1\x0e\x6d\x52\x77\x53\xf8\x7c\xed\xf9\x49\x0b\xaa\xdb\xd1\x60\x77\x34\x6c\x55\x16\x5a\xcf\x1a\x5b\xda\xd5\xb9\xeb\xbc\x10\x1a\x9e\x73\x3e\x77\xb1\x98\xc6\x22\x5b\x29\x68\x11\x53\xae\x91\xbd\xfc\xc4\x11\x3f\x53\xa4\xe2\xd7\x1c\x93\x38\x7b\x79\x7b\x19\x72\xaf\xf4\x5e\x9f\x2c\x1b\xf4\x7c\xdf\xdc\x28\x2f\x9e\x7c\x8f\x91\x83\x9c\x12\xdb\xce\xae\x65\x27\xd8\x55\x19\x45\x38\xfe\x96\x71\x68\x57\xe7\x8b\x72\x1a\xd9\x5e\x4e\x16\x69\x3f\xd8\x9d\x5e\x6b\x4f\x13\xb2\x50\x20\x00\x84\x70\x1f\xdb\xb8\x96\xa1\x26\x5e\xe2\x45\x21\x74\x08\x02\x19\xb4\x42\xed\x90\xd9\x0f\x84\x35\x8f\x37\xf5\x35\xc8\x18\x6c\x52\x3e\xc3\x90\x95\xc9\x22\xa5\x00\xdb\x47\x4e\xad\x72\x3c\x93\x70\xc0\x9f\xc3\x75\x32\x72\xef\xe2\x92\x49\x3a\xfe\xb0\x62\x88\xf4\x87\xc5\xf9\xe0\x15\x72\xb9\x36\xd0\x47\x6d\x6d\x0f\x26\x69\x1e\xb3\x96\x92\x07\x5b\x68\x6f\x7a\x96\x6d\x81\x33\x05\x9e\x17\x43\x41\x80\x94\x95\x3f\xb2\x8f\x7e\x31\x52\xec\x02\x3b\xc4\x17\xdc\x78\x69\x13\xf4\x92\x79\x03\x76\xd2\xb1\xf5\xcd\x89\xfa\xd3\x3d\x29\xfa\xd4\xca\xab\xcf\x15\x64\x65\x03\xe8\x2e\xcf\x0e\xb9\x55\x56\xa9\xe0\x2c\x9a\xb2\x60\x78\x75\x91\x4d\xd9\x43\x56\xc5\x76\xe0\x97\xc7\x13\xea\x5e\x5c\x70\x17\x54\x1e\x4b\xe4\xd4\x1b\x13\x4a\x03\x21\x4c\x4a\x97\x3f\xe1\xde\x87\xd4\xb0\x48\xb8\xa7\xf5\x65\xdb\xb9\xa8\x8d\x4a\x94\xd7\xb2\x94\x96\x37\x81\x52\xe6\xd7\xc3\x94\xce\x0a\xc4\x18\x35\x9d\xd5\xc1\x2b\xd4\x22\x72\x30\xe3\x90\x36\x8d\x93\x8b\xda\x61\xa6\xb3\x93\x26\x4f\x28\x6d\xd1\x6c\x2a\x45\xfe\x66\xc3\x23\x7d\x26\xe6\x9c\x95\xb5\x9e\x52\xf2\x80\x34\x94\xa2\xd0\x3b\x51\x1b\xfd\x14\xb5\x9c\x3e\x37\xe7\xca\x1a\xc9\x68\x26\x8d\xcb\xb0\x22\xd4\xf2\x61\x91\xb5\xc6\xa9\x66\x1c\xb4\x3f\xc2\xce\xf5\xb6\xb1\x1d\x3d\x50\xc3\x34\xd8\xb4\x98\xc6\xb0\xd3\xf7\x1d\x94\x8a\x8f\xa9\x9f\x8a\x97\xd6\x79\x4e\xe9\x29\x24\xcd\x3b\x3b\x84\x14\x54\xe0\xb5\x68\x69\xad\x4d\x2b\x9e\xbd\xc9\xd3\xc3\x49\x15\x72\xdf\xf1\xf7\x12\x4c\x66\x98\x25\x07\xa3\xcd\xf6\x07\xf6\x11\x1d\x70\xa0\x57\x6b\x3b\x90\x85\x74\xdf\x41\x7b\xbd\xfa\xe4\xf1\xf2\xcd\x58\xcf\xf1\xa2\x76\x7a\xbb\x43\xab\x03\xdd\xa9\x2d\x19\xff\xc3\x2e\x5a\x85\x81\x07\x36\x88\x5d\xdf\x23\xfb\xc3\x57\x2d\x3f\x4b\xa7\x72\x10\xec\x11\x02\xc4\x1e\x49\x4f\x2e\xa4\xd4\xd2\x83\x3e\x11\x73\x4f\x42\x4f\x43\x79\x21\x81\x88\x07\x36\xb4\xde\xe9\xad\x79\xa2\xd1\x85\xec\x9e\x83\xb2\xd2\xeb\xd4\xc2\x55\xd6\x6a\x56\x43\xb0\xb5\x42\x5f\xa0\x9f\x69\x8d\x1b\x43\xd3\x6f\xc6\xcf\xb5\x7c\x2f\x35\x7a\x5c\xc3\xff\x27\xc1\x1c\xc6\x60\xe6\x40\x79\xca\x37\xbb\x04\x8a\x2f\x80\x79\x5d\xd0\xb3\x95\x4f\x61\xdd\x90\x5f\xd2\x30\xc8\xe4\x97\x34\x60\xc6\xeb\xbd\x08\x40\x97\xfe\x05\xc4\x1e\xce\xda\xda\x49\x20\x4c\x4e\x5c\xb4\xe2\xe6\x22\x2c\xfa\xbd\xef\x6b\xd6\x41\xdf\xbc\xbe\x7d\xf7\xc0\x2e\x02\x50\x5e\xe1\x08\x99\x2d\x73\xc8\xe2\xa5\x8e\x59\xd9\x7a\x0f\xae\x1d\x68\xc7\xb0\x72\x06\xcd\xf2\x68\xeb\xb8\x65\xb8\x87\x78\x35\x58\xbc\x83\x72\x7e\xd0\x0d\x05\x51\xe3\x32\x2b\xf1\x7a\xec\xbc\xee\x3b\x15\x52\x82\xa5\xe1\x5a\x09\xa7\x7a\x39\x84\x70\x53\x18\xe1\x5c\x3c\x3e\x7f\xbc\x2a\xe8\x4e\xed\x31\xb4\x1f\xbb\x48\xbb\xbd\xba\x11\xbf\x98\x66\x38\x92\x41\x02\xf7\xf4\x4e\xf7\x00\x56\xdf\xab\x81\x19\xea\x3b\xdd\x23\xec\x9f\x30\x25\x6c\x7c\xb9\xaf\x9d\x1a\xee\x75\x13\x97\xdb\xbb\x8b\xd7\xa8\x2c\xd2\x8d\xca\xc9\x0e\x57\x8d\x5e\xd8\x03\xbb\x9e\x1a\x71\x31\x7a\x5b\xb0\xeb\x81\x74\xea\x1e\xcf\x1e\xdd\x87\x01\xcc\x5d\x32\x4f\x79\x6a\xb2\x2e\x08\x23\x3d\xe3\xef\x4a\xe8\x82\xcd\x8b\x54\x7d\x2a\x07\x94\x65\x3e\xf7\xb4\x69\x55\xd0\xf1\xfc\xd0\x2e\xf1\x7c\xa1\x99\x5e\x8e\x2c\x63\xb0\x1e\xea\xf5\xa2\x27\xa6\xb2\x44\x01\x59\xd3\xd1\xc2\xf6\x12\x13\xd4\xd1\x72\x62\x5e\x22\xbf\x5a\x9f\x0f\xec\x82\xf9\xdb\x03\x26\x6f\xbc\xe4\x90\xeb\xd2\xf1\x65\xdb\x09\xd4\xc4\x7f\x21\xcc\xfa\x48\x36\x17\x7c\x3f\xc9\x97\xcd\x89\xc5\x4b\xce\xe6\x94\x63\xa8\xdc\xa7\x1a\xf1\xf2\x78\xaa\x32\xcf\x95\x75\x73\xc2\x73\x95\xcd\xf8\x0c\xeb\x45\x68\x48\x76\xe3\x97\x2b\xc1\xda\xfd\x2a\xbb\x2b\x5c\x0a\xf0\xba\xaa\xf8\x4e\x3a\xe8\x5f\xe3\x0d\x35\xeb\x5f\xcb\x8b\x6a\x86\x95\x7d\x1f\xcf\xfd\xbe\xef\x8a\x43\x3f\x03\xb9\x27\xba\x99\x41\xfc\x89\x3d\xe3\x65\x40\xf4\xda\x3c\x07\x7a\x7f\x7d\x15\x00\xa6\xfc\x00\x27\xdb\xcd\xa6\xd3\x46\xd5\x7b\x7a\x9f\xf3\x96\x3e\xc5\x6b\xdb\xc6\xfa\xd9\x87\x42\x3d\xd8\x91\x14\xac\x5b\x7c\x91\x46\x8e\x15\xae\x31\x11\x06\x27\x80\x0f\x23\xae\x83\x81\x6e\x15\x49\x56\xcf\xb2\xb8\x22\xc8\xca\x2b\x01\x49\x89\x9d\xfd\xf1\x73\xe6\x49\x07\x91\x3f\x1d\xac\xf5\x35\xc6\x74\x2e\x98\xd3\x6b\x6b\xbd\x78\x27\xfd\x2e\xce\x80\x97\x5e\x37\xf8\x70\xab\x28\x83\x57\xf4\x0d\xbd\x05\x9b\x15\xea\xec\x76\x5e\xe2\xca\x6e\x4f\x80\x93\x21\x58\x60\xed\x6e\xf0\x8b\x0e\xa3\xd8\x62\xf4\xb6\x48\x9b\x2e\x8c\x08\xa5\x4d\x57\x25\x0e\x52\x44\xec\x76\xd9\xda\xb9\x79\xb9\xbc\x70\x00\x6a\xce\x8b\x66\x99\x18\x4f\xb9\x66\xf7\xae\x35\xad\x49\xe6\xab\xbd\xf8\x99\xbd\xbe\xd2\xd2\xcc\x8b\x9d\x58\x27\x90\x95\xb3\x8a\x59\x72\x87\xc6\x26\x21\xf7\x0a\xbf\x66\x40\xc5\xcc\xcd\x86\xd2\xed\xf0\x2d\x26\xba\x7d\x61\xa0\xff\x50\x47\x72\xf7\xb2\x00\xb8\x85\xea\x22\xd8\x56\x19\xf1\xcd\x63\xe7\x76\x4f\x28\xeb\xf1\xb7\xb3\x32\x20\xab\xef\xc7\x3d\x3d\x7e\xd5\xbf\x29\x0a\xb8\x82\x4e\x98\x31\x03\x6b\xbb\xd1\xbf\x29\x71\x09\x19\x0f\x15\x75\x0b\xa5\x5c\x9c\xbb\x76\x9d\xa6\xee\x59\x30\xc9\x58\x9c\xbf\x76\x5d\x44\xbb\x4c\xa9\x39\x8b\x9e\x52\x73\xd1\x24\xa5\xf2\xaa\xca\xf7\x58\xbb\xae\x9d\xeb\xc2\x36\xbb\xb9\xb9\x2a\xf7\x72\xca\x4d\xfc\xcb\x37\xc0\x8c\x3e\xea\xad\xf3\xdb\x41\xb9\x47\xc2\x9a\xee\xf8\x6d\x56\x82\x87\x3a\x1f\x54\x4e\x9d\xe2\x70\x7f\xeb\xb4\x57\x7f\x78\x84\x17\x73\x8f\xbc\x6e\xd7\x8f\xbe\x2d\xc8\xa2\xc6\xa7\x80\x19\x5d\xd4\xcd\x89\xf1\x89\x7a\x41\x05\xbc\x6a\xe6\x1d\xf4\x9a\x02\xd0\x31\x0f\xcb\x06\xe2\xe5\xd0\x06\x82\x95\x78\x95\x48\xae\x72\x3e\x25\xb4\x6b\x67\x0f\x0c\xcb\x36\x11\xd1\x8d\x3c\xbe\xa3\xbd\x0e\x68\x7e\xc6\xe4\xd4\x40\x0a\x84\x17\x02\xe3\xf1\x03\xbb\xd0\x3c\x8c\x85\xf7\xca\xd0\xbb\x59\x2e\x82\x3d\x89\x7a\xce\xd7\xd0\xfe\x5c\xb5\x39\x6d\xff\x6c\xb5\x86\x5e\x3c\xbc\x6a\x99\x5d\x6b\x64\xef\x9b\x9d\x4c\x8c\xda\x25\x25\xc4\x13\x83\xfc\x3e\x34\xb0\x14\x3a\xb6\x53\x20\xdf\x10\xf8\x3c\x53\x5c\xa1\x61\x42\xec\xac\x53\x3e\x09\x76\x45\xa1\x6b\xc8\x8b\x82\x60\x5e\x38\x94\x0e\x5e\x6f\xe2\xcc\x07\x9f\x0c\x8b\x33\x8f\xce\x9b\xea\x4e\x99\x2d\x2e\xbb\xff\x84\x4f\x71\x85\x9f\x71\x84\xc8\xd9\x02\xaa\xc6\xed\xc8\x3a\x29\x48\x41\x0d\xb9\x1d\x13\xe9\xf9\x2c\x33\x9c\xcf\x4d\x7e\x68\xbf\xc6\xef\xe5\x16\x32\xec\x49\xf2\xcb\xf9\x61\x1e\x77\xaa\xb3\xd9\xec\xbd\xfc\xe5\xea\xed\x04\x72\x61\x77\x73\xce\x02\x35\xe0\x9c\x85\xbd\x8f\x0a\x75\x24\xa2\x2c\xe7\xa1\x2a\x1d\xa9\x28\xee\x96\x00\x17\x41\xea\x0d\xbd\x95\xa5\x80\xc7\x14\x3b\xcf\xb4\xe4\xaa\x0b\xf7\x5d\x88\xbc\x8e\x81\x8e\x67\xa5\x1d\x07\x0b\x4d\xe0\x29\x14\x09\x3b\x65\x82\xc2\x89\x33\x22\xb3\xa0\x38\xc6\x68\x0a\xb4\x3c\xc4\x04\x39\x1f\xe1\x90\x4f\xb7\x60\xc9\x08\x10\xef\xbd\x16\x31\x11\xa4\x6c\x65\x4f\xa4\x80\x40\x2f\xe8\xbb\x04\xc2\xab\xe2\x7b\xd9\x45\xa8\x57\x9c\x30\xab\xd5\xe4\x75\x1a\x32\x06\xc9\x08\x1d\xd9\xb0\x66\x84\x8e\xde\x96\x2d\x1f\xe4\x0c\xdd\x0f\xf6\x5e\x07\x63\x51\x82\x7f\xc7\x49\x01\x34\x80\x24\xcc\x01\x82\x51\xc7\x76\x5a\x7b\xa7\xa3\x58\x77\x89\x5f\xc5\xea\x62\x1a\x01\x9b\x9a\x60\x13\x99\xb8\x51\x9e\x4b\x44\xde\xac\x89\x23\x13\x6e\xc0\x5e\x5c\xc6\xb1\xa1\xcb\xb2\x49\x67\x3a\xbd\x51\xf1\x6a\x8d\x7b\x73\xa5\x37\xaa\x00\xde\x79\xdf\xbb\xe0\xa6\xe8\xe5\xed\xed\xbb\x1b\xf1\xd6\x74\xc7\x49\x27\x72\x54\xdc\x93\x84\x29\x8e\x8c\xc6\xfb\xce\x6c\x60\x28\x61\x79\xc8\x03\x34\x9f\x48\x19\x38\x1f\x49\x53\x4a\xbc\x1d\xf8\x91\x56\xda\xc5\x2f\x38\x69\x32\xa2\x1b\xd5\xe2\x4b\xf5\xb6\x8e\x25\x78\x5c\x9f\x87\x1c\x71\x81\x39\x89\x3c\x02\xef\x1b\x1b\x0e\xac\xef\x62\xa3\x01\x2a\xb4\x07\x9d\x3d\xec\xf4\x76\x87\x5e\xfb\xb3\x56\x91\xcf\x87\xa3\xf1\xf2\x93\x78\x19\xf2\x73\x0c\x7b\xf9\x89\x4a\x03\x9b\xef\xe8\xea\x86\x4a\x5d\x61\x02\x9e\xe3\x52\x38\x6d\xb6\x1d\x39\x3b\xf8\xf6\x64\xf1\xba\xd9\xc9\x41\x36\x9e\xf5\xc9\x01\xd1\x65\x4a\x2d\xb1\x41\x99\x65\x6c\xc1\xc3\x42\xc4\x41\x71\x03\xbf\x21\x31\x14\x7d\x2c\x14\x05\xb7\x4d\x2d\x87\x2d\x5f\x8a\x5e\x0c\xdb\x91\xc2\x29\xe7\xa8\xf5\x76\x08\x06\x1d\x74\x42\xbc\xd6\xc1\x75\xce\xe4\x8c\x20\x70\x0c\xd3\x91\x43\xa3\x57\x73\x96\xdb\x17\x4a\xa0\x7d\x7d\x56\xe0\x12\xed\xed\x93\x51\xe6\x42\x11\x74\x31\x95\x4a\xa0\x77\xa9\x07\x0b\xf0\xe5\x2f\x81\xbf\xb8\x5c\x00\xce\x65\x97\xb8\x84\x40\x66\x59\x5c\x42\x00\xc5\x8c\x21\xc0\x20\x63\x18\x0c\xa3\x57\xcd\x40\xce\x61\xe1\xdf\xad\x74\x77\xd1\x64\xba\x50\x8b\x87\x34\xd7\xec\x54\x3b\x92\x27\x09\xfe\x99\xe0\x53\xe4\x6c\xda\xa5\x21\x63\x21\xda\x76\x09\xa0\x3e\xa9\x66\xcc\xcc\x70\x7e\xa1\x6f\xbe\xf7\x4e\x68\x6c\x78\x3c\x35\x1a\x8c\xb4\xfe\x8e\x52\x32\x98\xa5\x00\x68\xa1\xe9\x28\x01\x05\x49\xe8\x64\xfd\xb1\xfa\x30\xde\x55\x30\x2e\x0f\x26\xdb\x1c\x47\xa8\x23\xfd\xc0\xc4\xde\x3c\xc0\xa2\x93\x92\x16\x9d\x52\xd4\xd1\x49\x05\x7a\x2b\x21\x48\x76\x58\x11\xe1\xd9\x68\x9a\x99\x31\x6b\x12\x26\x0a\x9e\x5f\xcb\x8e\x4e\x76\x8c\xaa\x7f\xd1\xa5\x92\xad\x2a\x20\x9e\xf1\x67\x01\xa3\x0d\xc9\xa4\x94\x45\xc2\xf6\x2b\x4a\x63\x94\x99\x11\x7d\xd0\x1a\xc5\xa8\xfd\x51\x35\x75\xc3\x29\x53\xc8\x50\x33\x02\x5d\x74\xdd\x6c\x34\x72\x91\x27\x4f\x43\x6f\xd7\xd9\x4b\x87\xac\x4f\xd3\x69\x0c\x59\xb6\x47\x23\xe8\xd5\xac\xb5\x51\xf5\xc3\x33\x12\x9e\x04\x7c\xce\xb2\xb4\xfa\x40\x63\xff\x31\x3c\x88\xe7\x3b\xcc\x60\x3a\x90\x99\xeb\x15\xfe\xb9\x28\x2a\x7b\x35\x28\x93\x85\x92\xa0\xaf\xa2\x50\x11\x95\xf5\xfb\x14\x7d\xd5\xdb\x07\xa2\xda\xc7\x40\xe1\x88\xb5\x1f\xdd\x8e\xee\xa9\x27\x11\x6c\xdd\xd0\x7c\x37\x2d\x2b\xa4\x9f\x80\x41\xe6\xff\x08\x88\xa9\x8f\x21\xa4\xfa\xaf\x1c\xc6\x9c\xbe\xb3\xfe\x7d\x47\x97\x6f\xdf\x51\x4f\xff\x2d\x8b\x33\x5e\xc6\x80\x0f\xd1\xd4\xbf\x02\xc1\x24\xf4\x7b\x8a\xa5\xfe\x35\x8d\xa0\x6e\x4c\x63\x03\x87\x39\x2b\xe2\x6a\xe6\x08\x39\xe4\xef\x89\x4e\xcd\xd0\x51\xdf\xbe\x1a\x1b\xf7\x70\x8a\x2e\x76\xf4\xeb\x9b\x37\x89\x84\xff\x2b\x27\xa8\x56\x58\xf3\x35\xe3\xb6\x18\xff\xf4\x57\x8e\xd3\xfa\xd5\xcd\x8a\x4e\xd8\x79\x9d\x86\xef\xc9\xae\xa1\xb5\xbf\xbc\xf0\xd3\x46\x42\xbf\x86\x5e\x6e\xb3\xf5\x2e\xb7\x45\x33\x70\xb5\xe7\x41\xef\xe7\x3b\x62\xb2\x87\x42\x14\x6c\x8e\x61\x8a\xf4\x97\x92\xb5\xe3\x08\x8f\xa4\x6a\x3e\x8b\x51\x94\xab\xea\x83\xb7\xb6\xfb\x58\xc9\x2d\x74\x49\x6e\x6d\x05\x3b\x98\x1f\xff\xe2\x66\x36\xf6\x50\xd1\x27\xfc\xfa\x1e\x30\x7f\xcf\x4e\x86\xc5\x99\xab\xbe\xdf\x63\x02\x85\xea\xc2\x84\x1d\x26\xec\xec\x88\x81\x1d\xbe\x6f\xf1\xb3\x95\x47\xfc\x3a\xe0\xd7\x41\xa9\x3b\x2a\x8c\xc4\xf9\x7b\xb1\xb7\xc6\xef\x30\xe5\x88\xdf\x47\x25\x39\x2c\x04\x39\x33\xc6\xc0\xa7\xe1\x03\xc3\x9b\x1a\xbc\xa7\xc3\xf4\xf0\x71\xe6\x2a\xa8\x95\x53\xe9\xe7\x99\xab\x5a\x79\xe4\x24\xfc\x75\xe6\x2a\xa8\x9e\x93\xe8\xe7\x19\x9e\xa9\x7e\x17\x10\xd2\xef\x33\x57\x41\x3b\x38\x91\x7e\x9e\xb9\x6a\x90\x87\x3a\xb5\x8b\x7f\x61\x6a\x6a\x15\xff\xaa\xaa\x0f\xed\x60\xfb\xdf\xac\x51\x1f\xab\x10\x93\x30\x05\x23\x7c\x36\xd8\x3e\xd8\x3f\xab\x81\xee\x04\x42\x84\xf6\xb1\xef\xac\x6c\x57\x55\x88\x41\xaa\x4d\x3f\x46\x45\x6c\x8a\xc6\x4b\x60\xc9\x95\x31\xbd\x00\x3d\xf6\x6a\x55\xa1\x9a\xd7\x5b\x5b\xaf\x91\x61\x42\x05\xaf\xd3\xbf\x29\xf1\xcd\xdf\xff\x8e\xf0\xfa\x37\xf5\x8f\x7f\x88\xd7\x3f\x7f\x2b\xd4\xa7\x46\xa9\xd6\x89\x3d\x9b\x38\x05\xb0\xbd\xfc\xf4\xbc\x80\x5c\x55\xfc\x30\x8f\x6d\x6a\xe8\x61\x1e\x56\x5f\xfd\xaf\x00\x00\x00\xff\xff\x41\x90\x5c\x81\x61\xde\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x6e\x1c\x39\xb2\x30\xf8\x3f\x9f\x82\xed\x03\xc1\xdd\x80\x5c\x46\xcf\x7c\xdf\xee\xa2\x61\xb9\x57\x2d\xb7\x2f\xe7\xc8\xb6\x8e\x24\xcf\xec\xac\x61\x64\xb3\x2a\x59\x55\x1c\x65\x91\x39\x49\xa6\xca\xd5\x83\x01\xf6\x01\xf6\x01\x76\x5f\xef\x3c\xc9\x87\xb8\xf0\x96\x99\x25\xdb\x33\xe7\x8f\x54\x49\x06\x83\xf7\x60\x44\x30\x18\x21\xbb\xae\x6e\x94\x5b\x89\x33\x71\x2e\x3a\xa9\x4d\xab\x9c\x13\x4e\xb5\xeb\x27\x5b\xeb\xbc\x6a\xc4\x2b\xed\x85\x53\xfd\xbd\x5e\xa9\xaa\xda\xda\x9d\x12\x67\xe2\xb5\xdd\xa9\xaa\x91\x6e\xbb\xb4\xb2\x6f\xc4\x99\x78\x11\x7e\x57\xea\x73\xd7\xda\x1e\x80\x7e\xa5\x5f\xd5\x56\xb5\x1d\x94\x51\x6d\x57\x39\xbd\x31\xb5\x36\xe2\x4c\xdc\xe8\x8d\x11\x6f\x0c\xa5\xd8\xc1\x87\xa4\xf7\x83\xa7\xb4\xa1\x0b\x49\x1f\xba\xaa\x57\x1b\xed\xbc\xea\xc5\x99\xb8\xe6\x9f\xd5\x5e\x2d\x9d\xf6\x50\xd3\x9f\xe9\x57\x75\xaf\x7a\xa7\x2d\x60\xff\x13\xfd\xaa\x3a\xb9\x01\x80\x2b\xb9\x51\x95\x57\xbb\xae\x95\x58\xe0\x96\x7f\x56\xad\x34\x9b\x81\x60\x2e\xf9\x67\xb5\xea\x95\xf4\xaa\x36\x6a\x2f\xce\xc4\x05\x7e\x2c\x16\x8b\x6a\x70\xaa\xaf\xbb\xde\xae\x75\xab\x6a\x69\x9a\x7a\x47\xdd\xfc\xe0\x54\x2f\x38\x5d\x48\xd3\x08\x48\xc7\x2e\xa8\xa6\xd6\xa6\x96\x8e\xfb\xa1\x1a\xa1\x8d\x90\xae\x42\x54\x46\xee\x42\x69\xf8\x59\xa9\x9d\xd4\x2d\x8c\x1a\xfc\xaf\x3a\xe9\xdc\xde\xe2\xd0\x5e\xf1\xcf\xaa\x57\xb5\x3f\x74\x0a\x87\xe0\xc9\xed\xa1\x53\xd5\x4a\x76\x7e\xb5\x95\xd0\x4c\xfa\x55\x55\xbd\xea\xac\xd3\xde\xf6\x07\x84\x0b\x1f\x95\xed\x37\xd2\xe8\xdf\xa5\xa7\xf1\x79\x9f\x7d\x56\x3b\xdd\xf7\x16\x86\xf6\x2d\xfe\xa8\x8c\xda\xd7\x80\x47\x9c\x89\x77\x6a\x9f\x63\x81\x9c\x9d\xde\xf4\x34\x8a\x90\xf9\x16\xbf\x00\x0b\xe5\x31\x26\xca\x8a\xd8\xd6\xb6\xbf\xe3\xd4\x97\xf0\x73\x84\xd2\xf6\x1b\xce\x2d\xdb\x25\x8d\xdc\x28\xce\x7d\x8b\x1f\x05\x80\xab\x64\xb3\xd3\xa6\xee\xa4\x51\x30\x74\xe7\xf0\x25\xae\xe0\xab\x92\xab\x95\x1d\x8c\xaf\x9d\xf2\x5e\x9b\x0d\xcc\xc1\x39\x25\x89\x1b\x4e\xaa\xb2\xbc\x98\x76\xb0\x43\x9c\x65\x71\x26\xfe\x62\x87\x5e\x5c\xd1\x27\xe5\x65\x85\x30\x33\x96\xac\xe4\xca\xeb\x7b\xed\xb5\xa2\xca\xc2\x47\xd5\x0d\x6d\x5b\xf7\xea\x6f\x83\x72\x1e\xb2\xae\x86\xb6\x15\xd7\xfc\x5d\x69\xe7\x06\x2c\xf1\x06\x7f\x54\xd5\x4a\x9a\x15\x76\xe7\x02\x7f\x54\xd5\x47\x6d\x9c\x97\x6d\xfb\xa9\xe2\x1f\x00\x4c\xbf\x68\x9c\xbc\xf6\xd8\x58\x4e\x14\x37\x5e\x75\x0e\x06\x5a\xbc\xd4\xbd\xf3\x4f\xbc\xde\x29\x71\x3d\x98\xaa\xb1\xab\x3b\xd5\xd7\xb0\x21\x71\x2b\xbd\x59\x8b\x83\x1d\x1e\xf7\x4a\xf4\x83\x31\xda\x6c\xc4\x2b\xbb\x71\x42\x1b\xa7\x1b\x25\x5e\x20\xf4\xa9\xe8\x5a\x25\x9d\x12\xbd\x92\x8d\x78\x26\x85\x97\xfd\x46\xf9\xb3\x47\xf5\xb2\x95\xe6\xee\x91\xd8\xf6\x6a\x7d\xf6\xe8\xc4\x3d\x7a\xfe\x6a\xd0\x8d\x6a\xb5\x51\xee\xd9\x53\xf9\x5c\xac\x64\xaf\xd6\x43\xdb\x1e\xc4\x52\xad\x61\xaf\x1c\xec\x20\x56\x5b\x69\x36\xb0\x4f\x0e\x7e\x0b\x15\x6a\x23\xfc\x56\x3b\x01\x1b\xf5\xbb\x0a\x46\x49\x7b\x55\x37\xcb\x40\x94\xb0\x41\x98\xdc\x2b\x27\xde\x1e\x6e\xfe\xf3\xf2\x54\x5c\x59\xe7\x37\xbd\xc2\xdf\x37\xff\x79\xa9\xbd\xfa\xa3\xb0\xbd\xb8\xd5\x2f\x7e\x59\x54\xcd\xb2\x0e\x03\xf2\x42\x7a\xb9\x84\xb6\xc7\x49\x82\x4c\xda\x43\x31\x0f\x77\x12\xd0\x3a\xa4\x6b\xce\xe3\xee\xe4\x9d\x39\xbb\x0f\x9b\x65\xcd\x9b\x37\xe2\x78\x07\x3b\xb8\x59\xa6\x91\xbd\xa2\x31\x1b\x9c\x12\x6f\xde\xbd\x7b\xff\xe2\x17\xa1\xcc\x46\x1b\x25\xf6\xda\x6f\xc5\xe0\xd7\xff\x47\xbd\x51\x46\xf5\xb2\xad\x57\x1a\x06\xa5\x77\xca\x8b\xb5\xed\xa9\x8b\x8b\xca\xb9\xb6\xde\xd9\x06\x6a\xb9\xb9\xb9\x14\x6f\x6d\xa3\xaa\x4e\xfa\x2d\x36\xc4\x6f\x2b\xf7\xb7\x16\x06\x2a\x56\x78\xbb\x55\x02\xd7\x2c\x02\xd9\xf5\x78\x5c\x44\xc3\x6d\x5d\x88\x67\xcb\xfe\x79\xd6\x3e\xb9\x74\xb6\x1d\x3c\x97\xdc\x6f\x95\xc1\x89\x72\x5e\xf6\x5e\x48\x17\x68\xff\xa2\x52\x7d\x5f\xab\x5d\xe7\x0f\x30\x3d\xdc\x96\x63\xb5\x10\xb2\x95\x34\xc6\x7a\xb1\x54\x02\xcb\x11\x0a\x6d\xee\x65\xab\x9b\xda\xeb\x34\x90\x65\x59\x4c\x6c\xac\x72\x02\x4a\xcb\xb6\xb5\x7b\x1c\x22\xb9\xf2\xaa\x77\xe2\xd1\xe2\x11\xd2\xd9\x47\x4f\x1e\x2d\x2a\x63\x6b\x22\x02\x40\x91\x1b\xed\xe4\xb2\x55\x35\x9d\x16\x7d\x20\x76\x7f\x81\x75\x47\x4d\x61\x08\x51\x40\xc0\x9c\xc0\x09\x84\x84\x1f\x16\xa5\x34\x02\x91\x0a\xa6\x22\x79\xdf\x03\xc9\x89\xeb\x82\xa8\x4e\x4c\x98\xf4\xb9\x0a\x13\x1d\x56\xe5\x79\xd7\xb5\x7a\x45\x55\xbf\xa2\xbc\xb4\x40\xe1\x3c\xe6\x41\xc9\xe1\x70\x81\x85\xbc\x6c\x99\x0d\x1e\x26\xab\x17\x05\x79\xc7\xf2\x5b\xd5\x2b\xb1\x1d\x36\x74\x26\xb5\x76\x68\xbe\xc3\xc3\x21\xcc\x5c\x22\xc1\xe2\xda\x5a\x4f\xab\x2a\x02\xa4\x2a\xce\xdb\x16\x59\x80\x5e\xed\xac\x87\x81\xe3\x62\x40\xe6\xf6\xba\x6d\xa1\xa7\x4e\xde\xab\x46\x78\x4b\x5b\xb9\xd1\xbd\x5a\x01\xe2\x45\xd5\x0f\xa6\xe6\xed\x74\x3d\x18\xda\x52\x21\xad\x5c\xbb\x08\xb5\x1b\x9c\x17\x5b\x79\xaf\x60\xe0\x81\x0f\xf1\x76\xb6\x9d\xd8\xa5\x7e\x30\x48\x1d\x16\x55\x63\x77\x12\x79\x8a\x17\xf8\x83\xbf\x73\xfc\xda\x09\xb9\x5e\xab\x95\x77\xe2\xe6\xe6\xb5\x58\xb5\xd6\x28\xf1\xe1\xfa\xd2\xc1\x46\xdb\xd6\x9d\xed\x91\xff\xb8\x79\x2d\xae\x6c\xef\x63\x5a\x36\xd0\x00\x61\x86\xdd\x52\xf5\x62\xbf\xd5\xab\x2d\x0d\x3b\x94\x80\xfd\xa1\x7a\xa1\x9d\x18\x9c\x36\x9b\x53\xd1\x2a\xe8\x81\xf6\xb4\x00\xa0\x0f\x61\xd5\x01\xf8\x5a\x49\x3f\xf4\x6a\x51\x6d\xbd\xef\x42\xcd\xaf\x6f\x6f\xaf\xa8\xea\x98\xfa\x50\xdd\x32\x5b\x19\x38\x07\x2d\x70\x44\x46\x58\xb3\xc0\x45\x32\xf4\xed\x68\xfd\x7c\xb8\xbe\x0c\x39\x47\xc6\x05\x9a\xf0\x14\xfe\xdc\xa4\xe1\xc1\x71\x76\x76\xa7\xf6\xb8\x9a\xb4\x11\xc8\xa5\x2c\xaa\xd6\x6e\xea\xde\x5a\x1f\x16\xd3\xa5\xdd\xd0\x02\x2a\x32\x52\x4d\x2f\xc2\x92\x80\xd1\xd8\xf7\xc0\xb5\xb5\x76\x83\x04\x0b\x26\x79\x51\x55\xb6\x83\x76\x66\xbb\xe4\x3d\x27\xa4\xad\x81\x75\xc7\x7c\xe4\x93\xc4\x0d\x11\xa7\xec\x4c\xdf\xf9\xae\x66\x6a\x7e\xf3\xf6\xf6\x8a\x48\x3a\xa6\xae\x7b\xbb\x13\x67\xe2\x65\x6f\x77\x29\x21\xb5\xf1\x2d\xe0\x43\x18\xd9\x34\xbd\x72\xee\x54\x5c\xbf\xbc\x10\xff\xf3\x8f\x7f\xf8\xc3\x42\xbc\xf1\xb0\xb1\x61\xad\xff\x15\xd6\xa8\xe4\x91\x48\xa0\xb6\x17\x7e\xab\xc4\x23\xd8\xa8\x8f\xc4\x33\xcc\xfd\x3f\xd5\x67\xb9\xeb\x5a\xb5\x58\xd9\xdd\x73\x20\xee\x3b\xe9\x17\x15\xe4\xa8\x3e\x6c\x8b\x1b\x65\x1a\xd5\x33\xd7\xc7\x59\x19\x71\xe1\xec\x8c\x07\x24\xe6\xb7\x5e\x59\xb3\xd6\x3d\xf4\xe7\x57\x83\x6b\x2b\xb0\xc5\xe2\x82\x72\x02\x0b\xa5\xdb\xda\x58\xaf\xd7\x87\x04\x8a\x3d\x7d\x07\x89\xbc\x3c\x2a\x5a\xc3\x35\x93\xfa\x38\xc6\x37\xb4\xb4\x61\x15\xbc\xf7\x5b\xd5\x87\xe1\x76\x69\xbc\xed\x7a\x0d\x27\x7e\x38\xab\xb8\x86\xf7\x94\x4a\xc7\x56\x0e\x52\x77\xb6\x43\xc6\xfe\x05\x6f\x89\x8b\x17\xef\x84\xba\x57\x06\x16\x57\xd7\xdb\x66\x58\xe1\x7a\x05\xd8\x53\x20\xfd\xa2\x57\xce\x0e\xfd\x4a\xf1\x62\x89\x24\x07\x9a\x06\x74\x6d\x25\xdb\xf6\xb0\xa8\x02\xe9\xdf\xf4\xf2\x5e\x7a\xd9\x67\x55\xbc\x0a\x49\xdc\xfa\x09\xec\xa4\x51\xb1\x04\xf4\x7c\x35\x38\x6f\x77\x82\x5a\xe1\xa8\x51\x94\xed\x84\xec\x95\x18\xba\xd6\xca\x46\x35\x62\x79\x40\x2a\xe6\x60\x2d\x34\x6a\x2d\x87\xd6\x2f\xaa\xb5\x6a\x14\xb0\xcb\x4d\xcd\x75\xb5\xd6\xde\x61\x65\x3c\x54\x2f\x03\x80\x38\x67\xa4\x97\x08\x71\xac\x64\x6c\x2c\x97\x8f\x60\xb1\x51\x5c\x83\xb7\x78\xbc\xa7\x7c\xdb\x29\xc3\xdd\x08\x87\xba\x80\xf3\xb6\x11\xd6\x88\x56\x2f\xb9\xd3\x69\x2c\x47\xc7\x68\x18\x9d\x1b\x10\x0e\xf3\xbc\xd9\x02\x93\x41\xc5\x05\xef\xc6\x65\x4f\x85\x35\xed\x81\x8f\x5b\xd8\x62\x24\x7d\x85\x93\xd7\x2d\x2a\x85\xfd\xac\x93\xac\xc3\x1d\x0f\x22\x4f\x99\x1f\xab\xbd\x26\x9e\x51\x20\xb3\x01\x18\x03\x02\x60\xb2\xe6\xdb\xb2\xa8\x98\xd1\xac\x59\x4c\xad\xef\x35\x0a\x81\x71\x8b\x11\x4a\x16\x5d\x61\x84\xff\x04\x00\x20\x5d\xba\xd9\xb2\xb1\x35\xef\xa1\x93\x2e\x0a\x81\xb4\x4e\xa0\xbb\x58\x03\x30\xbf\xee\x54\xdc\x6b\x3c\xe8\x78\x91\xe3\xb8\x2c\x81\x3f\x6b\x15\x54\xe5\x94\x42\x0c\x42\x9b\xa7\x43\x47\x65\x16\x2c\x01\xb1\x50\x12\x98\x66\x60\x78\x1a\x8b\xdc\x13\x9e\xa6\xde\xc6\x61\x1d\x71\x36\xa2\xd7\x9b\xad\x17\xc6\xee\x4f\x69\x50\xf6\x5b\xab\x60\xcf\xbf\x79\x71\xf6\x23\xb5\x63\x03\x67\x6b\x2c\x04\xa7\xb2\x1c\xbc\x05\xfa\xc2\x5b\x8f\x9a\x10\xb9\x1b\x84\x9c\xc8\x5a\x04\x34\x16\x7a\x27\xcc\x54\x24\x74\x4c\xdf\xf2\x3c\x26\x6c\x09\x86\x4a\x07\xc1\x99\x2a\x26\x42\xca\x82\x52\xbd\xb1\x28\xa8\x05\xc1\x08\xd8\x85\xca\x2b\xe7\xeb\x8d\xf6\xf5\x1a\xa8\x2d\x20\x7e\x09\x08\x80\x7b\x51\xce\x8b\xc7\x1b\xed\x1f\x8b\x95\xdd\xed\xa4\x69\x7e\x12\x27\xf7\xcc\x6a\xff\x11\xc8\x28\x6c\x45\xdd\xe2\x8c\xb0\xf8\xd7\x2b\xe2\xa4\x83\xea\x21\xb2\xad\x6e\xe8\xf0\x70\x67\x0e\x39\x8a\x51\x8d\xdd\x1b\x20\x18\x78\x5c\xd8\xf5\x5a\xaf\xb4\x6c\xc5\x52\x1b\xd9\x1f\x22\x16\x3c\x86\x4e\xdc\xa9\x78\xf7\xfe\x16\x01\x37\x76\x39\xe8\xb6\x09\x00\x8b\x2a\x70\xd1\xcd\x32\x4c\x7e\x2e\x8f\x84\x24\x4d\x6d\x59\xd9\x1e\xce\x5f\xec\x4d\x28\x78\x84\x17\x84\xc3\x9b\x98\x77\x0d\x82\x20\xc2\x62\xb9\xc8\xb6\xc1\x30\xec\xa4\x5f\x6d\x99\xa9\xc3\x65\xa3\x9d\x79\xec\xb1\xa5\xab\xa1\xef\x95\xf1\x98\xfc\x93\x38\x71\xe2\xc9\x73\x71\xe2\x62\xb5\xf9\x49\x8c\xe7\x33\x1c\xc7\x62\xad\x55\xdb\x84\xd6\xa6\x3a\x81\xaf\xa4\x93\x6e\x33\x9d\x2d\xc8\x14\x94\x39\xd0\xfe\x2d\xfa\x57\x6c\x8c\xb8\x3c\xc2\xb2\xcf\x06\x28\xef\x64\x58\x37\x6e\xa0\x95\x7e\x26\xfe\xac\xda\x95\xdd\xa9\xef\xc4\x9f\x15\xc8\xc9\x9b\x16\x67\x4e\x7a\x16\x66\xad\x53\xb8\xaa\x4e\x69\xa3\xad\x07\x83\x67\x86\x97\x77\x0a\xe5\xdf\x34\x51\x73\x2c\xd3\xd1\xc1\xae\x3e\x6e\xed\x4e\x7d\xaa\x06\x62\xf7\x6d\xdb\x44\x91\x14\xb7\x90\xed\x89\xff\x88\xf2\x69\x82\x89\xbb\xc3\xed\xb5\x5f\x6d\xeb\xa8\xa5\x83\x81\xf4\xea\x33\x32\x46\x98\x95\x94\x76\xb0\xb5\x20\xab\xda\x1d\x70\x5d\x40\xc7\xdf\x1e\xd2\xb2\xd0\xca\x55\x6e\x6b\xf7\xa8\xf2\x8a\x10\x37\x5b\xbb\x47\x65\x57\x21\x14\x2c\x16\x8b\x6a\x65\xdb\x56\x2e\x2d\xcc\xca\x7d\x82\xbf\xc8\x53\x4b\xe4\xbb\x43\x6d\xfb\x0d\x57\x5b\xaa\x78\x76\x07\xd6\x2a\x71\x2e\x69\x95\x5c\x85\xe4\x95\xd5\x91\x48\x85\x4f\x5c\xc5\xca\x94\x85\x36\x35\xea\x6a\x42\xcd\x6f\x0c\xb1\xeb\x79\x3b\xab\xea\x23\xab\x2a\x3f\x55\x01\xae\x68\x13\xd1\x68\x1a\x74\x57\xe8\xcf\xdc\x48\x81\xe6\x2a\xa7\x64\x8f\x1b\xe2\x06\x7f\x54\xd5\x47\x39\xf8\xed\xa7\x4c\x95\x58\x87\x95\x17\x54\x8a\xa8\xee\x62\x32\x99\xd8\xba\xad\xea\x80\x03\xdc\x39\x5c\xb2\x6d\xaf\x64\x73\x60\x89\x28\x2e\xde\x9f\xe9\x00\xd2\x06\xc8\xf6\x77\x95\xb3\x40\x41\xea\x6f\x44\xf1\x8b\x36\x0d\x95\x2f\x0f\x6f\xd2\x71\xee\x3a\x5c\x26\xb6\xef\x0f\xa7\xa5\xac\xbc\x95\x4e\x2c\x95\x32\x41\xa6\x69\x16\x41\xd7\x01\xcb\x4b\xae\x88\x08\xa0\x5e\x16\x77\x20\x95\xb4\x13\xae\x02\x5a\x48\x74\x9b\x6b\x89\xfc\x2b\x72\xa7\x39\x13\x3b\x53\x67\xd5\xab\x9d\x02\x81\xa8\xde\x91\x3e\x94\xbe\xc4\x5b\x55\xad\x6d\xbf\xc1\x5d\x46\xdb\xe0\x4c\xbc\xc4\x84\xb4\x2f\x00\x40\xf9\xfc\x60\x61\x88\x90\xf2\x73\xd0\x3f\xd7\xc6\xee\x51\x2f\x09\xcc\xd5\x78\xf8\x87\x0e\x86\x6f\x11\x0e\x2a\xe2\x79\x90\xdd\x76\xca\xf8\x34\x88\xe7\xc2\xa8\xbd\xc8\xa1\x58\x74\x88\xbd\x02\x78\x20\x68\xcf\x96\xcf\x4f\xdc\xb3\xa7\xcb\xe7\xf1\xac\x58\x6d\xd5\xea\x8e\x96\xae\x36\x4b\xfb\x19\x35\x15\xa8\x31\x53\xc2\xc0\x56\x3e\x69\xc4\xd6\x0e\x3d\x0a\xca\x2b\x0b\xb2\x86\x57\x98\x5b\xcc\x59\xd7\x5b\xa0\x66\x0b\xd2\x50\x2a\xda\x1b\x69\x3d\xa2\xaa\x12\x56\x24\x1e\x68\x61\x49\x76\xbd\xdd\xea\xa5\xf6\x40\xb8\x50\xb8\xbe\xc4\xff\x57\x9c\xac\x9a\x11\x44\xc6\x7b\xf4\x91\xcc\x6a\x27\xba\x58\x00\x1a\x89\xa0\xa9\x7f\xbc\x64\xd2\x72\x81\x99\xc5\xf1\x6b\xf5\x4e\xfb\xc9\x52\x04\xa2\x2b\x79\x49\xb3\x46\x35\xcc\x0d\xf6\x21\x8d\x6e\xaf\x56\xca\xf8\xf6\x10\x97\xe7\x5e\x6a\x2f\xfe\x28\x76\xda\x0c\x1e\x84\xce\xad\x32\xc2\xf7\x07\x21\x81\xbf\x59\x54\x5b\xe9\xea\xc1\xf0\x34\xa9\x26\x2c\xce\xd7\x1a\x8f\x61\xa8\x37\x6c\xa1\x0c\xaa\x14\x02\xc5\xf7\x71\x06\x7f\x58\xb0\x6e\x15\x4b\xc1\xd1\x08\xed\xd1\x20\xb1\xc8\xb9\xb5\x60\x7b\x61\x14\x8d\x10\xf6\x1f\xc0\x60\xd9\x58\xa3\xd2\x60\xb5\x7a\x75\x07\xac\x3a\xcc\xef\x72\xf0\xde\x82\x3c\xda\xc2\x1a\xa4\x32\xa1\xcd\x17\x08\x88\x12\x7b\xc2\x77\xa0\x69\x29\x47\xa9\xc2\x62\x00\xe1\xe7\x0b\x7f\xdf\xab\x1f\x52\xf1\xb8\x65\xb0\x04\xa3\xa0\xd2\xd9\x6e\xba\xc6\x4c\x52\x9c\x87\x3d\x17\x0e\xc1\x15\x6b\x34\xe3\x6c\xf6\xe5\x68\x60\x3e\x6c\x0c\xf5\xb9\xd3\x3d\x48\x26\x7d\x62\x09\x16\xa3\xba\x92\xe8\x3e\xed\xb1\x2f\x5b\x9c\xce\x49\x6f\x6d\xed\xb6\xa4\x75\x09\xcd\x13\xad\x32\x9b\x42\x5d\x89\x97\x60\xb8\x44\xfe\xb7\x45\x65\xac\xa9\x51\xce\xcc\xf6\xcc\x3b\x6b\x9e\x60\x5a\x14\x54\x42\x69\x56\x70\x87\x0a\x01\x4d\x6f\x87\xcd\x96\x75\x55\xd5\x47\x18\xb5\x4f\x15\x4f\x85\xca\x70\xf2\x42\x0d\x39\x61\xca\x68\x3b\x46\xf8\xc0\xee\xfe\x49\xf5\x20\xd4\x23\x50\xb1\x0c\x8f\xcd\x48\x39\x20\x91\x0a\x27\x56\xe7\x3a\xa7\x19\x9c\xbc\x1e\xda\x53\xb1\x27\x1e\x28\x95\x89\x0a\x05\xe6\x8e\x60\x55\xd2\xed\x5f\xf5\x71\x67\x1b\xd9\x7e\xaa\x0e\x78\xa7\xf1\x17\xe5\x2a\x83\xf7\x48\xb6\xda\xd9\x86\x0a\xbd\xc5\x1f\x55\xf5\x71\x6d\xfb\xdd\xa7\x0a\xce\xd7\x77\x23\xb9\x00\x0e\x62\x4e\xcb\x78\x53\xcc\xfa\x35\xbf\x27\x8b\x7d\xbe\x9a\x11\x21\xae\x55\xba\x2e\xc3\x5f\xb1\xf3\x37\x37\xaf\x6f\x83\x8a\xe3\xe6\xb5\xb8\x53\x8c\xfb\xb5\xf7\x9d\xfb\x80\xca\x33\xd2\x84\x7d\xb8\xbe\xac\xae\xe4\x01\xf8\x75\x4a\xe6\x0f\xcc\xb8\x55\x72\xc7\x8d\x84\x9f\x84\xe2\x7c\xf0\x5b\x4e\x84\x9f\xb6\xcf\x95\xb2\x15\x32\xa1\xbf\x16\x02\x0b\xed\xa2\xea\x9d\xda\xff\xd2\x4b\xb3\x0a\x85\x81\x3b\x58\x62\x02\x95\xbc\xb0\xbb\x9d\xf6\x37\xc3\x6e\x27\xf1\x6a\x8f\xbe\x85\xa3\x04\xce\x7e\xab\x9c\xa3\xcb\x4c\xce\xde\x51\x02\x67\x5f\x6c\x2d\xc8\xfc\x31\x77\x85\xdf\xd5\x6d\xaf\x14\xd7\xfa\x32\xdc\x20\x54\xc8\x11\x12\xbb\x42\xbf\xaa\x28\xe0\x2a\xbe\xe3\xfb\x6d\xa2\xeb\xfe\xad\x92\x6d\xb7\x95\xc8\x73\x66\x60\xa8\xd6\x5d\xb2\x28\x2e\x10\x04\x37\xf6\xb0\x53\xbd\x5e\xa1\xba\x44\xba\xed\xf7\x4f\xea\x1f\x32\x35\x7f\x89\xac\xb1\xfe\x9f\x43\x08\xbf\x69\x57\x26\xbc\x4e\xff\x1e\x7a\x51\xa0\x83\x74\x71\x02\x10\x28\x3a\x24\xa8\x08\x84\x07\x16\x88\x11\x5e\xc0\x66\xf5\x20\xdf\x14\xa8\x77\xf2\xf3\x97\x0a\xee\xec\x4c\x39\xd2\x6d\xa6\x42\x2c\x0a\x49\xee\x62\xb1\xc1\x17\xbf\x55\x43\xff\x00\xf0\x87\xeb\xcb\xc5\x6f\x95\x36\xab\x76\x68\x8e\x36\xc4\x0d\x4b\xe7\x7b\x10\x81\x1e\x9f\xb8\xc7\x80\xd2\xdc\x19\xbb\x37\x11\xfe\x03\x7d\x0b\xfc\xfe\x29\x5c\x35\xd7\xda\xb0\x30\x99\x2e\x9d\x45\xa3\x1b\x38\xe2\x50\x28\x5c\x24\x52\x9b\x0b\x8a\x71\x7f\xa2\x46\x8d\x05\xf9\x48\xa2\x64\xaf\x48\x66\x96\x3b\xb5\x48\xd7\xe3\x35\xb0\x47\x35\xc8\x52\x26\x17\x7e\xe0\x7c\x08\x4c\x00\x32\x50\x08\xb1\xa0\xcb\x8b\x69\xb9\x11\x01\x39\x5a\xdc\xf6\x9b\x99\xd2\xef\xa7\x17\x2b\x47\xca\x7b\x25\x77\x33\x08\x22\x69\x38\x5a\x90\xe6\x1e\x0b\x0d\x0e\x45\xdc\x82\xb6\x4d\xcb\x01\xd4\x22\x8d\x52\x1c\xf0\x7c\x6e\x72\x51\x31\x8e\x73\xa9\x0e\x58\x54\xca\x78\xd5\xf7\x68\xa6\x90\x29\x05\x58\x49\xc3\xc7\xd1\x0e\x44\x59\x37\xc0\xd1\x0a\x62\x2f\x31\x97\xe5\x88\x02\x9f\x83\xa8\x14\x56\x71\x1c\xbd\xdd\x1b\x38\x3d\xbe\x84\x1f\xc1\xbe\x11\x75\xae\x43\x9a\x22\x66\xe4\x11\xe8\x18\xda\xa8\xe0\x50\x9f\x35\x5e\x21\xbc\xd2\xf7\x8a\x55\x1c\x51\xb3\x83\x79\x8b\xaa\x95\xce\x83\xd4\x4a\xbd\x22\x29\xc4\xde\xc3\x8e\x82\xfa\x20\x97\xca\xd1\x95\x02\x77\x0a\x16\x09\x2b\x4b\xf0\x5e\x53\x35\xa7\x42\x22\xab\xd1\x2b\xda\xa0\xb2\xdd\xcb\x83\x43\xc5\x5f\x20\x32\xd6\x84\x31\x01\x0a\x62\x0e\x62\x83\xad\xca\x45\xd2\x45\x95\x34\x2c\x6e\x5b\xc3\x89\x16\xd9\xac\x3d\x6a\x2e\x90\x42\xb0\x2a\xf1\x3e\xe3\x1d\xf8\x00\xfc\x09\xe4\xe7\x81\x54\xa9\x94\x9d\x21\xc2\x4b\x78\x26\xf6\x33\x65\x4f\x81\x1d\x15\x7b\x25\xa4\x73\xc3\x8e\xc7\x5a\x23\xf7\x8f\x4d\xca\x74\x5f\xc3\xb2\x55\x4f\x48\xac\xd1\x7e\x51\x81\x94\x9c\x34\x3b\x70\x60\x2a\xe3\xc3\x9d\x15\xa5\x93\x3e\xc4\x79\xdd\xb6\x30\xd2\xc1\x30\xa5\x10\x33\x30\x17\xf7\x09\x0e\x93\xdb\xea\x4e\x58\xbc\xb9\xc8\x87\x30\x2d\xdb\x8c\xa1\xf7\x56\x34\x0a\xc5\x26\xdb\x0b\xdf\x4b\xe3\xd6\x0a\xaf\x72\x76\x62\xad\x7b\x98\x67\xaa\x1a\xe4\x03\x32\x44\x39\x52\x33\x49\xa0\x58\x75\x7e\x40\xe0\xdc\x65\x13\x55\x56\x4d\x57\x85\x78\x5f\x80\x6d\xc0\x51\x4d\x98\x5c\x68\x03\x2c\xb3\xc9\x10\xe0\xf5\x5d\x71\xf1\x3b\x3b\x0e\xeb\x42\xed\x41\xf5\xe3\x4a\xfb\x42\xbf\x2b\x32\xf4\xa8\x89\x0b\x29\x76\xc5\x2d\xe6\x04\xfe\x64\xbc\x31\xaa\x8f\xb0\xee\x3f\x55\xc4\x09\xd7\xf1\x3e\xe6\x82\x38\x63\x62\x6b\x31\xb1\xfa\xab\xd5\xa6\xc6\xcb\x85\x7f\xb7\xda\xe0\x4d\x44\x55\xdc\x30\x8f\x74\x32\x6c\x62\x73\xc0\xab\xef\x65\xab\x57\xc1\xce\xe6\x50\xad\x2d\xee\x27\x54\xd9\xbc\x0c\xbf\x2b\xe7\x25\x90\x09\xd8\x0c\xfc\xab\xd0\x01\x51\x21\x52\x10\xbe\x0c\xbf\x39\x35\x26\x55\x83\x89\x29\x1f\xf8\x67\x55\x01\xf3\xba\x40\xfa\x0b\xfc\x36\x5e\x46\x65\x54\x17\x0e\x55\x58\xff\x21\x6f\x91\xc1\x77\xd2\x7b\xd5\x1b\xd2\x27\x13\x11\xc8\x8b\x72\x76\x44\x11\x6d\x20\x00\x4b\xf5\x31\xd8\x1f\x7d\xaa\x92\x95\x52\x30\x50\x9a\x53\xa4\xc7\xe1\xa7\xeb\xa5\x8a\x77\xb5\x63\xde\xf7\x3f\xd4\xc1\xb1\x0a\x09\x29\x06\xfe\x60\x1d\x00\x5a\x23\x84\x2b\x64\x57\xde\x28\xa3\x46\x6c\xaa\x08\xe3\x35\x75\x26\x5e\xd0\x8f\xa0\x4d\x18\x34\xf6\x51\x37\x55\xd5\xe1\xc4\x65\x36\x56\x3c\x93\xb1\x13\x6c\x62\x97\xeb\x13\x4a\x39\x5b\x3b\x41\x48\x90\x9b\x08\x37\x82\x78\x76\xae\x6d\x8f\x14\x32\x5e\x6f\xa8\x16\xef\xbe\x4c\x76\xdb\xe9\x4e\xb1\x1c\x80\xed\xd5\x32\x5c\x81\x75\xaa\xe7\x7e\xee\x64\xa3\xc4\xbd\x96\x51\x93\x95\xf1\x34\xf1\xd0\x0d\xaa\xa8\x42\x16\x44\x29\x83\xf4\x86\x81\xa5\x09\x13\xec\x6d\x90\x0c\xfd\x56\x69\xba\x81\x32\xc8\xee\xac\x87\xb6\x0d\x67\xe2\xcb\xa1\x6d\xc9\xd6\x63\x6a\xdc\x08\x55\xf0\x4d\xdc\x25\xff\xac\x86\xae\x01\x99\x30\x8d\xe5\x07\x4c\x88\x63\x59\xe6\x67\xb2\x1e\x8e\x6a\x28\x16\x35\x51\x04\xde\x64\xc2\x5f\x7b\x58\x84\x7d\x3c\x63\xb4\xc8\x5b\xba\x19\x83\x24\xbd\x0d\xd2\x28\xee\x38\x4e\x14\x99\x1b\xe0\xd0\xee\xe5\x41\x6c\xed\x5e\xb4\xda\xdc\x39\x9e\x29\x18\xa7\x5c\xee\x45\xfd\x9a\xd7\x66\x50\x2c\x89\xc0\xcf\xa9\x89\x1c\x5f\x8d\xf2\x45\xe9\xf2\x10\xb4\x19\x74\x95\xca\x4b\x5f\x2c\x0f\x02\x85\xad\xe3\x77\xb2\xe3\xcb\xd8\x70\x17\x1b\xee\x18\xf1\x2a\x38\x51\xb4\x0f\x4e\x89\x0b\xba\x1e\xe6\xdd\xb5\xda\x5a\xeb\x58\xe1\x9b\xe8\x1e\xa4\xa1\x3e\x87\xc9\x1e\x4f\x4b\xc2\x43\xb3\x76\x1e\xae\xa9\x71\x87\xf3\x5e\xaa\xf9\x42\x25\x41\xf3\xd6\xba\xe0\x8b\x96\xf3\x80\x93\xae\xa1\x43\x9f\x90\xba\xd4\x7a\x47\xf2\xe0\x87\x70\x49\x8d\x13\x1e\x05\x06\xcc\x5e\x94\xed\x19\xaf\x12\xae\x37\xdc\x98\x7c\x61\xb1\x84\xa5\x90\xdf\xdb\xd1\xf4\x47\x8a\x64\xdb\x82\x5d\x0b\xfd\x88\xf9\x30\x78\x59\xfe\x3b\xbc\x61\x8d\x6a\x0b\xd8\x63\xf5\x08\x84\x25\xfd\x02\x72\x96\x2b\x0e\x75\x1d\xe5\x88\x47\xad\x9f\xec\x98\x50\x6e\x2f\x5d\xd1\x71\x5e\xe3\xcd\x22\x18\x9b\x09\x63\xf7\x74\x5d\x8b\x56\x41\x64\x19\x65\xf0\xae\x97\x50\x64\x44\x85\x2b\xfd\x57\x49\x4a\xc2\x4c\x22\x85\x8b\x92\xc4\x39\x11\x4e\xe5\x82\x49\x6d\xcc\x67\xab\xda\x82\xbe\xaa\x60\x6a\x93\x53\xe0\xae\xd7\xa8\x79\x28\x29\xf1\x84\xf6\x16\x74\x16\xc9\xac\x45\xc3\x91\x44\x5e\x17\x55\x40\x05\xe7\x16\xfe\x0a\x29\x51\xb7\x75\xa3\xd0\xf2\x90\x93\xc3\x46\x08\xb9\xb4\xfe\x63\x1b\x5b\xc5\x54\x91\xfa\xfa\x82\x13\x46\xf9\xa1\x33\x94\x1d\x26\x64\xa6\x37\x3d\x70\xf1\x2a\x1e\x1c\xda\x90\xdd\x4e\xbc\x95\x2d\xa8\x93\x78\x81\xe4\x4a\xec\x25\xa9\xf0\x03\xb1\xfa\x79\x5c\x7b\x5a\x47\xbf\x96\xca\x7f\xea\x5b\xb9\x8b\xbe\xab\x64\xd3\xe0\x1a\x4f\x77\xdb\x0d\x2e\x9e\x52\xd1\x07\x50\x39\x04\xa9\x92\x62\x6a\x5d\x5c\x4d\x38\xd2\xe6\x7c\xfd\x75\x04\xf0\x1f\xff\x0d\x37\x11\x45\x55\xe9\x26\x22\x36\x72\xb4\xc3\x26\xbd\x9c\x6e\x35\xd9\x34\xc8\x0a\xf1\x5a\xce\x18\x1a\x5e\xcd\x91\xaf\x81\x5a\x48\x82\x81\xe1\xf9\x0f\x75\x40\xee\x87\x57\x02\x1e\x4d\xda\x09\x89\xd6\x73\x68\x32\x4b\xe2\x8c\x03\x39\x06\x18\x21\x98\x17\xb4\xd7\x2d\xe7\xfc\x1c\xe5\x35\xa7\x18\x16\x39\x43\x69\x0e\xc0\xe9\x87\xbd\xae\x76\x30\x0e\x64\x39\x11\x2d\x19\x27\x57\x90\xa7\x2c\x24\x6d\xf5\x66\xdb\x1e\x84\xde\x75\xb6\xf7\xb8\x92\xc2\x05\x73\x92\x61\xe1\xab\x57\x2b\xbb\x31\xfa\x77\x1c\xd8\x1d\x99\x2e\x46\x1d\xf8\x33\xe7\x7b\x6b\x36\xcf\x5f\x58\x10\x2e\xef\x80\xfc\x6c\xed\xfe\xe7\x67\x4f\x39\x5d\x5c\xe0\x14\xda\xc1\x8b\x57\xda\xbf\x1e\x96\x8f\x9d\xd8\x0c\xba\xc1\x23\xf7\x99\xcc\xcc\xb8\xd9\x54\x84\xec\x4a\xf7\x26\x0e\x0b\x1a\x75\xdb\x5e\x38\xdb\xde\xab\x51\x11\xbb\xdb\xd1\xf4\x2e\x5b\xb5\x23\x48\x6c\x3f\x5a\x97\x28\x83\x23\xa7\x7a\x1e\x9f\x9b\x9b\xd7\x8b\xb8\xc4\xd3\xfc\xf0\xb4\x05\x0e\xb5\xd0\x88\x30\x8f\x08\xc0\x2b\xd6\x4c\xa6\x83\x08\xd5\x21\xa1\x14\xf2\x1f\xd3\x52\x38\x8f\x0e\x78\x96\x89\x2e\x06\xc5\x16\x40\x11\x8a\x8b\x33\x68\x07\xf1\x61\x90\xb6\x9a\xe8\x42\x79\x61\x65\x8b\x17\xce\x9e\xa0\x4b\x46\xce\x3d\x36\x0f\x97\xeb\x68\x7f\x33\x45\xa3\xbe\x33\x3d\x0b\x1d\xc8\x28\x1a\x8f\x48\xa2\x69\x63\x98\x82\xaa\x29\xa2\x69\xa1\x15\x39\x35\x23\x43\x3a\xa2\x68\xb4\x20\x95\x43\x7a\xfd\x95\xd4\x6c\x52\x6f\xea\x78\xa8\xee\x2b\x28\x1a\xf6\xe9\x1c\x87\xc3\x1a\xd2\x9f\xf0\x44\x5d\xb2\xb6\x04\x33\x8c\xad\x33\x39\xef\x9d\xe5\xbb\x3c\x11\x12\x71\x4e\x9c\x07\x8e\x25\xdf\xca\xd0\x08\x34\xc2\x25\x13\x2b\x54\xc0\xfc\xef\xa2\x91\x07\x57\x79\x7b\xa7\xcc\x4c\x11\x4c\x3f\x56\x28\xd2\x97\x20\x1c\x31\x75\x39\x4f\xc4\x61\x2c\x2e\xf1\x55\xfc\x51\x02\x93\xd1\x15\xc6\x1a\xcd\xdc\x48\x7b\x84\x0f\x23\xc4\x52\x9b\x86\xe8\x08\x93\x01\xb6\xe5\x8a\xfb\x7f\x51\x0d\x06\x80\x50\x20\x85\x1f\xfc\x9d\x4f\x4b\x81\x3f\xdb\x2c\x66\x69\x07\x93\x91\x4f\x5a\x0e\x35\x0d\x45\xec\xe4\x95\xea\x1d\x5a\xdf\x9e\x13\xc2\x5b\xc8\x76\x6c\xca\xce\x16\x0d\xa1\xc8\x2b\x4e\xc4\x3d\x80\x80\x34\xe0\x2e\x0e\x04\x7e\x25\xc5\x47\xc0\xc2\x96\x34\x6c\x58\x8b\x73\xe0\x6d\x24\x98\x5b\xb2\xac\x11\xe7\x57\x6f\xdc\xa2\x8a\x15\x06\xa4\xbf\xca\xd5\x96\x27\x70\x4f\x5a\x0f\xb4\xbf\x69\xdb\x31\xc5\x8d\x92\x04\x15\x0f\x2f\x0e\xb0\x24\x6e\xf1\xd8\xa9\x49\x87\xa8\x33\x65\x3e\x8d\xb1\x72\x99\x26\x88\x6a\xc3\x96\x8c\xcf\xaa\xd8\xd5\xef\xc4\xdb\xa4\x8f\x84\xad\xd5\x1d\x80\xfa\x67\xe6\x77\x92\x46\x68\x8f\xf4\x7b\x64\xf7\xa7\x3d\xdd\x53\x0b\xd8\xc2\x7d\xa4\x1f\xa1\xc1\x4c\x41\xf2\xa9\xcc\xc9\xc8\xec\x64\x26\xa2\x32\x5b\x6c\x8e\xb2\x74\x01\x4f\xd9\xe7\x2f\xd1\x19\x58\xf8\x49\x71\xf0\x00\x95\xc9\x7b\x95\x2d\xe5\xab\xd9\x6a\xe3\x8a\xa6\xaa\x47\xf4\x46\xd0\x31\x48\xb6\x1e\x68\x0a\x4b\x22\x16\xad\x88\xcc\x30\x5e\x3a\xb1\x57\x6d\xbb\xa8\x50\x9f\xb1\x30\x70\x8a\x93\x01\x65\x64\xb7\x59\x21\x87\xfd\x30\x87\x42\xe3\xe6\x16\x54\x0c\xf5\x78\xd1\x04\xf2\x52\xb1\xa9\x40\x0e\x9a\x03\x66\x66\x9a\x64\xbe\x6f\x5d\xfe\xe4\x81\x46\x31\xd3\x82\xa1\x49\x99\x92\x3b\x27\xe4\x1a\x8e\x51\x18\xbe\x56\xad\x59\x5b\x9e\xab\x81\x8f\x0f\x6e\x18\xdd\x74\xdf\xcc\x53\x5b\x58\x7d\x30\x50\x26\xbf\xab\xc4\xbb\x53\x63\x73\x55\x65\x40\xd6\xa9\x7e\x27\x0d\x1a\x5c\x90\x72\x25\x70\x23\x17\xe7\xef\xde\xbd\xbf\x4d\x4c\x08\xec\x73\xd3\x58\xa3\xbe\x8b\x16\x9e\x93\x76\x05\x3b\xcf\xb8\x40\x4b\x88\x64\x69\xca\x25\x8e\xc1\xe5\x64\x38\x33\x48\xd9\x58\xa4\xad\x16\xda\x12\xce\xaa\xa2\xfd\xcd\xd1\x21\xfc\x08\xb3\xf2\xa9\x0a\x0a\xff\xf7\xf0\xbf\xca\xef\x4c\xb2\xbb\x26\x24\x2d\xe9\x4a\x2a\xbd\xa7\x11\x1b\x6b\x9b\xc9\x1d\x0a\x1e\x42\x83\x44\x51\xd2\xee\x3a\x8b\x67\xe1\x5a\xa0\xa9\xc2\x29\xac\x40\xdb\x23\x41\x80\xc1\x1d\x8c\xfe\xdb\x80\xec\x27\x5a\x18\x2c\xaa\x7b\xed\xf4\x52\xb7\x74\x60\xfe\x29\x7e\x50\x3a\xfc\x1a\xbd\xf9\xc8\x2a\xd7\x4e\x3c\x73\x9d\x34\x62\xd5\x4a\xe7\xce\x1e\x0d\x5a\xf4\x40\x87\xd5\x67\xff\xe8\xf9\x55\x8f\x36\x07\xcf\x9e\x02\xc4\xf3\x09\xba\x7a\x6d\xfb\x15\x29\x57\xa3\x01\x0f\xee\x4b\x4e\x87\x75\x0c\xfc\x7c\xb1\x96\x69\xe0\xff\x89\x3a\xd7\xb6\xbf\x4b\xfd\xf8\x9e\xb5\x0a\x76\x4d\xb4\xe9\x5e\xb6\x43\xa9\x62\x82\xda\xa1\x8c\xfb\xa1\xc2\x07\x2d\xa9\x2c\x1a\x74\xe1\xab\x64\xc8\xd0\x66\xf3\x33\x0e\x9a\x7f\xf8\x75\xe3\x6b\xd5\x76\xc0\xd8\x7e\x57\x61\x4b\x58\x09\x3f\x7e\xce\x8a\x79\xe1\xa5\x09\xe4\xe1\x73\x13\x4c\x9d\x99\x8d\xec\x65\x9a\x6c\x3d\x29\xe0\x45\x36\x9b\x40\x72\xb0\x13\xb9\xe2\xfa\xc0\x57\x9d\x91\x42\xbb\x55\xaf\xf1\xb5\x0c\xa5\xb7\x12\xf5\xd9\xf1\x3d\x33\x26\x6e\xb4\xd7\x1b\x63\xfb\x6c\x18\x6e\x54\x0b\xe3\xb4\x88\x59\x22\xbc\x90\x76\x55\xab\x57\xca\x38\x24\x66\xf4\x2b\xa4\x4c\x8a\x03\x77\x43\xb0\xa8\x71\x04\x96\x9a\xb7\x02\xfc\xe0\xef\x99\x52\x0c\x18\xaa\xac\xe4\xe0\x6d\xad\x8d\xf6\x68\xaf\xa9\xbd\x96\x2d\x49\x3a\xe5\x7a\x25\x3e\x1e\x91\xb0\x36\x2b\x90\x47\xc6\xc3\x26\x97\x3c\x3d\x6c\x6b\x99\x4d\x10\xbf\xcc\xe0\x6b\x0d\x1c\x3f\x4c\x10\x64\x7e\xc1\x8f\xa1\xeb\xae\x1f\x0c\xa9\xd6\x07\xa3\x8a\xc4\x30\xee\x19\xc3\x46\x6f\xe3\x9e\xf8\x5e\xae\xee\x80\xb8\xf4\x6a\xad\x7a\x65\x56\x68\x67\x26\xe1\x7c\x17\xad\x35\x1b\xd5\x93\xac\x11\x8c\xb8\xa8\x58\x40\xae\x41\x42\xba\x27\x4e\x93\x9e\x51\xbf\x09\x29\xdf\x83\x68\xfd\x43\x00\x0c\x82\x71\x84\x63\xf5\xce\x28\x3f\xb4\x93\xaf\x43\xd9\x1e\x40\x18\x05\xc7\x8c\xec\xe9\xb1\x8a\x58\xf5\xaa\x51\x06\x46\xdb\x09\x96\xe7\x83\x99\x41\xc0\x87\x8c\xba\x3b\x98\x55\x62\xd5\x6f\xf0\xab\xda\x4b\xbf\xda\xd2\x95\xcb\x9f\xf9\x27\xde\xb8\x6c\xe4\xef\x94\x7a\x13\x3f\x70\x0b\x38\xde\x14\x8e\xaf\x4f\x7a\x25\x57\x5b\x36\xf5\xb3\xeb\x9a\xde\x5f\x22\xcb\x72\x1b\xaf\x81\x81\x9e\x20\x9c\x6a\xc4\x4e\x7e\xd6\xbb\x61\x27\x22\x20\x16\x85\x5d\x72\x52\x5e\xec\x2c\xe6\xaf\x67\xc6\xa6\x00\xdf\x7e\x4b\x33\xc6\xf0\xf0\x65\x8d\x51\xaa\xa9\xe5\x80\xf6\xde\x48\x74\x0a\x93\xa0\x8a\x5f\xd2\x87\x17\xc9\xf1\x29\x3d\x3d\x49\xce\x73\x8f\xd3\xef\xa0\x81\x93\x25\x49\x45\x43\xef\x65\x3b\xa8\x47\xcf\x69\x16\x03\x3d\x0d\x58\x79\x7f\xbc\xe5\xc7\xfc\xd9\x06\x61\x88\x05\x11\xcd\xb4\xd8\x2e\xf0\x55\x60\x5a\x6b\x33\x50\xc5\x91\xcb\x6c\xbd\xcc\x5e\x16\x3e\x7d\xf5\xe6\x16\xcd\x53\x1e\x28\x5e\x93\x1a\x84\x2c\xee\x88\x44\x3e\xee\x81\xb3\x74\x36\xd7\x7c\x06\x2f\x04\x32\x1f\x8c\xe5\x81\x1e\x84\x85\x37\x99\x9d\xf4\xdb\x54\x17\x1c\xf2\xda\x39\x62\x6e\x8d\xc6\xf9\x2c\x18\xbd\x84\x9d\xda\xc0\xc8\xca\x85\x15\xb0\x25\xbb\xfe\x95\x6c\x83\x51\xff\x1b\x4a\xe4\x82\x90\x88\x3a\x9e\xf2\x86\x34\x18\x35\xca\xfc\xa5\x6c\x40\x1b\x2f\xc3\xd3\x6a\xc8\xef\xc1\x79\x4b\xf2\x01\xc3\xee\x16\xec\xba\xa2\x33\x22\xa4\xf3\x89\xb1\x8e\x47\x0f\xbe\x74\x74\xaa\x5d\x97\x67\x0e\xba\x65\x28\x46\x30\x37\xb0\xb5\x7b\x03\x5c\x5a\x77\xa8\x5b\x6d\xee\x90\x31\xeb\x0e\x29\x21\xe3\xd0\x2f\x6c\xa7\x55\x93\x01\x47\x2b\xa2\x2b\x5c\x3c\xff\xf5\xff\xfe\x7f\x4f\x2e\xa0\xdb\x17\xbe\x6f\x9f\x5c\x04\x01\x08\xe0\x69\x1a\x08\x81\x78\xff\x1f\xd5\x60\xf6\x6c\x32\xf4\x81\x7e\x55\xe1\x1b\x29\x4c\x35\x18\xc7\x77\x26\xf8\xa3\xe2\x2f\x20\x34\x15\x7b\x99\x00\x0a\x53\x55\x26\x1e\x90\xef\x6c\x71\x46\xfe\x6d\xd0\xab\xbb\x9a\x54\x5f\x67\xe2\x3f\xe1\x4b\xa0\xe7\x02\x66\x13\xe0\xc4\x89\xc7\x07\xae\xf9\xd1\x19\x94\x5b\xf5\xe3\xd9\xca\x8f\x85\xd2\x71\x23\x4b\xb6\xe7\x10\x08\x7e\x00\x6c\xb5\x51\x55\x37\xb8\x2d\xdd\xa8\x87\xda\xae\x06\xb7\xc5\xa7\xa5\x90\x48\xe7\x48\xc4\x80\x33\x3b\xc1\x81\xd5\x6b\x47\x4f\xd3\xe7\xb9\x3b\xcc\xca\x2c\xae\x77\x4a\x2c\xe5\xea\x2e\x48\x92\x15\x1d\xa1\x64\xfa\xe7\xaa\x78\x2a\xf2\x69\xe8\x7b\x85\xd2\x72\xaf\x14\x40\x7a\xd5\x07\x7b\x00\x69\x9a\xda\xcb\x0d\x95\x04\xd6\x85\x8b\xda\x5e\x78\xb9\x61\x44\x88\xf9\x17\xfe\x59\x79\x89\x37\xc6\xb7\x72\x33\x75\x7b\xd1\x0d\x6d\x3b\x75\x8e\xd1\xca\xa5\xc2\xe4\x4b\xfc\x51\xed\xa0\x91\xde\x1a\x45\xa7\x5f\xf8\xa8\x56\x68\xd0\xe8\xa2\x69\xa3\xab\xf8\x5d\x16\x59\x10\xd0\x4f\xec\x6a\xdd\xcb\x3d\xa4\xc9\x3d\x7d\x6e\xb5\x63\x67\x29\xaf\xe9\x17\x25\xe3\xeb\x12\x02\xc5\xc7\x25\x11\x1e\x25\x05\xde\x0f\x57\xe1\x37\x65\x79\x0b\xbc\x57\x8f\xf7\x6d\x38\x11\xe1\xae\xcd\x5b\x2b\x28\x83\x98\x5f\xb7\xb5\x7b\x53\xdd\xeb\x46\x59\x3c\x5e\xf8\xa9\x18\xb9\x8b\x59\xf6\x76\xef\x02\x73\x08\xa3\x4a\x9f\x40\x42\x40\xa2\x0d\xcf\xca\x5e\xdf\xbe\xbd\xfc\x9f\x02\x71\xc0\x78\x2f\xaa\x4a\x35\x30\xe7\x0b\x74\xb7\x42\x97\xc1\xef\xd4\x9e\x98\x32\xce\xa2\x2b\xc2\x3a\x5e\x15\xa3\x25\x6b\x0e\x00\xff\x42\xf6\xaf\x8d\xf6\x45\x66\xd7\x2b\x1c\x15\xba\x73\x72\xb4\xb9\xf1\xf9\x22\xb1\xe2\x2e\x00\x12\x71\xa9\x11\x99\xb1\xa6\x86\xb3\xa8\x0e\xcb\xec\x82\x28\x0f\x64\x0a\x63\xcd\x13\x3c\xa8\x30\xb3\x68\x04\x6e\xc2\xbc\x25\x3e\x0c\x68\x00\xdb\x0d\xce\xd7\x4b\x55\x5b\x53\xcb\xc4\xcc\xfd\x25\x18\xb7\x2c\xd1\x28\x59\x86\x55\x09\x27\x86\xbc\x23\x6b\xb8\xde\x82\x78\x25\x42\x3f\x82\xdb\x82\x1c\x39\x12\x4d\xf2\x5a\x82\xfd\xc8\x31\x23\x95\x19\xb3\xa5\xec\xe1\x04\x60\x83\x05\x58\x8e\x2f\x68\x36\xb2\x5e\xe5\x8a\x95\x49\xbf\xb6\xf2\x5e\xd5\xf8\x4e\x9e\xf5\x73\x79\x03\x50\xd3\x45\x8f\xe8\x93\xce\xe0\x9b\x7a\x47\xe6\x15\xd8\xa4\x44\xc4\xd1\xf6\xb7\x54\x5d\xcf\xab\x72\xc3\x42\x03\x2e\x09\x9f\x92\x84\xe5\xc6\x06\x7b\x3d\x56\xb6\x58\x2c\xf2\xfa\xa2\x10\x8c\xba\x37\xe0\x31\xd3\xe9\x77\x4a\x8f\xea\x91\x0d\xd2\x1e\xd9\xf9\x0e\xcf\x8d\xa7\x0b\x80\x0d\xba\xa5\xbc\xc0\xc6\x52\xcf\x94\x58\xaa\x8d\x26\xdf\x35\x28\x0a\x2a\x7e\x4b\x98\x90\x00\xb5\x73\x9d\x44\x0f\x26\xd4\x1e\x3c\x99\x6c\x9f\xad\xd7\x95\x6a\x6b\xb4\x18\x12\x67\x82\x3e\x63\x26\xd2\x93\x6c\xd1\xb3\xed\xf4\x68\xcd\xcb\xa6\xa9\xfd\xae\x0b\x37\x71\x8f\x4f\xdc\xd3\x67\xa1\xdb\xcf\x1f\x67\x50\x09\xe0\x71\xda\x96\x0d\xf9\x53\x62\x33\x80\x3c\x6f\x6c\x4f\x93\xe7\x71\xd3\xd8\xc6\x3b\x7a\xf1\x6a\xf0\x41\x4c\xf0\xa7\x20\xd4\x67\xaf\x4c\xa3\x1a\xd1\xa4\x33\x30\x9b\x1b\x46\x42\x43\xdb\x1e\x6a\x6f\x69\x95\xc6\x1d\xc5\xfd\x0d\x00\x61\xd8\x59\xc1\x13\xf8\x4d\x02\x7f\x02\xdd\x7d\x84\x6f\x60\xa2\xc2\x07\x33\x52\x75\xe9\xe8\x4c\x35\x84\x43\x33\x28\x8d\x4c\xb4\x7d\x4f\x78\xd6\xe8\x60\x01\x6d\x35\xb1\x3d\xe8\x99\x82\x5c\xd4\x08\x38\x3b\xc2\x73\xa0\x45\x4e\x07\x83\xe9\x1a\x1a\xec\x30\x33\x50\xda\xd5\xe7\x23\x31\x32\x2a\x19\x2f\x5e\x26\x6b\x4b\x15\x4f\xdb\x97\x9c\x35\xe3\xe7\x86\xca\x86\xa3\x92\x18\x2a\x3a\xec\xd3\x89\x48\x9b\xad\xb8\x85\x72\xd1\x1f\x52\x2e\xed\x87\xb5\x10\x96\x3f\x9c\xf8\x32\x52\x47\xe3\x7b\xbe\x72\x62\xf9\xad\x93\x6c\xe3\x40\xef\x4a\x25\x9d\x43\x23\x8e\xf3\xa1\x8a\x90\x3e\x60\x1d\xee\xb0\xe3\xb3\x2e\xfa\x17\x0a\x92\x8e\x14\x21\x33\x28\xf1\x79\x08\xf0\x9d\x87\x66\xf6\x93\x0c\x7d\xd4\x52\x30\xea\xc9\xa8\x62\x35\xa9\x55\xa9\xa2\x42\x40\xcb\x99\xa2\xaf\xef\x02\x53\xe3\xda\xd8\x9a\xc4\xef\x34\x03\x65\x77\x0e\x2c\x05\x04\xf2\x3d\x92\xd7\xa3\x64\x7c\xac\x22\x36\xfe\xa8\xf7\xdb\xac\xda\x40\x52\x27\xf7\x95\x0c\x2d\x9c\x36\x2b\x95\x7c\x2d\xa9\x26\xd4\xbf\x78\x58\x11\x95\x5e\x3b\xe1\x3d\x2b\x5f\x11\xec\x61\x16\xf0\x68\x28\x2a\xb1\x7d\xdc\x56\x44\x0e\xc3\xfe\xd9\x48\x6d\xd2\xf6\xf2\x16\x0d\x66\xe9\x54\xf1\xdb\xec\x04\x29\x7b\x3a\x59\xca\xe7\x34\x8c\xa8\x96\x49\x53\xf6\xf5\x8b\xda\xd8\x40\x5b\x81\xf4\x00\x67\x44\xb3\x03\x22\x1f\xca\x65\xf9\x49\x06\xd9\xa9\x3d\xe8\x0d\xc6\xd6\x6c\xbc\xc4\xdb\xe1\x25\xc9\x4f\x51\xe3\xff\x94\x6f\xb3\xd3\x64\x63\x53\xe9\x55\x03\x88\x54\x19\x01\x77\xc3\xb2\xd1\x3d\xd3\x50\xfa\x60\xf1\x2c\x51\x09\x36\x91\xc6\x7a\x23\x37\xe5\x46\x15\x47\xc6\xca\x05\x43\x8a\x23\xb5\xe6\x38\x00\x27\x55\xff\x61\x06\x41\x15\x78\xdc\xc5\x94\xd7\x0d\x39\xa3\x57\xc8\x3c\xd5\x29\x7f\x4d\x57\x86\x2f\xb5\x69\x62\x9a\x44\x8d\x44\x7c\xad\x14\xd3\x77\xf1\x29\x11\x3f\x2a\x8a\x39\x7c\x58\xbd\x40\x65\x1b\xa7\x85\xc7\xe7\xef\xe1\x7f\x4c\x35\x6a\xcf\xfa\xd6\xbd\xea\xe3\xe3\x6c\xf2\xab\x08\x74\x18\x59\xff\x2c\x79\x31\x66\xf7\xb3\x2c\xd8\xc3\x90\x48\xf2\x1c\xe6\xe7\xd9\xab\x56\xc9\xbe\x8e\xe5\x2f\xe0\x53\xb4\x13\x2c\x51\x7e\xc8\xc5\x87\x51\x35\x39\xcc\x3b\x3b\x0f\x46\xd5\xe5\x90\x54\xe3\x6e\x0e\xd8\x76\xca\x14\xb0\xef\x3b\x65\x72\xe9\xa5\x40\x6c\x9d\x6a\x46\x98\xf1\x32\x60\x1e\x5e\x3a\x74\x2a\x82\xd7\x21\xfc\x73\xda\xce\x0c\x88\x9a\x29\x67\x40\x8d\xcd\xe1\xde\xd9\x09\x10\x6f\xa4\x78\x5e\x8f\x67\x2f\xcd\x8f\xda\x4f\x26\x88\x32\xeb\xae\x95\x2b\x15\x5d\x15\x20\x50\x3c\x86\x8b\x6a\x22\x32\xae\xac\xc0\x47\xb8\xa2\xb2\x7a\x11\xef\xdd\x60\xd7\x48\x60\xfb\x1a\xb5\x46\x73\x72\xa7\x50\x3b\x58\x2e\x84\x71\x71\x6d\xd6\x36\x27\x3a\xe6\xbf\xfe\x9f\xff\xdf\xa3\x5e\x97\xd7\xd3\x41\xf9\x64\xd7\x57\x3c\xc3\x7d\x14\xfb\xfa\x28\x3c\xc9\x95\x4b\x5b\x78\x5c\xa1\x07\x00\xe4\x69\x6f\xdc\x34\x7e\xbe\x7b\xa4\x5d\x33\x9a\x76\x1c\x14\xa7\xfc\xb1\x22\x83\x63\xf3\x5c\xa2\xb7\x5f\x84\x0f\x34\x34\x97\x0b\x13\x21\x43\x2a\x44\x38\xa2\xef\xd4\x48\x47\xc9\x5f\x06\xa1\xc5\x15\xee\xe5\x52\x9c\x89\x93\x06\x97\x77\x9c\x4d\x58\xbc\x29\x8b\xd6\x72\xc8\x64\x85\x42\x98\xea\x62\x8e\xf3\x3c\x38\xc0\x49\xe5\x4f\x2b\x33\xaa\xff\xdb\x99\x12\x0f\x6e\xf1\x31\xcc\x51\xcc\x93\x8d\xcc\x25\x1f\xd8\x6f\x09\x62\xa3\x8d\x3a\x8e\xfa\x48\x39\x56\x02\xa3\xea\x77\x9a\xb3\x90\x6d\x5b\x47\x9d\xc9\x79\xdb\x0a\xfa\x98\x05\x75\xec\x7c\xd6\x5b\x90\xcf\x52\x53\x1b\xb6\x89\x98\x2b\x44\xab\xb5\xa9\x97\x07\x2e\x43\x1b\x0f\xbd\x5a\x1d\x29\xb2\x53\x06\x84\x09\xe0\xb0\xa8\xc8\xdb\x98\x30\x53\xc4\xb1\x8f\x3d\xdb\xfb\x99\x9c\x05\xae\x47\xcf\x87\x85\x9b\x05\x01\xb2\x81\x20\xef\xf1\xc7\x1c\x08\x59\x0a\x45\x81\xea\x9a\x9d\x00\x04\x5b\xe5\xd9\x8a\x95\x74\xa9\xc4\x25\x3e\xda\xe9\xbf\xa2\xdc\xce\x3a\x0f\x07\x1d\x19\x86\xbd\xb5\xf8\xb6\x12\x3f\x1f\xa8\x27\x15\xa0\x8a\x26\x25\x60\x27\xe1\x2c\x80\x84\x8a\xbf\xc5\xc9\xc7\x1f\x3f\x39\x98\x86\x64\x71\xf7\xf1\x0f\x9f\xdc\xa3\xe7\x27\x1f\xff\xf8\x09\x4d\xed\x26\x85\xeb\xb5\xbc\x53\x33\x18\xb0\x60\x80\x46\x7d\x8e\x1d\xa2\x22\xc7\x0e\xd9\xc9\xf2\x99\xa6\xe2\xb3\x2f\xb7\x78\xf4\xcd\x37\xda\xe1\x4d\xcc\x2a\x77\xb8\x19\x76\x35\xf7\xd1\x11\x05\x08\x5f\xb1\x78\x18\x81\x5a\x42\x95\xbf\xc5\xef\xd4\xdd\x7f\x03\xa6\xf7\x04\x7b\xfa\x5b\x28\x16\x6c\xe3\x09\x3a\xf3\x86\x77\xce\xb6\x92\xd1\x68\x32\x5c\xe3\x37\x99\xbe\x85\x8b\xfd\x1c\x9b\x69\x33\x1b\x3f\x3a\x07\xf0\x2e\x27\xf2\xee\x70\x02\x94\x24\x0d\x3f\x42\x7f\xcb\xac\xd0\xa8\x08\xc2\x93\x8e\x4f\x5f\x73\xf0\x5e\xe1\xa8\x06\xb8\x6b\xfc\x1c\x65\x3e\x84\xac\x2f\x0a\xf0\xc1\x99\x96\x18\x83\x8e\x26\x8a\x87\x99\x98\x8a\x67\x52\xe8\x06\x16\xd4\x8f\x9f\xdc\xa3\x38\xdc\xf8\xf5\x1c\x17\x4b\x31\xe8\x54\x5f\xc4\x11\x3e\xbf\x11\x0b\x6b\x1c\x7a\xb5\x8e\x78\xf8\xb6\xb4\xa1\xd9\xa1\xae\xf2\xb3\x49\x16\x57\xbe\xad\x8a\xce\xb2\xaf\xf0\x2b\xfc\x91\x6a\x0e\x0e\x88\x90\xe3\xbd\xc8\x3e\xe3\x32\x2f\x4c\x3b\x38\x31\x78\x74\x0b\x0f\xe0\x59\x95\x50\x58\xc0\xb2\x4b\x9e\x20\x91\xfd\xd5\x06\x99\x67\x65\xcd\xbd\xea\x1d\xbf\xd2\x64\x8c\xac\x53\xfc\xb5\xd1\x69\x7a\x46\xea\x87\x50\x37\x48\x74\x67\xe2\x46\xde\xab\xd1\x21\x1e\x98\x9e\xc8\x44\x95\xf9\x2b\xdb\xda\xc4\x64\xe1\xd7\x18\x80\xcc\x6d\x4e\x9a\x59\xfe\x28\x2d\x4d\xde\xb9\xe8\x3e\xb0\x3c\x75\x08\x72\xa6\x33\x94\x31\x52\x5e\x95\x99\xd1\x1d\x04\x35\x10\x9d\x42\x04\x77\x94\x53\x2c\xfc\xee\x09\x41\xa3\xbd\xcf\x2c\xd8\xbc\xa1\x3f\xf1\x18\xb9\xa9\x9a\x46\xb9\x34\x19\xf7\x6b\x53\x58\xaf\x31\xee\xe3\xf6\x54\xf3\x95\x27\x75\x2a\xb5\xf5\x0b\xaa\xd4\x8c\x4c\x76\xb2\xf7\x7a\xa5\x3b\x19\x49\xe5\x55\x96\x12\x20\xa5\xf7\x72\xb5\x85\x6d\x9d\x33\x5d\xbf\x91\x4a\x80\x35\x01\xb0\x1e\xb1\x3b\x78\x0b\xe5\xe5\xf2\xb7\x99\xd2\xd1\x0d\x5d\x5e\x3a\x26\x02\x8a\xdf\x2a\xba\x94\xc9\x04\xb6\xfc\x72\x86\x33\x57\x76\xd7\xc9\x5e\x95\x0a\x52\x48\x89\x1a\xd2\x59\xb8\x30\x4b\x01\xd8\xef\xad\x88\x57\x46\xe8\x44\x1f\x4e\xb0\x52\xb5\x87\x3a\xc0\xa8\x95\x28\xd1\xa2\xd7\xbb\x33\x7c\xcb\x37\xae\x90\x6b\x38\x13\xfc\x8b\xf3\x8b\xdb\xac\xf1\x2d\x56\xe8\xb9\xad\x7b\xe5\x86\x16\x67\x04\x0d\x91\xe9\x63\x4d\x26\xb4\x01\x08\x3d\x99\x03\xb7\x95\xea\xca\x0e\x11\xf2\x73\xce\xcf\x22\x20\x77\xa9\x56\x12\x18\x75\x6c\x33\xf4\x75\xab\x64\x93\xf5\xbe\x57\xe8\x11\x35\xe0\xdf\x4a\x57\xe7\x2e\xe4\x61\xc6\x22\xfa\xa0\x68\x19\x8d\xd4\x52\xf9\x3d\x7a\x18\xc0\x77\x0a\x30\xb8\xa4\x4e\x72\x3f\xe5\x5c\xc4\x8f\x9f\xdc\x53\xac\xe3\x29\xb0\x12\x0d\x53\xd2\x7f\xc3\x0f\xa2\xa7\x3c\x94\x23\xc9\x6f\x66\x19\x20\x35\x0a\x93\xba\xc7\x35\xec\xad\xd8\xa9\x7e\xa3\x90\xfd\x68\x82\x32\x82\xe8\xfa\xb3\x95\x6d\x54\x20\xdc\xf8\x5b\x68\xe3\x6d\x4c\xff\x63\x4c\x67\xfc\x88\x89\xb9\x8c\x50\x0d\xa5\xfd\x6b\xe8\xc5\xc9\xc7\xff\xf1\x29\xac\x51\x2f\x97\x75\x4e\xae\xc9\x16\x31\x7e\x16\x50\x63\x1d\x4c\xca\x2b\x2e\x54\x83\x1e\x8e\xf3\xf9\x50\xf7\xb6\xa6\xa1\x89\xd6\x39\x94\xc1\x66\xb6\xf9\x4c\x7a\x2b\x3a\xd5\x03\x99\xe2\xd1\x8c\xd6\x98\x8b\x62\x68\x90\xfd\xee\x53\x4d\xb0\x6a\x62\xce\xed\x04\x6d\xa4\x4b\x0c\x53\x92\x25\x42\xd1\x48\x2f\xeb\x65\x1f\x6c\x8c\xa5\x97\xd1\xda\x6e\x1e\x17\xc3\x36\x43\x7a\x56\x0f\xa3\x68\xd7\x74\x67\x96\x51\xdb\xd0\x76\xed\x6a\x7c\x59\x44\xea\xd2\x5b\x7e\x2e\xd4\xea\x95\x17\x31\x5d\x3b\x7e\xd7\x4e\x1e\x82\x37\xe4\x6f\x39\x06\x25\x58\xf7\xca\x6d\xd1\x1b\x2a\x00\xac\xd5\x5e\xec\x2c\x72\x98\x91\x44\x48\x53\xa3\x71\x19\x76\xb5\x30\x51\x29\xba\xc1\xf6\x2a\x3c\x20\x23\x1f\xa7\x11\x15\x9a\x03\x7d\x1d\x36\x32\xe3\x9e\xc3\x17\x49\x80\x8f\x8a\xce\xd0\x6f\x77\xbc\xae\x71\x70\x01\x5a\x0f\x3b\x69\xc8\x6c\x54\x1b\x61\xfb\x46\xf5\xec\x02\x0b\x1f\xe9\xf8\xed\x0c\x66\xc2\x36\x22\x29\xb8\x78\xe6\x76\x36\x2e\xd8\xc1\xf0\x06\xc4\x52\x51\xf9\xfb\x1b\x2b\x45\x1e\xfb\xb8\x48\x79\x21\x27\x9b\xe1\xb2\xab\x39\xc9\x32\xc4\x52\x14\xc3\xf6\xfd\xbf\x9d\x34\x3f\xd0\x26\xc6\xc7\x3a\x13\xcb\x3f\x48\xa4\x8e\xe7\x87\x37\x50\x51\xed\xd0\xc7\x1b\x2c\x19\x38\x28\x00\x48\x9b\xcd\x22\x10\x31\x96\x18\x32\xb3\x3f\x64\x4e\x7e\xc9\xe9\x7d\x01\x83\x2e\x1f\x8c\xda\x67\x9b\x9d\xef\x6d\xd2\x5d\x47\x38\xd5\x43\x27\x35\xed\x06\x7a\x62\x47\xa5\xc8\x62\x1b\x9b\x6c\x56\x6a\x51\x65\x36\x0c\xd9\xc9\x9a\x34\x15\x59\xf6\x8c\x5a\x25\xcb\x9d\x57\xad\x8c\x01\x9a\xa4\x41\x3c\x71\x45\xdd\xb6\x6e\x06\x55\xb3\xdc\xfb\xce\xe2\xb6\x85\xaf\x71\x0b\x82\xbc\x37\xc6\x1c\x85\x9f\xb2\x43\xb5\x1b\x96\x70\xa0\x91\x63\x36\x3a\x30\x32\xb3\x0d\x6f\x83\xc1\x3a\xdf\x15\x33\x6b\x52\xa0\x1f\x9d\x37\xb3\x83\x13\xf8\x5f\x74\xe4\x95\x67\xcc\x98\xc5\xe6\xb9\xa9\xcf\x2f\x06\x85\x5a\x6c\xf1\x7d\xb8\x2c\xfd\xa1\xec\xa4\xa2\xe7\xdb\xf0\x3f\xcf\x88\xae\x77\x19\x55\x4d\xeb\x90\x31\x22\x72\x4e\x49\x5e\x5d\x4f\xa3\x55\xc2\xe3\xc3\xe1\x70\x78\xb2\xdb\x3d\x69\x9a\xc7\x33\xbd\xce\x38\xc8\xd8\xed\xd1\xad\x3c\xab\x6a\x46\x34\x3b\xc3\x94\x31\xe4\xf3\x63\x87\x26\x16\xf9\x3c\x7d\x40\xed\xe4\x52\x79\x58\xab\xd9\x45\x31\xed\xa4\x34\x7b\x0e\x4e\x23\xdb\xb5\x2a\x3d\x53\x01\xf2\x42\x2f\xf0\xf2\xbe\x8c\x84\x99\x2c\x6b\xe4\x06\xee\xc1\x06\x46\xfb\x32\x66\x2e\xed\x3a\x35\x66\x34\x28\x14\x82\xe2\xe8\x90\x64\x42\x44\x1a\xd6\x28\x48\xcc\x00\xce\x8b\x11\xa9\xf6\xff\x4e\x51\x62\xae\xfa\xb9\x65\xf0\x05\x61\xa2\xda\xeb\x3b\x2d\xce\xc4\x9f\xf5\x9d\xc6\xdf\x0b\x76\xdc\x97\x39\xea\xf3\x16\xb3\xbf\x2b\xf2\x43\x5f\x21\x07\xed\x95\xb6\x4a\xa0\xa6\x5e\x50\xdc\x07\x7a\x96\x34\xb4\x8d\x68\xf5\x1d\x9d\xed\x76\x35\xa0\x96\xe1\xc0\x7e\x24\xfe\x8a\x4e\x1d\xec\x46\xe1\x6b\xef\xc8\xc0\x6b\xcf\x8b\x6a\x41\x15\xf2\x1a\x47\x0f\x33\x35\xc7\xe6\xe2\x4d\x4e\xa6\x1b\xbd\xf3\x78\x96\x13\x78\x1e\xbd\x0b\x13\x98\x69\xe7\x74\x66\xd9\x13\x3c\xb9\x05\xc8\xb1\xbe\x63\xf7\xec\x94\x1f\x6c\xbf\x4b\xcb\x09\xe8\x39\x59\xd3\x00\xb7\xae\x84\x5c\xda\x81\x0d\x8e\x58\x2f\x98\x08\x04\xf7\x03\x1d\x53\x73\x4d\x20\x9a\x67\x75\xa0\xb5\x34\x57\xc0\x37\x0b\x27\x0e\x6f\x76\x83\x7e\x03\xcb\x9d\x38\x02\xc7\x95\x0e\x29\x35\xdf\x1f\xb0\x20\x5d\xf4\x27\xe5\x8d\xfb\x43\xaf\x75\x0a\x10\x3e\xd8\xe6\xa1\x8c\xf5\x7a\xa5\xea\x1f\x03\xcf\x92\xbf\xe8\x21\xdb\x81\x8d\x62\x36\x19\x64\x40\xe6\x92\xa3\x13\x55\xd8\xef\xaa\xf7\xe8\x31\x35\xce\xd0\xf4\x52\x18\x17\x12\xa2\x1a\x3d\xbb\x2d\xef\x85\x33\x1c\x8e\xa7\xd9\x65\x83\x18\x1c\x4c\x84\xe7\xa1\xfc\x79\xe2\xaa\xd9\xc8\x5d\x21\x6d\x41\x93\xe5\x62\x0c\x91\x2c\x2b\x73\x4c\xcd\xec\x7d\xf6\x7d\x04\x6c\x41\xef\x5a\xd8\x5f\xe3\x31\x20\xba\x39\xe7\x95\x74\x0c\x08\x43\x68\xd1\xd3\x88\x63\x20\x83\x09\x17\x44\x67\xe2\x43\xf8\x9d\x80\xe7\xcc\x2a\x63\xe6\x97\x9e\x36\x1c\x01\x4c\x4c\xac\x0a\x71\x2b\x82\x89\x0c\xe9\xaf\x9c\x6e\xd0\x53\x1a\xde\x78\x81\xd4\xfa\x28\xe4\xa3\x44\x6e\x1b\x15\xb8\x9d\xd3\x82\x9b\x63\x07\x10\x06\x43\x81\x04\xdb\x86\xd4\x8a\x91\xdd\xd3\x38\xa3\x1e\xb5\x32\x51\xc4\x17\x65\x23\x83\x50\x92\xf1\x8a\x0f\x3a\x29\xf9\x2e\xd5\xd4\xf5\xd6\xe3\xad\x4c\x9d\x0d\xec\x55\x48\x9c\x19\xe2\x69\x81\xf8\xcc\x82\x72\x92\x1c\x8f\x4c\x2c\xbe\x84\x12\xdd\xe0\xb6\x18\x1a\x48\xae\x56\xba\x51\xc6\xcb\x36\x89\x47\xe8\xc3\x68\xab\xbd\xc2\x57\xc2\xd9\x68\xa2\x6b\xc8\x6c\x9d\x90\x6b\x99\xcc\xd8\x91\x1d\xcb\x04\x23\xc7\xc5\x62\x31\x5e\x28\x35\xb7\x97\x56\x3b\xb3\xaf\x57\x31\xed\x01\xf0\xd1\xeb\x11\xaa\x5c\x70\xbe\x08\x5b\x0c\xe6\x9f\x9b\x13\x7d\x1f\x2f\x26\xa3\x35\xb2\x28\x0b\x23\x85\x93\xb6\x1c\x2d\xcd\x99\x22\xf1\x28\xe6\x40\x22\x69\x4c\x59\x57\xd4\xf5\xea\x1e\x0e\x23\x1c\xf1\x30\xae\x33\xcd\x08\xfa\xdb\x91\xe8\x13\xc2\x7a\x14\x82\x88\x36\xce\xc3\x6e\x25\x1b\x90\x30\x83\x5f\x87\x33\x3e\x51\xa6\xb0\x21\xd8\x4f\x1a\xb1\x3c\x18\x54\x89\x39\x1a\x6a\xf2\x5c\x06\xc5\x42\x74\x15\xb7\xe4\x2e\xd3\x1b\x69\x43\x6e\x55\x8c\x35\x4f\xe2\x92\x0c\x33\x81\xa7\x2f\x49\x9d\x25\xd2\xe8\x8a\xb8\x34\x98\x9b\xf4\x29\xae\xc6\x3a\x2d\x44\x20\x6d\x71\x91\xee\xb7\x16\xc5\x65\x68\xd0\xa8\x8e\xaf\xc3\x96\x1b\x2b\x32\x43\x69\x7b\x7e\xe2\xea\x6d\xb6\x1d\xec\x3a\x1f\xa7\xf1\x20\xa5\xca\xb6\xd6\xde\x51\xb8\x86\x25\xfe\x4c\x39\x1b\xed\x43\xe6\x2b\xed\xc5\xeb\x32\x77\x29\x9d\x5e\xe5\x31\x1d\x7f\x81\x84\x99\x43\x85\x1f\x5e\x64\x90\xfc\xf8\x6a\x0a\xea\x0e\x66\x95\x22\x61\xde\x1c\xcc\x4a\xbc\xb3\xfb\x29\x2a\x00\xd3\xa6\x0e\x3a\x8d\x84\x12\x72\x62\x70\x8a\x2f\xeb\x3c\x88\x5f\x91\xec\xda\x3c\x1b\x14\x76\x20\xf6\x3e\x04\x19\xb9\xd1\x33\x54\x36\xeb\x11\xdb\x9f\x4e\x7b\xc4\x0e\x8a\x80\xc0\x7e\x9d\x7b\xaf\x39\xb7\x5e\x63\x03\xba\x88\x5d\x36\xf7\x20\x25\x34\x45\xac\x4e\x4e\x9b\x69\x0c\x30\x08\xa3\x1d\x86\x8c\xaf\x3b\x38\xaf\x76\x59\xff\x9c\xa2\x37\x75\x46\xb6\x35\xb3\xc6\x20\xe7\x2c\x07\xdd\x7a\x6d\xb0\x50\x09\xad\x3e\x4f\xa1\x43\xda\x08\xbc\x00\xe5\x78\x6b\xbf\x06\x50\x64\x7f\x3e\x5c\x5f\x3e\x00\x1e\x3a\xf0\xa7\x22\xe4\xcf\x12\x46\x88\xd6\x3b\x6d\xde\x0f\xd7\x97\x14\x91\xd1\x6f\xd5\xa1\x34\x3d\xf1\x72\x99\x8d\x21\xc9\x18\xa3\x61\xa1\x8b\x34\x7c\x95\xa8\xfa\x23\x03\x83\x30\x35\xc3\x8c\x46\xa8\xd5\x9b\xad\xdf\x2b\x74\x51\xf0\x00\xae\xd8\xb9\x39\x5c\x71\xfc\x8e\x20\x88\x85\x39\x67\x3c\x96\x68\x65\x24\x6e\x19\xe7\xfc\xa0\x66\x45\xff\xbb\xc7\x35\x47\x1d\xc5\xfc\xe3\x8d\x13\x2f\x11\x66\x5a\x9e\x86\xc6\xf9\x03\xd9\xec\xce\x23\x78\x27\x77\xe8\x1e\x07\xa0\x7e\x7a\x10\xc7\x22\xb8\xba\x3e\x13\xef\xe8\xd7\xc3\xe0\xe8\x22\x3b\x95\x39\xcf\x3e\x1f\xea\x6b\xee\xa8\x00\xe8\xfd\xe0\x58\x30\x64\x13\x2e\x12\x14\xfe\x3e\x38\xd5\xff\x43\xfc\x1d\x36\xf7\x3f\xc4\xdf\xb5\x69\xd4\xe7\x7f\x04\xfd\x7a\x8c\xb6\x05\x84\xe3\x74\xf2\xec\x9d\x14\x77\x30\x08\x58\x2c\x3f\x8c\x86\xb6\x1d\x2f\xe8\x92\xb9\x64\x5f\x21\x9d\x0f\xde\x20\x41\xa2\xee\xf5\x72\x18\x31\xfd\x8d\x44\xdb\xdf\xdf\xc9\x26\xe8\x05\x7e\x89\xff\xdb\x9a\x8c\x16\x62\x10\x62\x74\x4e\xbc\x95\xae\x76\xf4\x6c\x94\x9d\xac\x92\xe7\x3e\xba\x18\x96\x31\x9c\x8a\x2b\xdf\xcd\x95\x72\xce\x62\xc4\x36\xc5\xe3\x1a\x1d\x3e\x66\x9c\xbf\xb9\x57\xbd\x8f\xd7\x0c\x5e\xdc\x5a\x71\xad\x36\x43\x2b\xfb\xfc\x45\xe6\xb8\xc0\x78\x5a\x02\x1e\x56\x51\xe0\x19\x02\x83\x23\x7a\xc6\x95\x91\xdd\xf8\x36\x93\x35\x98\xc0\x3a\xf5\xe4\x40\x69\x5c\x0b\xc9\x8a\x0e\x85\xc5\x27\xec\x6d\xb6\x74\x05\x51\x54\x9c\x8d\x06\xb7\x01\xef\x5c\xe6\x5a\x41\xa6\x10\xb1\x0d\xe4\x11\x62\xa6\x05\xc9\xac\x23\xf8\x84\xe0\xfb\x98\x91\xb4\x46\xd0\xe4\x98\x65\xf4\x4a\x37\x69\xcd\x08\x2a\x04\xd9\xa0\x26\xa1\xd1\x55\xe9\xc0\x30\xdf\x0e\xe4\x14\xf7\x0c\x36\x28\xfd\x7c\x1f\xdc\xea\x4e\xc1\xa2\x14\x95\x7c\xe9\x96\x83\x92\xb1\x6d\xb8\x21\x78\x92\x4a\x2f\x21\x70\x9e\xc7\xf8\xa2\x1c\x72\x04\xc5\x4f\x74\x14\xe3\x66\x9a\x37\x9a\xa6\x59\x9f\x22\x7a\x9d\xad\x61\xb4\xdd\xd7\xa6\xd1\xf7\xba\x19\x64\x8b\x8d\x79\x08\xef\x1f\x4a\xbc\x20\x0f\xaa\xfe\xfe\x38\xee\x51\x87\x70\x87\xc7\x38\xd3\x68\x0d\xb9\x4e\x5e\xbe\x67\x7b\x04\xc4\x27\xda\x37\xf0\x4e\x42\x6f\xdd\x22\xf9\xeb\xcd\xf5\x6d\xa4\x4c\xc3\xf5\x41\x4e\xcb\xc2\x2a\xfd\x69\xc2\x35\xb0\x41\xc2\xaf\x3d\xe0\xc4\x73\xfa\x85\xf4\x72\x16\x2c\x4c\xe8\xfb\x60\xa5\xaf\xb0\x10\xf2\x06\x8d\xf4\x32\xdd\x68\x18\xcb\x4e\x45\x96\x72\x75\x37\xab\x2b\x99\xc5\x3f\xb3\xbf\x72\x75\x0c\x0c\x5c\x90\x15\xf0\x15\x05\x54\x0c\xe4\xf4\x64\xca\x0c\x4d\x94\x86\xd7\x39\x69\x0a\x0d\x4e\xaf\x03\xb0\x2b\x63\xd7\x9d\x99\x7a\xa0\x7c\x74\x84\x4d\x9b\xa3\x47\x47\x06\x2a\x74\xa0\xf0\xb8\xfd\xcf\x8c\xd6\xf1\x81\x4a\x84\xe8\x8b\x9e\x66\x8e\xe3\xfb\xc3\x51\xc2\x96\xf9\x83\xc9\xb5\x63\x40\x2b\x39\x6e\xf9\x54\xe9\x70\xca\x2e\x16\x30\x8c\xba\xf6\x38\xe4\xa7\xac\xfc\x3d\x8d\x76\x6f\xe4\x7a\x38\x73\x8d\x94\x1b\x25\xb9\xe3\x6d\xc5\x17\x89\x34\x00\xe7\xc1\xb1\x49\x60\x6e\x50\xb3\x0b\xe7\x67\xa7\x4c\x83\xc6\x61\x6b\xd2\xe3\x4f\x24\xe1\x87\x57\xca\x17\xf4\xcb\xc7\x24\x87\x79\x64\x41\x45\xf0\x05\x7f\xb1\xd3\xdd\x1f\x4c\xb0\xde\xa9\x3d\x9b\x61\x25\xc9\x49\xde\x21\x7f\x19\xe8\x32\xba\xd4\x0a\x04\x77\x06\xd5\xec\x89\x90\x5c\xa3\xc7\xa6\x85\x02\xfd\xf1\xe6\x95\xde\x8a\xe6\xbc\x14\x65\xf2\x4c\x53\x8f\x4c\xcd\x40\xce\x85\xfe\x14\x26\x67\x47\x0b\x8c\xdc\x0a\x16\xb8\x4a\xb7\x82\xd3\xf5\x32\xaa\x38\xf8\x16\x9c\x2a\x1b\x6d\x9f\x5b\x56\xe5\x0d\x9b\xe9\xd2\x6c\xb1\xe2\xf2\x9b\x82\x87\xc2\x7a\x4c\x8f\xa7\xb6\x14\xa1\x31\x57\xb9\xa6\x07\xab\xe3\xe3\x71\xb4\x66\x1f\xf0\x45\x18\x1a\x45\xb7\x2f\xc7\x46\xee\x62\x76\xd4\xd8\x59\x58\x2e\x24\xe3\x5b\x19\x0a\x6d\x59\x3e\x4f\xe0\x57\x34\x78\x3e\xe6\xaa\x35\x0c\x14\x92\xbc\x82\xd4\xde\xd6\xcb\xc9\xc0\x17\x71\x43\x4a\xc7\x20\xac\xcd\x21\xbf\x90\xc8\x48\xe6\x65\x17\x85\x70\x05\x6c\x3c\x06\x99\x60\x1f\x64\xe4\x7b\x5b\x8c\x1d\xff\x73\x2e\xeb\x65\x98\xad\xfa\x72\x05\xb0\xf0\xf6\xa4\x31\xe1\x45\xca\xfa\x93\x91\x62\x25\x5e\x10\xb1\x76\x05\x2d\x16\x76\xc3\x6a\x4b\x17\x42\xa8\x44\xe1\x18\xe6\xef\x6f\x6e\x05\x69\xe3\x7c\xaf\x37\x1b\x38\xe1\xc5\x9f\xb7\xca\x60\x50\x59\x67\x77\x8a\xc9\xe7\x6a\x35\xf4\xa8\xde\xa0\xe8\x99\x7b\x15\xbc\xf8\x99\x86\xcf\xbb\xdc\x95\x70\xd0\x1f\x90\x15\x93\xc0\xf8\xde\x68\xe5\xdb\xa9\x95\x5e\x1f\x16\xe2\x52\xc9\xde\x50\x30\xca\x60\x78\xf9\xe0\x1b\xba\xd8\x13\xf4\xfc\xf0\xec\xa9\xcc\xd5\x96\x3c\x24\xf9\xfe\xe0\x93\x70\x32\x3c\x63\xd0\x39\xb7\x79\x61\x84\x1f\xba\x32\xc4\x53\x81\xce\x7e\x0d\x87\x8c\x60\xbf\x04\x5f\xb3\x0f\x26\x6d\xc8\xa3\x97\x52\xd5\x5f\x4b\xd9\x19\xd5\xc2\x93\x16\x93\xdb\x72\x26\x6e\x95\x43\x3f\x6b\xf8\xfd\x05\xf0\x30\x04\x37\x14\xc6\x0e\x4d\xd1\x51\x79\x47\xcb\x22\x62\x0d\x01\x77\x91\x65\x0b\x63\xe4\xa6\xea\x9e\xd9\x3a\x52\x17\xb1\x69\xfb\x71\x3f\x69\xed\x93\x15\x12\x55\xf7\xb7\x41\x0d\x0a\x03\xb9\xef\xe4\x81\x02\xb4\xae\xd5\x5e\x38\xb5\xb2\xa6\x71\xe1\x01\xbf\xf6\xf8\xc8\xd0\x89\xa1\x0b\x8f\x3e\x27\x53\x32\x6d\x5b\xa9\x4b\x56\xce\xcf\x81\xb8\xce\x92\x47\xad\x6b\xfe\x39\x05\xa2\xfb\x78\xe8\xd5\x6b\xfa\x35\x05\xe9\x38\x00\x59\x0c\x45\x36\x05\x59\xda\x06\xe6\xec\x17\xdb\x1c\xa6\x6a\xd0\x30\x3b\x51\x17\x8a\x7b\xb9\xb3\x7b\xbc\xe1\x59\x1e\x30\x43\x7b\xa7\xda\x35\x85\x0a\x01\x01\x53\x05\x5f\x10\xc8\xb1\x44\x77\x15\x82\xb6\x10\x8f\x13\xea\x6b\xf1\x45\x53\x6e\xb4\xc6\xd1\xd3\x73\xff\xdf\xe3\x36\x91\xa7\x08\x6e\xd7\x1b\x12\x0e\x70\x36\x51\xff\x49\x31\x2b\x4f\x41\xb8\xee\xb2\xd7\xb4\x41\xaf\xd3\x51\xbc\x48\xd5\x20\x0d\xc0\xf0\x3b\x01\x84\xa4\x2b\x7a\xac\x9d\xb9\x87\x4b\x3c\xb5\x76\x58\xcf\x4c\x8b\xd8\x9d\x1f\x0c\x10\x39\xf2\x9b\x40\xa4\xf7\x02\x08\x14\x1c\x03\x8f\x79\x24\x06\x4f\xca\xd5\xd7\x05\xf9\xc8\x08\x70\x9c\x18\xbb\x61\xc6\x8e\xe3\x40\x92\x92\x05\x08\x6b\xd0\xa9\x64\xb6\x81\x30\x56\x1f\xae\x2f\x73\x62\x78\x2a\x24\x9c\xbf\xa4\x92\xe8\xd5\x46\xf6\x4d\x70\x49\xc1\x84\x79\x2b\x3d\x11\xe0\xdc\x5f\x3d\x3a\x58\x62\x14\xf4\x98\xf8\x4e\x1b\xf4\x41\x88\xb2\x03\x2b\xbf\x40\x8c\x4b\x66\x00\x40\x8b\x87\x0e\xc8\x33\xd1\xfa\x50\x0f\x76\xf9\xfb\x7f\xbf\x79\xff\xee\x54\x7c\x7e\xb2\xdf\xef\x9f\x40\xf1\x27\x43\xdf\x2a\x03\x5d\x68\x4e\xc5\xff\xf5\xf6\xf2\x54\x28\xbf\xfa\x61\x21\xde\x12\xd5\x4e\xc4\x90\x2d\xf1\xd0\xca\x16\xcd\xda\x86\xfe\x5f\xa0\xe6\xbc\x63\x58\xb1\x98\x07\xf0\xcb\x99\x3b\x98\xbd\xf0\x06\x2b\xc4\xbe\xc3\xb7\x58\x19\xa3\xb0\xea\x15\x3e\x61\xc2\x1f\x59\x46\x2b\x57\x77\x73\xe1\x31\xc6\x20\x7a\x65\x0d\x37\xe3\xcd\xca\x9a\xb2\x0d\x04\x12\xac\xf6\x2f\xd0\x5e\x3f\xa9\x3a\x61\xe2\xe2\x29\xbc\x55\x06\xa8\xd4\xd0\x36\xe5\x01\xb3\x54\x61\x22\x54\xf3\xf3\xb8\x30\xba\x1b\xc2\x98\xf2\x67\xe2\xdf\xd1\xdd\xc6\x36\xdc\xf4\x43\x56\x58\x5b\x08\xbc\x18\x17\xc6\x38\xa1\x99\xf4\x73\x26\xde\x50\xc0\xd2\x20\x7d\xa5\xbc\x28\x81\x4d\x90\xb0\x32\xec\x4c\x5c\x2a\x2f\x76\x51\x39\x86\x6b\x8d\xd0\x4d\x8b\x94\x96\x60\xf3\xd9\x61\x5c\xe8\x7a\xf3\x94\x3d\x10\x05\x33\xa9\xe9\x38\x14\x97\x7f\x85\xc5\xe3\x03\xa0\xf1\x3e\x34\xbf\x24\xa4\xf7\x2f\xa7\xf4\xaa\xa7\x39\x15\xe1\x45\xcc\x29\xdb\x7b\x9c\x86\x47\xb4\xcd\xa9\x18\x4c\xfa\x4d\xaf\x11\x58\x20\x0a\x9f\x68\x6f\x06\x9f\x7c\x03\xb4\xed\xad\xd1\xbf\xcf\x0c\x0a\x1e\xa6\xe4\x2d\x6a\x76\x92\x33\x0a\x1f\x2e\xcd\x72\x51\x3c\xa3\x3e\x48\x5a\x43\x04\x60\x35\xce\x48\x06\xa7\x2f\x94\xc7\x78\x11\x73\xd4\x84\xb4\x55\x71\xdd\xa5\xfd\x1f\x28\x34\x9f\x9f\xc4\x8a\x92\xaf\xdd\x82\xfe\x21\xf1\x2b\x25\x9e\xf9\xe3\x7c\x62\x3a\x90\xf1\xae\x4c\x5d\x27\xfc\x19\x03\x8e\xea\x98\xb0\x45\x3c\x15\x53\x71\x2a\xd5\x70\x8c\x03\xa4\xb7\x82\x81\x33\x09\x31\xab\xd0\x61\xf9\x8b\x98\x56\xf2\xd3\x81\xce\xe0\xc9\x51\x12\x19\x74\x43\x80\x94\x20\x3f\x13\x80\x33\x2f\x5f\x1b\x01\x08\xbe\x35\xd2\xc6\xab\xe0\x28\x6e\x12\x63\x20\xe7\x55\x08\x6b\xf0\x18\x4d\x9e\xad\x47\x99\x8d\xdd\x49\xb4\x74\x79\x81\x3f\x26\xb4\x69\x2b\x8d\x21\xab\x3e\xfa\x95\x8f\x56\xd7\xda\x43\x08\xc3\xf0\x02\xbf\x38\xb4\x54\xde\xb3\x04\xc6\x9d\x4a\x90\x73\xb8\x12\x33\x8d\x50\x88\x1d\x65\xca\x5e\xc9\xe6\x09\xd2\x32\x92\x27\x17\xe2\x76\xab\x0e\xd1\x91\x1f\xc6\x6d\xc2\xdb\x85\xd2\x67\x35\x3e\x78\x0a\xd1\x0c\xb2\xa1\x41\x57\x71\x79\x07\xfe\x92\x05\x6e\x66\x29\xca\x1c\x44\x93\x9a\x91\xeb\x2d\x0a\x3b\xd4\xb9\x5e\x4c\xc3\x07\x44\xa8\x71\x98\x83\xd4\xd3\xa3\x61\x0e\xf2\xa2\x79\xac\x83\xac\x28\x9e\xfc\x71\x10\x66\x0d\xaf\x8a\x69\x99\x46\x32\x48\x5d\xfd\x8a\x60\x06\xf3\x33\x37\x16\x9d\xbe\x38\xd5\x0f\xd9\x5d\x36\x79\xe7\xbe\x22\xac\xc1\xd8\xdb\xc8\x57\x48\x51\x73\x6d\xc9\x4d\x8e\x62\x03\xbe\x64\x85\xd9\xe8\xf5\x7a\x41\x6e\xdb\x6a\x67\x87\x1e\x23\xee\xfe\x82\xdf\xe2\x06\xbf\x09\x84\xdd\xf4\x9c\xb1\xbf\x1e\x4a\xe4\xe7\x8e\x67\x6c\x02\x44\x89\xf8\x10\x03\x35\x0e\xf7\x52\xb7\xc8\xbc\x9e\x89\x17\x7a\xbd\xa6\x47\x19\xef\x2c\x06\x81\xa2\x9c\x05\x15\x01\x21\xa6\x86\x5f\x18\xf5\x00\xed\xe4\xb6\x76\x4f\x85\x6e\x20\x25\x03\x73\x5d\xab\x3d\x7a\xbc\x03\x30\xf8\x40\x9f\x77\x19\xc4\x60\xd0\xa3\x4f\x80\xf9\x40\x9f\x39\x14\xa0\x8c\xef\x22\x83\x0a\xf6\xa4\x89\x6e\x68\x50\x78\x48\xca\x59\x5c\xa1\x01\xee\xa4\x81\x65\xa5\x51\x3a\x48\x20\xb9\x17\xf1\x93\x26\x2a\x86\x12\x04\x0f\x34\x12\xac\x5f\xde\xbc\xa3\x4f\xf4\x50\xc7\x8e\x0c\xd0\x71\xdf\x4b\xdd\xf2\x78\x73\x04\xb4\x0e\xdd\xe0\xa8\x26\xb8\xe7\x81\x3c\x91\x25\x67\xa6\xfc\xb9\xeb\x3e\xc2\xe1\xad\xad\x77\xd2\x1c\xe2\x23\x9f\x1b\xbb\x53\x2c\x19\x81\x04\x45\x51\x6c\xb7\x76\x9f\xbd\x7b\xb0\x56\x40\x11\x86\x0a\x03\x12\xb4\x14\x80\xb6\x0a\xde\x0a\x17\x73\x5e\x0b\x43\x1e\xb9\x9b\x24\x6d\x39\xed\x52\x06\x89\x10\x4d\x2f\xd7\x68\x86\x0e\xff\x63\x6a\xd7\xab\x54\xec\xaa\x57\x4f\xc6\xc5\x9c\xe7\x25\x75\x83\x3f\x62\x3a\x9b\x91\xc3\xbf\x98\x26\xb7\x64\xc2\x98\x66\x26\xcd\x58\x78\xf1\xe0\xad\x38\x71\xec\xdd\x88\x37\xe2\xa8\x42\xdc\x05\x29\x18\x3c\xee\x91\x0b\xdb\xa8\xa2\xaf\xb9\x7d\x3a\x06\x72\x71\x5b\x11\xc7\xc7\x5b\xa1\x3d\x05\x69\xe8\x7a\xdb\x0c\x2b\xbf\x28\xda\x5d\x94\x26\xf6\x45\x85\xd5\x28\x5a\xbb\x41\x19\x03\xdd\xd1\x51\x6c\xad\xc1\x80\xb8\xed\xc9\x16\x4f\x66\x54\x57\xef\xba\x9e\x34\x86\x01\xbd\x97\x9b\x18\x44\x42\x6e\xe8\xe5\x6d\xca\x43\xfd\x54\x88\x90\x59\x94\x49\xd1\xea\xc3\xa5\x70\xf2\x69\xe5\xe5\x06\xf9\xbe\x55\xee\x3f\x14\x98\x58\x6b\xe8\x72\xdb\x6d\xb3\x06\x14\x27\x4e\x48\x9d\x9e\x32\x21\xa7\x34\x4d\xcd\x96\x05\x6f\x67\x76\xe3\x18\x73\x40\x3e\x22\x26\xff\x92\x7e\x2d\x16\x8b\x99\xd5\x34\x0d\x73\xd2\xf5\xea\xc9\x78\xae\x33\xf8\x38\x00\x7f\x56\x8f\xdb\x56\x74\x56\x1b\x2f\xc8\xd4\x5a\xfa\x62\xa5\x04\x85\x29\x4f\xad\xb6\xe6\x09\x1e\x5f\xa9\x19\xe3\x07\x06\xb1\x3a\x5e\x28\x69\xc9\x4c\x56\x3b\x06\x60\xe0\x9d\x82\xb6\xdb\xe5\x76\xc1\xd5\x93\x36\x0c\x3e\xa2\x98\x6c\x34\x62\x0e\x13\x54\x79\x51\x36\x03\x4c\x47\x21\x67\x25\x05\xfb\x18\x66\xfe\xf4\x0b\xf5\x8c\x8d\xb5\x31\x6a\x9d\xeb\xac\x89\x77\x4e\x5e\x6e\x1e\x38\xeb\x26\xb5\xe5\x17\x37\x54\xc5\x17\x0e\xb7\xf1\x1e\x28\x4d\xbf\x33\x3c\xcc\x82\x00\x05\xe5\x3d\x32\x61\x41\x26\xb8\xf8\xa9\x4c\xb6\xaf\xc2\x3a\xc0\xf4\x54\x22\x3c\x53\xc6\x83\x39\xfc\xae\xaa\x8f\xb6\xdf\x7c\x4a\x61\xbc\xa3\x1e\xbf\x50\xc5\xa3\x36\x07\x60\x62\xd8\xcd\x23\x80\x29\x14\x67\xc2\x18\x16\xf0\x2b\xd8\xa6\xa5\x06\x1e\x00\x48\x97\x86\x21\x1b\xd8\x08\x93\xa3\x36\x2c\x82\xcb\x60\x8a\x20\xcc\x6f\x13\xf2\xea\xc8\x93\x6f\xb2\x78\xff\xc0\x8e\x47\xd8\x38\xf2\x4c\x5c\xe1\x8f\x4a\x9b\x7b\xed\x81\xaf\xd8\x29\x32\x67\x79\x83\x09\x78\x0e\x59\xa3\x2a\x32\xa1\xa4\xa8\xe3\xae\x42\x97\x96\x7c\x75\xe0\xf0\xc5\x2c\xfe\xe2\xf4\x51\xa0\xdd\x22\x30\x6e\xe6\xa7\x11\x43\x56\x17\x0f\x2a\x00\x39\x8e\xca\xcc\x53\xab\x18\x05\x3d\x84\x3e\xc7\x21\xc4\xd4\x87\xa0\x8b\x90\x08\x40\x1d\x86\xe0\xc3\x08\x71\xe1\x5b\x62\x43\x42\x0e\x2e\x2a\x0c\xa3\x6d\x0a\xe7\x0a\x6e\x91\xaa\xc9\x68\xcd\x96\xde\x61\xa5\x62\xc0\x34\xa2\xc9\xe4\xcf\x04\x5f\xb8\x05\x67\x05\x8b\xa4\x90\x26\x94\x2c\x5a\x75\xaf\xda\x42\xe3\x82\x88\x40\x42\xf8\xf9\x48\x20\xe0\x69\xd8\xf8\x6f\xf7\x35\x3f\xc5\xf1\xa0\xb7\x79\x44\x97\x06\x34\x6b\x4c\x0a\x41\x3f\x6d\x44\x95\x19\x5d\x7e\xd3\x53\x8a\xf9\xb0\xb5\xb9\x32\x7a\x14\xbf\x36\x66\xcd\x05\xb2\xfd\x67\xac\x52\x4b\xd0\x8c\x98\x15\x03\x17\x31\x7d\xed\x45\x34\x1b\xbb\xda\x7e\xf3\xaf\xd9\xba\x96\xe1\xd9\xc7\xad\x9e\xc4\x5a\x2d\x1a\xfd\x6d\x31\x57\x8f\x1a\x6e\x14\x14\x66\xac\xda\x98\x04\x02\xc2\x0e\x3e\x58\xa4\x0c\x0b\x94\x37\x38\xaa\xe3\x33\xc3\x09\xbe\x6b\xa5\x80\x40\x74\x25\xf7\xe5\xa8\x40\x47\x2e\xdc\x1f\x0a\x0f\x34\x6e\x25\x50\xa6\xe8\xa9\x28\x6f\xe4\x83\x25\x72\x6e\xc6\x8e\x2e\x6f\xff\xf9\x90\x41\xf3\xf7\xa8\xe7\x4d\x13\x74\x5c\x1c\x21\x24\x8c\x5f\xd2\xa3\xad\x33\xcf\x9d\xe3\x80\x50\x69\xe4\x90\x6f\xe5\x17\x06\xc5\x7a\xab\x98\xd6\x2f\x52\x34\xf9\xba\x08\x13\xf4\x36\xc5\xab\x4f\x11\x83\x7e\x8a\xc5\xd8\xa4\x32\xc4\x50\x1c\xa5\x27\xfa\x8a\xcf\xfc\x3a\x8a\xd9\x93\x80\xe8\x9b\x22\xbc\xce\xe5\x8c\xcb\x97\x75\xd0\xff\xba\xb7\xad\x8a\x0d\x15\xd7\xb6\x55\xa9\x79\xa5\x9f\x9e\xb2\x60\x2c\x13\xd3\x59\x5d\x10\x62\xb6\xc4\x74\x0a\xbf\xcf\x01\xbb\x62\x2a\x9f\xb1\xb9\x3f\x65\xe4\xc7\x19\x3b\x8a\x37\x3f\x8d\xa1\x0d\x3a\x2e\xe5\xd3\xf8\x9d\xdd\x57\x74\x14\x2f\xd0\x11\x10\x85\xb7\xe7\x94\xb2\x52\x4a\x03\xce\x28\x79\xfa\xbe\x06\x19\x8b\x62\xb5\x4d\xf3\x47\xa1\x40\xf0\x24\x8a\x41\x40\x38\x64\x1c\x32\xf6\xec\x6e\xca\xd0\x65\x73\x19\xc4\x82\xb0\x8e\x1c\x8c\xd3\x23\xc8\xa2\xde\x1c\xe2\x6b\x2a\xc6\x07\x6e\xe3\xea\x4e\x83\xe2\x17\xf5\x71\xf1\x19\x87\xda\x85\x76\xa0\x85\x63\x6a\x07\xbe\xb3\x2b\xdb\x91\x43\x7c\x4d\x3b\xa0\x16\x74\x6d\x42\x82\xe2\x03\xed\x91\x4d\x08\x51\x5c\x18\x62\x8d\x9b\x98\xa2\x49\xdc\x66\xe7\x3f\x1a\xb3\x35\x23\x7e\xc6\x2d\xe6\x8e\x54\xca\x21\xdb\xa3\x19\x96\x83\x0c\x4b\x67\x83\x18\x7e\x99\x08\xa0\x0f\x19\x28\x19\x41\x33\x93\xd1\xc2\xc7\xef\xf4\x5c\xa2\x76\x25\x16\x11\x79\x05\xa6\x0d\x9c\xf9\xe5\x23\x99\xe0\x82\x93\x7b\xe2\x17\xf3\x43\x05\x19\xc6\x30\x93\x0d\x42\x24\x83\x16\xd8\x60\x59\xad\x53\x64\x91\x98\x23\x54\x24\xe2\x53\xb8\xb0\x63\x73\x6e\x2f\xbb\x85\x50\x78\xd9\x12\xba\x1a\x0c\xf8\x10\x6a\x27\x0f\xe3\x20\x7c\xc0\x62\x97\xbb\xe6\xb8\x60\x35\x6d\x4a\x3a\xd7\x5f\xe9\x7b\x65\xd2\x82\x39\x2a\x5c\x2d\xf2\xad\x3e\x5d\x20\x69\xd9\x6d\x7a\x74\xaf\x13\xe6\x1a\x88\x45\xb6\x14\x10\xe1\x4f\xb1\x97\x2b\x69\xc6\xd4\x00\xed\x68\x94\xdc\x3d\x7e\x88\x28\x7c\x43\x03\x90\x6c\x3c\xdc\x02\x24\x0b\xe4\xd0\xcd\x34\x39\x09\x78\xa8\x21\xb4\xe7\xbf\xa1\x21\x48\x37\xbe\xb2\x21\xa7\xa1\x15\xc4\x9d\x00\x15\x98\xdb\xff\x0f\xb5\x6f\x24\x3e\xe1\xe2\xbc\xce\x65\xa8\x40\x0c\xd0\xbe\x0c\xe5\xbb\x59\xfb\xb2\x4c\x4d\xbd\x58\x8c\x77\x49\x66\x20\x97\xed\x94\xcc\x16\x37\xb4\x05\x4d\xe1\xf8\xcd\x02\x9f\x72\x09\x95\xb1\x86\x82\x1c\x1b\x9f\xbf\x6b\x28\xe3\xfe\x3c\xee\x81\xfd\x38\x30\xa7\x83\x01\x1a\x8a\xb0\x45\x29\x86\x0c\x49\x82\x68\x12\xd2\x3b\xbf\xa8\xaa\x8f\x38\x57\x9f\xaa\x46\xba\xed\xd2\x4a\x8c\xc9\xff\x22\xfc\xae\x48\xc3\x46\xd7\xe2\xae\x2a\xc2\x67\x8e\x38\x34\x57\x8d\x06\xb5\x18\x4f\x39\xf8\x2d\x08\x81\x51\x7a\x38\x2f\x12\x1c\x45\x94\xdc\x04\x16\x71\x33\xf0\xb3\x6e\x36\xa1\xc5\xb7\x78\xce\xab\x9d\x78\x47\x09\xd5\xce\x1a\x4d\xd6\x7a\x6f\xe9\x97\x36\x9b\xaa\xf0\x4d\xf0\x12\x3e\x28\x52\x31\xa7\x5c\x4a\xe7\x2b\x6f\x3d\xc6\xa6\xba\x85\xff\x3f\x89\x93\xa6\x4a\x5d\x47\x5d\xb8\x76\x1e\x99\xa7\x9b\xf0\xdb\x65\x00\xc9\x16\x86\x5c\xab\xf0\x47\x8e\x02\xdb\x89\xaa\xfb\x21\x6b\x37\xb7\x12\xb1\x0e\x6e\xae\xca\xe0\x71\x00\x8d\x48\x1a\xe9\xe5\x32\x28\x75\x9e\x2d\x51\x57\xbb\x7c\x4e\x0a\xcf\xd3\x2c\xa1\x98\x91\x3c\xa3\x8b\xe1\xb3\x8b\xe4\xf2\x2c\x4d\xe9\x14\x0d\xae\x48\x72\x5e\x96\x75\xc9\xd5\xa4\x96\x70\x71\x93\xa7\x05\xab\xe9\x94\x12\xec\xa7\x0b\xec\x65\x0c\xe5\x3c\x8b\x1e\x0a\x14\x49\xf4\x28\x65\xd4\x13\x52\x27\xe7\x69\xad\xdd\x68\x23\x48\x45\x5d\x76\x8f\x19\xf6\x12\x67\xf0\xdc\x51\xa0\x40\x77\x8a\x79\x0a\xde\x21\x7b\xe9\xca\xd2\xb8\x41\xf3\x04\x7e\x11\x3f\x01\x4c\x7e\xfb\xdc\x62\x6e\x21\x05\x39\x3c\x2e\x26\x12\xc6\xe7\x20\xdd\x5e\x53\x38\xad\x1b\xfc\x31\x0b\xd3\x0f\xa8\xac\x1c\x4c\x96\xbb\x6a\x95\x34\x35\x87\x99\xb6\x1c\xd3\xee\x02\x12\x43\x48\x69\xf1\x1e\xf7\xa3\x7b\xb0\x50\x76\x30\x9e\xb7\xad\xe0\x30\xd6\x5c\x32\x7b\xa0\x30\x7f\x42\x26\xcc\x7c\xd6\xb2\x79\x98\x4c\x02\xa2\x4b\xac\x87\x44\x9f\x61\x6c\xe4\x10\xb2\xbf\x0a\xc7\xa8\x95\x09\x22\xa2\xf9\xf6\xa6\xe2\x01\x00\x04\x5f\xdf\xab\x51\x23\xcb\x58\xbf\x0c\xf2\x05\x0c\xa3\x26\xce\xa2\xf8\xf6\x46\xe2\x51\x6b\x36\x74\xec\x1c\x69\xe4\x01\xe3\x90\xf7\x0d\x4b\xae\xad\x75\x1e\x75\xcf\x14\xc4\xe9\x61\x94\xc7\x5a\xfd\x20\xce\x6f\xe8\xc6\x46\xfb\x7a\xb3\x4a\xcd\xb7\x62\x23\xfb\x25\x50\x6e\x38\xdd\xd9\x11\x82\x35\xa5\xae\x73\xbe\xf8\x43\x03\x8c\x0d\x6a\x80\x99\x9a\x41\x7f\xac\x6d\xbd\xc2\x17\xdf\xb2\x6d\x6b\xe7\xb6\x6c\x69\x70\xad\xe8\x76\xe6\xf1\xc2\xb9\xed\x53\xc9\xe1\x21\x15\xde\xc9\xbb\xc7\xe4\x6d\xfd\xfb\x95\xc4\x27\x8d\x3f\xe1\x73\x7f\x24\xed\x58\x3a\xb0\xb6\x30\x5a\x3f\x3c\x58\xd1\xa8\x2f\x19\x5d\xcf\xc6\xb6\xc7\xa6\x78\xf5\x55\x3d\x08\x4f\xea\xaf\x31\x89\x6f\x7e\x56\x0a\x2d\x35\x99\x8a\x21\xab\x67\x9d\x0f\x19\x6c\x2d\x6a\xd7\x93\x35\xff\x50\x1d\x0f\x4c\xc3\xe3\x6f\xa9\x36\xef\x27\xc7\x32\x3d\xde\x4d\x6d\xb4\x9f\xec\x85\x6b\x4c\xe6\xb0\xb4\xff\xd4\x8e\x98\x43\xfc\xaf\xee\x88\x3e\x6b\xd5\xb8\x4b\x39\x87\x80\x01\x31\xeb\xa1\xf3\x1a\x4f\x8a\x1b\x0a\x90\xf9\x01\xbf\x73\x8a\x3d\xf4\x3d\x70\x89\x1b\xdb\xdb\xc1\x6b\x0a\x40\x41\x69\xe2\x55\x48\x73\x33\x05\xf0\xae\xe3\x50\x0f\xec\x50\x29\x94\x79\x8b\xc9\xe2\x03\x46\x10\x49\xa5\x90\x81\x0a\x65\x64\x8b\x1a\x61\x52\x55\x23\x67\xc5\xa5\xce\x43\x46\x56\x92\xcb\xd8\xa5\x97\xec\x25\x87\x81\xdf\x73\x4a\x06\x8b\x37\x8c\xaa\xaf\x5b\x6b\xef\x86\xae\x86\xae\xa2\x7f\x17\x4a\x16\x97\x98\x2c\x6e\x21\x79\x5a\x43\x68\x55\x2c\x36\x6a\xd4\xb1\x72\xeb\x5e\x4d\xca\xbc\xec\xd5\x14\x3e\x8c\xdc\x56\xc9\x6e\x32\x6e\xaf\x95\xec\x26\xa3\x86\x90\xd3\x01\x40\xd8\xe3\xa3\x90\x97\xd2\x0d\x0a\xd2\x79\x89\x37\x4d\x7b\xac\x0e\x8d\x76\x49\x63\x78\x03\x8c\xfc\x91\x12\xcc\x50\x8d\x5b\xc5\xb7\x82\x93\x56\xd9\xe5\x5f\xd5\xca\xbb\x00\xfd\x9e\x3e\x33\xa8\xa5\xb5\xde\xf9\x5e\x76\xc0\x0b\xa3\x91\x2d\x0d\xd3\x2f\x21\x1d\x78\xe1\xd5\xdd\x64\xa4\x08\x7a\x3a\x54\x04\x7d\x7c\xac\x76\xae\x93\xa6\x76\xbe\x1f\x56\x7e\xe8\x95\x8b\x15\xbe\xbd\xe9\xa4\x11\x37\x31\x63\x52\xe3\xa4\x64\xbe\x42\xc7\x85\xe7\x6a\x5e\xc9\xd5\x56\xcd\x56\x7d\x01\x39\x0f\xd6\x3d\x29\x9b\x57\x3e\x29\x3e\xb7\x53\x7a\xbb\xd6\x2d\x10\xa5\xe5\xb0\xba\x53\xbe\xde\x4a\xb7\xad\xd1\x1c\x24\xc7\x75\x15\xc0\xc4\x2f\x08\x26\x5e\x4b\xb7\x15\xb7\xa8\x75\x9b\xc1\xba\x59\xd5\x3b\xe5\x25\x9a\x2f\x65\x58\x5e\x5d\x88\xb7\x9c\x3c\x57\x0a\xb5\x71\x35\x8b\x40\xbc\x0b\x81\x2b\xcd\x30\xbc\x47\x85\x1d\x4b\x45\xe7\x11\x64\x0e\x9b\x51\x9f\xf9\x4c\x5f\x1d\x56\x1c\x15\xf3\xb3\x87\x36\x5c\x53\x4a\x06\x8b\x72\xde\x66\x55\x07\x1a\x89\x16\x2c\xe8\x7b\xec\xd5\x05\x6e\xdf\x09\x05\x4b\xc0\x44\xb8\x5e\x5d\x88\x2b\x39\xb8\x59\xc0\x4e\xd2\x66\x3a\x0a\x19\xaa\x0f\x80\xa1\xe6\x31\x1c\x57\xea\x68\x28\x89\xac\x90\x90\x4d\x2f\xc6\x76\xd2\xc8\x8d\xaa\x3b\x49\xc6\x9a\xf8\x60\xec\x2d\xa6\x89\x2b\x48\x63\x58\xa3\xf6\xf9\xad\x4a\xba\xde\x3d\xa7\xc4\x00\x46\xa2\x05\x0a\x14\x94\x12\x98\xe1\x26\x58\x0e\x23\x89\xe6\xbc\xc2\x57\x1a\xa5\xa5\x03\xb4\xb3\x8e\xd3\x82\x0f\xcb\x18\x67\x84\xd3\xd1\xd0\xbc\x57\x1b\xed\x3c\x3f\x41\x47\x5f\x91\xf8\x96\xe8\x1a\x93\x83\x80\x93\xbf\x0e\xbb\xb5\xd8\xcb\xac\x63\xa5\x39\x63\xe8\xe6\x97\xfd\x68\x2e\x18\x47\xee\xd3\x9e\x7b\x86\xd2\x4b\xb0\xe7\x2b\x55\x0f\xc1\xae\x8f\x20\x43\xe4\xea\x4b\xf8\x9f\x97\x46\xd1\x32\xc8\x6a\x23\x0c\x97\x28\x76\x66\xa3\xdc\x49\xe7\xf6\xb6\x6f\x92\xba\x1b\x2f\x0c\x84\xf6\xfc\xa4\x05\xd5\xed\x68\xb0\x3b\x18\xb6\x2a\x0b\xad\x67\x8d\x2d\xed\xea\xdc\xa5\x28\x4f\xad\xe0\x9c\x2f\x5d\x2c\xa6\xb1\xc8\x56\x0a\x5a\xc4\x94\x6b\x64\x27\x3f\x73\x24\xe4\x14\xc1\xfd\x2d\xc7\x6a\xcf\x5e\xde\x5e\x84\xdc\x4b\xbd\xd3\x47\xcb\x06\x3d\xdf\xf7\x37\xca\x8b\x27\x3f\x62\x44\x35\xa7\xc4\xa6\xb5\x4b\x74\x9b\x46\xbe\xdf\x30\xf2\xfb\x0f\x8c\x43\xbb\x3a\x5f\x94\xa8\x21\x0c\x0d\xc6\x9f\xe5\x22\xed\x7a\xbb\xd5\x4b\xed\x69\x42\x66\x0a\x04\x80\x10\x06\x69\x13\xd7\x32\xd4\xc4\x4b\xbc\x28\x84\x0e\x41\x20\x83\x56\xa8\xed\x33\xfb\x81\xb0\xe6\xf1\xa6\xbe\x06\x19\x83\x4d\xca\x27\x18\xb2\x32\x59\x04\x29\x60\xfb\xc8\xa9\x55\x8e\x67\x14\x26\xfd\x4b\xb8\x8e\x46\x34\x9f\x5d\x32\x49\xc7\x1f\x56\x0c\x91\xfe\xb0\x38\x1f\xbc\x42\x2e\xd7\x06\xfa\xee\xae\xed\xde\x24\xcd\x63\xd6\x52\xf2\xec\x0d\xed\x4d\xcf\xb2\x2d\x70\xa6\xc0\xf3\x62\x88\x1c\x90\xb2\xf2\x47\xf6\xd1\x2f\x46\x8a\xe9\x62\xfb\xf8\x82\x1b\x2f\x6d\x82\x5e\x32\x6f\xc0\x56\x3a\xb6\xbe\x39\x52\x7f\xba\x27\x45\x9f\x5a\x79\xf5\xb9\x82\xac\x6c\x00\xdd\xe5\xd9\x3e\xb7\xca\x2a\x15\x9c\x45\x53\x66\x0c\xaf\xce\xb3\x29\x7b\xc8\xaa\xd8\xf6\xfc\xf2\x78\x44\xdd\x8b\x0b\xee\x82\xca\x63\x89\x9c\x7a\x63\x42\x69\x20\x84\x49\xe9\xf2\x27\xdc\xfb\x90\x1a\x16\x09\xf7\xb8\xbe\x6c\x3b\x17\xb5\x51\x89\xf2\x5a\x96\xd2\xf2\x26\x50\xca\xf4\x7a\x98\xd2\x59\x81\x18\x62\xbd\x2b\x56\x07\x2f\x50\x8b\xc8\x41\xde\x43\xda\x38\x7e\x38\x6a\x87\x99\xce\x8e\x9a\x3c\xa2\xb4\x45\xb3\xa9\x14\xf9\xe1\x0e\x8f\xf4\x99\x98\x73\x56\xd6\x7a\x4a\xc9\x03\x75\x51\x8a\x42\xef\x44\x4d\xf4\x53\xd4\x70\xfa\xd4\x9c\x2b\x6b\x24\xa3\x19\x35\x2e\xc3\x8a\x50\xf3\x87\x45\xd6\x1a\xa7\x56\x43\xaf\xfd\x01\x5d\x37\xda\x95\x6d\xe9\x81\x1a\xa6\xa1\xa7\x45\x48\x63\xd8\xf1\xfb\x0e\x4a\xc5\xc7\xd4\x67\xe2\xb5\x75\x9e\x53\x3a\x0a\xd5\x75\x65\xfb\x90\x82\x0a\xbc\x06\x2d\xad\xb5\x69\xc4\x8b\x77\x79\x7a\x38\xa9\x42\xee\x15\x7f\xcf\xc1\x64\x86\x59\xb2\x37\xda\x6c\x7e\x62\xdf\xf9\x01\x07\x7a\xfb\xb7\x3d\x59\x48\x77\x2d\xb4\xd7\xab\xcf\x1e\x2f\xdf\x8c\xf5\x1c\x47\x6f\xab\x37\x5b\xb4\x3a\xd0\xad\xda\x90\xf1\x3f\xec\xa2\x45\x18\x78\x60\x83\x38\x24\x08\xb2\x3f\x7c\xd5\xf2\x8b\x74\x2a\x07\xc1\x1e\x21\x40\xec\x91\xf4\xe4\x42\x4a\xcd\x3d\xe8\x13\x31\xf7\x28\xf4\x38\xc4\x21\x12\x88\x78\x60\x43\xeb\x9d\xde\x98\x27\x1a\x5d\x6b\xef\x38\x58\x35\xbd\x4e\x2d\x5c\x65\x2d\x26\x35\x04\x5b\x2b\xf4\x91\xfc\x85\xd6\xb8\x21\x34\xfd\x66\xf8\x52\xcb\x77\x52\xa3\xc7\x35\xfc\x7f\x14\xcc\x61\x6c\x7a\x0e\x20\xaa\xfc\x6a\x9b\x40\xf1\x05\x30\xaf\x0b\x7a\xb6\xf2\x39\xac\x1b\xf2\xd7\x1c\x06\x99\xfc\x35\x07\xcc\x78\xbd\x17\x01\xe8\xd2\xbf\x80\xd8\xc1\x59\x5b\x3b\x09\x84\xc9\x89\xf3\x46\xdc\x9c\x87\x45\xbf\xf3\x5d\xcd\x3a\xe8\x9b\xb7\xb7\x57\x0f\xec\x22\x00\xe5\x15\x8e\x90\xd9\x32\x87\x2c\x5e\xea\x98\x95\xad\xf7\xe0\xda\x81\x76\x0c\x2b\x67\xd0\x2c\x8f\xb6\x8e\x9b\x87\x7b\x88\x57\x83\xc5\xdb\x2b\xe7\x7b\xbd\xa2\xe0\x92\x5c\x66\x21\xde\x0e\xad\xd7\x5d\xab\x42\x4a\xb0\x34\x5c\x2a\xe1\x54\x27\xfb\x10\x86\x6f\x65\x77\x3b\x29\x1e\x9f\x3e\x5e\x14\x74\xa7\xf6\x18\xf2\x94\x5d\xa4\xdd\x5e\xde\x88\x5f\xcd\xaa\x3f\x90\x41\x02\xf7\xf4\x4e\x77\x00\x56\xdf\xab\x9e\x19\xea\x3b\xdd\x21\xec\x9f\x30\x25\x6c\x7c\xb9\xab\x9d\xea\xef\xf5\x2a\x2e\xb7\xab\xf3\xb7\xa8\x2c\xd2\x2b\x95\x93\x1d\xae\x1a\xa3\x53\x04\x76\x3d\x35\xe2\x7c\xf0\xb6\x60\xd7\x03\xe9\xd4\x1d\x9e\x3d\xba\x0b\x03\x98\xbb\xaa\x1f\xf3\xd4\x64\x5d\x10\x46\x7a\xc2\xdf\x95\xd0\x05\x9b\x17\xa9\xfa\x58\x0e\x28\xcb\x7c\xe9\x69\xd3\xa2\xa0\xe3\xf9\xa1\x5d\xe2\xf9\x4a\x33\xbd\x1c\x59\xc6\x60\x3d\xd4\xeb\x59\x4f\x4c\x65\x89\x02\xb2\xa6\xa3\x85\xed\x25\x46\xa8\xa3\xe5\xc4\xb4\x44\x7e\xb5\x3e\x1d\xd8\x19\xf3\xb7\x07\x4c\xde\x78\xc9\x21\xd7\xa5\xe3\xcb\xb6\x23\xa8\x89\xff\x42\x98\xe5\x81\x6c\x2e\xf8\x7e\x92\x2f\x9b\x13\x8b\x97\x9c\xcd\x29\xc7\x50\xb9\x4f\x35\xe2\xe5\xf1\x54\x65\x9e\x2b\xeb\xe6\x88\xe7\x2a\x9b\xf1\x05\xd6\x8b\xd0\x90\xec\xc6\x2f\x57\x82\xb5\xfb\x65\x76\x57\x38\x17\xf8\x7a\x51\xf1\x9d\x74\xd0\xbf\xc6\x1b\x6a\xd6\xbf\x96\x17\xd5\x0c\x2b\xbb\x2e\x9e\xfb\x5d\xd7\x16\x87\x7e\x06\x72\x4f\x74\x33\x83\xf8\x13\x7b\xc6\xcb\x80\xe8\xb5\x79\x0e\xf4\xe1\xfa\x32\x00\x8c\xf9\x01\x4e\xb6\xeb\x75\xab\x8d\xaa\x77\xf4\x3e\xe7\x3d\x7d\x8a\xb7\xb6\x89\xf5\xb3\x0f\x85\xba\xb7\x03\x29\x58\x37\x99\x7f\xe6\x6b\x4c\x84\xc1\x09\xe0\xfd\x80\xeb\xa0\xa7\x5b\x45\x92\xd5\xb3\x2c\xae\x08\xb2\xf2\x4a\x40\x52\x62\x67\x7f\xfc\x9c\x79\xd4\x41\xe4\x4f\x7b\x6b\x7d\x8d\xb1\xee\x0b\xe6\xf4\xda\x5a\x2f\xae\xa4\xdf\xc6\x19\xf0\xd2\xeb\x15\x3e\xdc\x2a\xca\xe0\x15\xfd\x8a\xde\x82\x4d\x0a\xb5\x76\x33\x2d\x71\x69\x37\x47\xc0\xc9\x10\x2c\xb0\x76\x37\xf8\x45\x87\x51\x6c\x31\x7a\x5b\xa4\x4d\x17\x46\x84\xd2\xc6\xab\x12\x07\x29\x22\x76\xdb\x6c\xed\xdc\xbc\x9e\x5f\x38\x00\x35\xe5\x45\xb3\x4c\x8c\x33\x5f\xb3\x7b\xd7\x9a\xd6\x24\xf3\xd5\x5e\xfc\xc2\x5e\x5f\x69\x69\xe6\xc5\x8e\xac\x13\xc8\xca\x59\xc5\x2c\xb9\x45\x63\x93\x90\x7b\x89\x5f\x13\xa0\x62\xe6\x26\x43\xe9\xb6\xf8\x16\x13\xdd\xbe\x30\xd0\x7f\xa8\x03\xb9\x7b\x99\x01\xdc\x40\x75\x11\x6c\xa3\x8c\xf8\xfe\xb1\x73\xdb\x27\x94\xf5\xf8\x87\x49\x19\x90\xd5\x77\xc3\x8e\x1e\xbf\xea\xdf\x15\x05\xa2\x42\x27\xcc\x98\x81\xb5\xdd\xe8\xdf\x95\xb8\x80\x8c\x87\x8a\xba\x99\x52\x2e\xce\x5d\xb3\x4c\x53\xf7\x22\x98\x64\xcc\xce\x5f\xb3\x2c\xa2\x00\xa7\xd4\x9c\x45\x4f\xa9\xb9\x68\x92\x52\x79\x55\xe5\x7b\xac\x59\xd6\xce\xb5\x61\x9b\xdd\xdc\x5c\x96\x7b\x39\xe5\x26\xfe\xe5\x7b\x60\x46\x1f\x75\xd6\xf9\x4d\xaf\xdc\x23\x61\x4d\x7b\xf8\x21\x2b\xc1\x43\x9d\x0f\x2a\xa7\x8e\x71\xb8\xbf\xb5\xda\xab\x3f\x3e\xc2\x8b\xb9\x47\x5e\x37\xcb\x47\x3f\x14\x64\x51\xe3\x53\xc0\x8c\x2e\xea\xd5\x91\xf1\x89\x7a\x41\x05\xbc\x6a\xe6\x1d\x34\x78\x70\x27\x1e\x96\x0d\xc4\xcb\xa1\x0d\x04\x2b\xf1\x2a\x91\x5c\xe5\x7c\x4a\x68\xd7\xd6\xee\x19\x96\x6d\x22\x62\x78\x0d\x7c\x47\x7b\x1d\xd0\xfc\x82\xc9\xa9\x81\xe4\x0c\x3e\x04\x0c\xe5\x07\x76\xa1\x79\x18\x23\xf4\x8d\xa1\x77\xb3\x5c\x04\x7b\x12\xf5\x9c\x6f\xa1\xfd\xb9\x6a\x73\xdc\xfe\xc9\x6a\x0d\xbd\x78\x78\xd5\x32\xbb\xb6\x92\x9d\x5f\x6d\x65\x62\xd4\x2e\x28\x21\x9e\x18\xe4\xf7\x61\x05\x4b\xa1\x65\x3b\x05\xf2\x0d\x81\xcf\x33\xc5\x25\x1a\x26\xc4\xce\x3a\xe5\x93\x60\x57\x14\xba\x86\xbc\x28\x08\xe6\x85\x43\xe9\xe0\xf5\x26\xce\x7c\xf0\xc9\x30\x3b\xf3\xe8\xbc\xa9\x6e\x95\xd9\xe0\xb2\xfb\x4f\xf8\x14\x97\xf8\x19\x47\x88\x9c\x2d\xa0\x6a\xdc\x0e\xac\x93\x82\x14\xd4\x90\xdb\x21\x91\x9e\x2f\x32\xc3\xf9\xdc\xe4\x87\xf6\x5b\xfc\x9e\x6f\x21\xc3\x1e\x25\xbf\x9c\x1f\xe6\x71\xab\x5a\x9b\xcd\xde\xeb\x5f\x2f\xdf\x8f\x20\x67\x76\x37\xe7\xcc\x50\x03\xce\x99\xd9\xfb\xa8\x50\x47\x22\xca\x72\x1e\xaa\xd2\x91\x8a\xe2\x6e\x09\x70\x11\xa4\x5e\xd3\x5b\x59\x0a\x04\x4f\x31\x45\x4d\x43\xae\xba\x70\xdf\x41\x52\x0c\x00\x3f\x29\xed\x38\x88\x72\x02\x4f\x21\x9a\xd8\x29\x13\x14\x4e\x9c\x11\x99\x05\xc5\x31\x46\x53\xa0\xf9\x21\x26\xc8\xe9\x08\x87\x7c\xba\x05\x4b\x46\x80\x78\xef\x35\x8b\x89\x20\x65\x23\x3b\x22\x05\x04\x7a\x4e\xdf\x25\x10\x5e\x15\xdf\xcb\x36\x42\xbd\xe1\x84\x49\xad\x26\xaf\xd3\x70\x80\x8d\x34\x0d\x64\xc3\x9a\x11\x3a\x7a\x5b\x36\x7f\x90\x33\x74\xd7\xdb\x7b\x1d\x8c\x45\x09\xfe\x8a\x93\x02\x68\x00\x49\x98\x03\x04\xa3\x8e\xed\xb4\xf6\x4e\x47\xb1\xee\x02\xbf\x8a\xd5\xc5\x34\x02\x36\x35\xc1\x26\x32\x71\xa3\x3c\x97\x88\xbc\xd9\x2a\x8e\x4c\xb8\x01\x7b\x75\x11\xc7\x86\x2e\xcb\x46\x9d\x69\xf5\x5a\xc5\xab\x35\xee\xcd\xa5\x5e\xab\x02\x78\xeb\x7d\xe7\x82\x9b\xa2\xd7\xb7\xb7\x57\x37\xe2\xbd\x69\x0f\xa3\x4e\xe4\xa8\xb8\x27\x09\x53\x1c\x19\x8d\xf7\x9d\xd9\xc0\x50\xc2\xfc\x90\x07\x68\x3e\x91\x32\x70\x3e\x92\xc6\x94\x78\xd3\xf3\x23\xad\xb4\x8b\x5f\x71\xd2\x68\x44\xd7\xaa\xc1\x97\xea\x4d\x1d\x4b\xf0\xb8\xbe\x0c\x39\xe2\x1c\x73\x12\x79\x04\xde\x37\x36\x1c\x58\xdf\xd9\x46\x03\x54\x68\x0f\x3a\x7b\xd8\xea\xcd\x16\xbd\xf6\x67\xad\x22\x9f\x0f\x07\xe3\xe5\x67\xf1\x3a\xe4\xe7\x18\x76\xf2\x33\x95\x06\x36\xdf\xd1\xd5\x0d\x95\xba\xc4\x04\x3c\xc7\xa5\x70\xda\x6c\x5a\x72\x76\xf0\xc3\xd1\xe2\xf5\x6a\x2b\x7b\xb9\xe2\x88\x21\x11\xd1\x45\x4a\x2d\xb1\x41\x99\x79\x6c\xc1\xc3\x42\xc4\x41\xf1\x54\xbf\x27\x31\x14\x7d\x2c\x14\x05\x37\xab\x5a\xf6\x1b\xbe\x14\x3d\xef\x37\x03\x85\x99\xcf\x51\xeb\x4d\x1f\x0c\x3a\xe8\x84\x78\xab\x83\xeb\x9c\xd1\x19\x41\xe0\x18\xa6\x23\x87\x46\xaf\xe6\x2c\xb7\xcf\x94\x40\xfb\xfa\xac\xc0\x05\xda\xdb\x27\xa3\xcc\x99\x22\xe8\x62\x2a\x95\x40\xef\x52\x0f\x16\xe0\xcb\x5f\x02\x7f\x75\x31\x03\x9c\xcb\x2e\x71\x09\x81\xcc\x32\xbb\x84\x00\x8a\x19\x43\x80\x41\xc6\x30\x18\x46\x2f\x56\x3d\x39\x87\x85\x7f\xb7\xd2\xdd\x45\x93\xe9\x42\x2d\x1e\xd2\xdc\x6a\xab\x9a\x81\x3c\x49\xf0\xcf\x04\xaf\x3e\xfb\x70\xf7\x8e\xbb\x34\x64\xa0\x1b\x02\x3b\xb8\xe0\x87\x00\x7e\x16\x00\xea\xb3\x5a\x0d\x99\x19\xce\xaf\xf4\xcd\xf7\xde\x09\x8d\x0d\x8f\xa7\x06\x63\xb4\xd9\x00\x19\x24\xbb\xe2\x08\x33\x17\x18\x32\x34\x1d\x25\xa0\x20\x09\x1d\xad\x3f\x56\x1f\xc6\xbb\x0a\xc6\xe5\xc1\x64\x9b\xe3\xab\xb5\xa4\x1f\x18\xd9\x9b\x07\x58\x74\x52\xd2\xa0\x53\x8a\x3a\x3a\xa9\x40\x6f\x25\x04\xc9\x0e\x2b\x22\x3c\x1b\x4d\x33\x33\x66\x4d\xc2\xe4\x54\xab\x56\xf8\x66\x18\x89\x2a\x7c\x88\xf3\x36\x95\x6c\x54\x01\xf1\x82\x3f\x0b\x18\x6d\x48\x26\xa5\x2c\x12\xb6\xdf\x50\x1a\xa3\xcc\x8c\xe8\x83\xd6\x88\x80\xd9\xf1\x10\x6a\x68\x6e\x38\x65\x0c\x19\x6a\x46\xa0\xf3\xb6\x9d\x8c\x46\x2e\xf2\xe4\x69\xe8\xed\x3a\x7b\xe9\x90\xf5\x69\x3c\x8d\x21\xcb\x76\x68\x04\xbd\x98\xb4\x36\xaa\x7e\x78\x46\xc2\x93\x80\x2f\x59\x96\x56\x1f\x69\xec\x3f\x85\x07\xf1\x7c\x87\x19\x4c\x07\x32\x73\xbd\xc2\x3f\xd7\x89\x7b\xf6\x54\x3e\xaf\x7a\x65\xb2\x50\x12\xf4\x55\x14\x2a\xa2\x55\xff\x98\xa2\x52\x7b\x9b\xc7\xe9\xfe\xc3\x27\x40\x49\x51\xab\xe5\xf3\x8a\x83\x0b\x32\xd6\x14\x14\x6a\x14\xd9\xdb\xf5\xab\xa7\xe3\xb2\x42\xfa\x11\x18\x64\xfe\x8f\x80\x98\xfa\x48\xf1\x38\xce\xc4\x6f\xe4\xcc\x8e\xe3\x73\x64\xfd\x7b\x4a\x97\x6f\x4f\xa9\xa7\xff\xc6\x71\xb6\xe5\xf3\xdf\x2a\x8a\x49\x1b\x11\x70\x04\xda\x6f\x40\xc0\x01\xb2\x23\x86\xe0\x51\xef\x9b\x1a\x41\xdd\x18\xc7\x4c\x0f\x73\x56\x84\xf9\xca\x11\x72\x28\xf4\x23\x9d\x9a\xa0\xa3\xbe\x7d\x33\x36\xee\xe1\x18\x5d\xec\xe8\xb7\x37\x8f\x5e\x46\x64\xa3\x4e\x09\xaa\x11\xa8\x63\xfd\xea\x71\x9b\x8d\x0b\xfd\x1b\x47\x12\xfb\xe6\x66\x45\x27\xec\xbc\x4e\xc3\xf7\x68\xd7\xd0\xda\x9f\x5f\xf8\x69\x23\xa1\x5f\x43\x2f\x37\xd9\x7a\x97\x9b\xa2\x19\xb8\xda\xdd\xa3\xe7\xb1\x05\xd3\x1d\x31\xda\x43\x9d\x44\xe6\x30\xc4\x76\x46\xfa\x4b\xc9\xda\x71\xe4\x5b\x52\x35\x9f\xc4\xe8\xf2\x55\xf5\xd1\x5b\xdb\x7e\xaa\xe4\x06\xba\x24\x37\xb6\x82\x1d\xcc\x8f\x7f\x71\x33\x1b\xbb\xaf\xe8\x13\x7e\xfd\x08\x98\x7f\x64\x27\xc3\xe2\xc4\x55\x3f\xee\x30\x81\x42\x75\x61\xc2\x16\x13\xb6\x76\xc0\xc0\x0e\x3f\x36\xf8\xd9\xc8\x03\x7e\xed\xf1\x6b\xaf\xd4\x1d\x15\x46\xe2\xfc\xa3\xd8\x59\xe3\xb7\x98\x72\xc0\xef\x83\x92\x1c\x16\x82\x9c\x19\x63\x40\xe8\xf0\x81\x61\x9f\x0d\xde\xd3\x61\x7a\xf8\x38\x71\x15\xd4\xca\xa9\xf4\xf3\xc4\x55\x8d\x3c\x70\x12\xfe\x3a\x71\x15\x54\xcf\x49\xf4\xf3\x04\xcf\x54\xbf\x0d\x08\xe9\xf7\x89\xab\xa0\x1d\x9c\x48\x3f\x4f\x5c\xd5\xcb\x7d\x9d\xda\xc5\xbf\x30\x35\xb5\x8a\x7f\x55\xd5\xc7\xa6\xb7\xdd\xef\xd6\xa8\x4f\x55\x88\xfe\x98\x82\xb4\xbe\xe8\x6d\x17\xec\x9f\x55\x4f\x77\x02\x18\xb9\xc9\x5b\x31\x74\xad\x95\xcd\xa2\x0a\xb1\x99\xb5\xe9\x86\xa8\x88\x4d\x51\xca\x09\x2c\xb9\x32\xa6\x17\xa0\x87\x4e\x2d\x2a\x54\xf3\x7a\x6b\xeb\x25\x32\x4c\xa8\xe0\x75\xfa\x77\x25\xbe\xff\xfb\xdf\x11\x5e\xff\xae\xfe\xf1\x0f\xf1\xf6\x97\x1f\x84\xfa\xbc\x52\xaa\x71\x62\xc7\x26\x4e\x01\x6c\x27\x3f\xbf\x2c\x20\x17\x15\x3f\xcc\x63\x9b\x1a\x7a\x98\x87\xd5\x57\xff\x2b\x00\x00\xff\xff\x2b\x4c\xd7\xaf\x79\xe3\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4386,7 +4386,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 56929, mode: os.FileMode(420), modTime: time.Unix(1487210146, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 58233, mode: os.FileMode(420), modTime: time.Unix(1487353991, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/context/repo.go b/modules/context/repo.go index 924898aa8..97fd3e36f 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -73,7 +73,7 @@ func (r *Repository) HasAccess() bool { // CanEnableEditor returns true if repository is editable and user has proper access level. func (r *Repository) CanEnableEditor() bool { - return r.Repository.CanEnableEditor() && r.IsViewBranch && r.IsWriter() + return r.Repository.CanEnableEditor() && r.IsViewBranch && r.IsWriter() && !r.Repository.IsBranchRequirePullRequest(r.BranchName) } // GetEditorconfig returns the .editorconfig definition if found in the diff --git a/public/css/gogs.css b/public/css/gogs.css index 3b90c8cdf..64baf1042 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1225,7 +1225,6 @@ footer .ui.language .menu { } .repository.file.list #file-buttons { font-weight: normal; - margin-top: -3px; } .repository.file.list #file-buttons .ui.button { padding: 8px 10px; @@ -2274,6 +2273,24 @@ footer .ui.language .menu { margin-left: 5px; margin-top: -3px; } +.repository.settings.branches .protected-branches .selection.dropdown { + width: 300px; +} +.repository.settings.branches .protected-branches .item { + border: 1px solid #eaeaea; + padding: 10px 15px; +} +.repository.settings.branches .protected-branches .item:not(:last-child) { + border-bottom: 0; +} +.repository.settings.branches .branch-protection .help { + margin-left: 26px; + padding-top: 0; +} +.repository.settings.branches .branch-protection .fields { + margin-left: 20px; + display: block; +} .repository.settings.webhook .events .column { padding-bottom: 0; } diff --git a/public/js/gogs.js b/public/js/gogs.js index 45b11fe7c..58fed2cce 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -341,6 +341,18 @@ function initRepository() { }); } + // Branches + if ($('.repository.settings.branches').length > 0) { + initFilterSearchDropdown('.protected-branches .dropdown'); + $('.enable-protection').change(function () { + if (this.checked) { + $($(this).data('target')).removeClass('disabled'); + } else { + $($(this).data('target')).addClass('disabled'); + } + }); + } + // Labels if ($('.repository.labels').length > 0) { // Create label diff --git a/public/less/_repository.less b/public/less/_repository.less index 066c58fde..9501d99c0 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -161,7 +161,7 @@ } #file-buttons { font-weight: normal; - margin-top: -3px; + .ui.button { padding: 8px 10px; font-weight: normal; @@ -1303,6 +1303,32 @@ } } + &.branches { + .protected-branches { + .selection.dropdown { + width: 300px; + } + .item { + border: 1px solid #eaeaea; + padding: 10px 15px; + + &:not(:last-child) { + border-bottom: 0; + } + } + } + .branch-protection { + .help { + margin-left: 26px; + padding-top: 0; + } + .fields { + margin-left: 20px; + display: block; + } + } + } + &.webhook { .events { .column { diff --git a/routers/repo/http.go b/routers/repo/http.go index c3cec9e3b..51e393d08 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -28,18 +28,20 @@ import ( ) const ( - ENV_AUTH_USER_ID = "AUTH_USER_ID" - ENV_AUTH_USER_NAME = "AUTH_USER_NAME" - ENV_REPO_OWNER_NAME = "REPO_OWNER_NAME" - ENV_REPO_OWNER_SALT_MD5 = "REPO_OWNER_SALT_MD5" - ENV_REPO_NAME = "REPO_NAME" - ENV_REPO_CUSTOM_HOOKS_PATH = "REPO_CUSTOM_HOOKS_PATH" + ENV_AUTH_USER_ID = "GOGS_AUTH_USER_ID" + ENV_AUTH_USER_NAME = "GOGS_AUTH_USER_NAME" + ENV_REPO_OWNER_NAME = "GOGS_REPO_OWNER_NAME" + ENV_REPO_OWNER_SALT_MD5 = "GOGS_REPO_OWNER_SALT_MD5" + ENV_REPO_ID = "GOGS_REPO_ID" + ENV_REPO_NAME = "GOGS_REPO_NAME" + ENV_REPO_CUSTOM_HOOKS_PATH = "GOGS_REPO_CUSTOM_HOOKS_PATH" ) type HTTPContext struct { *context.Context OwnerName string OwnerSalt string + RepoID int64 RepoName string AuthUser *models.User } @@ -143,6 +145,7 @@ func HTTPContexter() macaron.Handler { Context: ctx, OwnerName: ownerName, OwnerSalt: owner.Salt, + RepoID: repo.ID, RepoName: repoName, AuthUser: authUser, }) @@ -158,6 +161,7 @@ type serviceHandler struct { authUser *models.User ownerName string ownerSalt string + repoID int64 repoName string } @@ -189,15 +193,25 @@ func (h *serviceHandler) sendFile(contentType string) { http.ServeFile(h.w, h.r, reqFile) } -func ComposeHookEnvs(repoPath, ownerName, ownerSalt, repoName string, authUser *models.User) []string { +type ComposeHookEnvsOptions struct { + AuthUser *models.User + OwnerName string + OwnerSalt string + RepoID int64 + RepoName string + RepoPath string +} + +func ComposeHookEnvs(opts ComposeHookEnvsOptions) []string { envs := []string{ "SSH_ORIGINAL_COMMAND=1", - ENV_AUTH_USER_ID + "=" + com.ToStr(authUser.ID), - ENV_AUTH_USER_NAME + "=" + authUser.Name, - ENV_REPO_OWNER_NAME + "=" + ownerName, - ENV_REPO_OWNER_SALT_MD5 + "=" + base.EncodeMD5(ownerSalt), - ENV_REPO_NAME + "=" + repoName, - ENV_REPO_CUSTOM_HOOKS_PATH + "=" + path.Join(repoPath, "custom_hooks"), + ENV_AUTH_USER_ID + "=" + com.ToStr(opts.AuthUser.ID), + ENV_AUTH_USER_NAME + "=" + opts.AuthUser.Name, + ENV_REPO_OWNER_NAME + "=" + opts.OwnerName, + ENV_REPO_OWNER_SALT_MD5 + "=" + base.EncodeMD5(opts.OwnerSalt), + ENV_REPO_ID + "=" + com.ToStr(opts.RepoID), + ENV_REPO_NAME + "=" + opts.RepoName, + ENV_REPO_CUSTOM_HOOKS_PATH + "=" + path.Join(opts.RepoPath, "custom_hooks"), } return envs } @@ -229,7 +243,14 @@ func serviceRPC(h serviceHandler, service string) { var stderr bytes.Buffer cmd := exec.Command("git", service, "--stateless-rpc", h.dir) if service == "receive-pack" { - cmd.Env = append(os.Environ(), ComposeHookEnvs(h.dir, h.ownerName, h.ownerSalt, h.repoName, h.authUser)...) + cmd.Env = append(os.Environ(), ComposeHookEnvs(ComposeHookEnvsOptions{ + AuthUser: h.authUser, + OwnerName: h.ownerName, + OwnerSalt: h.ownerSalt, + RepoID: h.repoID, + RepoName: h.repoName, + RepoPath: h.dir, + })...) } cmd.Dir = h.dir cmd.Stdout = h.w @@ -392,6 +413,7 @@ func HTTP(ctx *HTTPContext) { authUser: ctx.AuthUser, ownerName: ctx.OwnerName, ownerSalt: ctx.OwnerSalt, + repoID: ctx.RepoID, repoName: ctx.RepoName, }) return diff --git a/routers/repo/pull.go b/routers/repo/pull.go index db8d70dbf..faf3b7899 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -711,6 +711,22 @@ func CompareAndPullRequestPost(ctx *context.Context, form auth.CreateIssueForm) ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(pullIssue.Index)) } +func parseOwnerAndRepo(ctx *context.Context) (*models.User, *models.Repository) { + owner, err := models.GetUserByName(ctx.Params(":username")) + if err != nil { + ctx.NotFoundOrServerError("GetUserByName", models.IsErrUserNotExist, err) + return nil, nil + } + + repo, err := models.GetRepositoryByName(owner.ID, ctx.Params(":reponame")) + if err != nil { + ctx.NotFoundOrServerError("GetRepositoryByName", models.IsErrRepoNotExist, err) + return nil, nil + } + + return owner, repo +} + func TriggerTask(ctx *context.Context) { pusherID := ctx.QueryInt64("pusher") branch := ctx.Query("branch") diff --git a/routers/repo/setting.go b/routers/repo/setting.go index 8b8a25d5f..1f3a18cf0 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -5,6 +5,7 @@ package repo import ( + "fmt" "strings" "time" @@ -21,11 +22,13 @@ import ( ) const ( - SETTINGS_OPTIONS base.TplName = "repo/settings/options" - COLLABORATION base.TplName = "repo/settings/collaboration" - GITHOOKS base.TplName = "repo/settings/githooks" - GITHOOK_EDIT base.TplName = "repo/settings/githook_edit" - DEPLOY_KEYS base.TplName = "repo/settings/deploy_keys" + SETTINGS_OPTIONS base.TplName = "repo/settings/options" + SETTINGS_COLLABORATION base.TplName = "repo/settings/collaboration" + SETTINGS_BRANCHES base.TplName = "repo/settings/branches" + SETTINGS_PROTECTED_BRANCH base.TplName = "repo/settings/protected_branch" + SETTINGS_GITHOOKS base.TplName = "repo/settings/githooks" + SETTINGS_GITHOOK_EDIT base.TplName = "repo/settings/githook_edit" + SETTINGS_DEPLOY_KEYS base.TplName = "repo/settings/deploy_keys" ) func Settings(ctx *context.Context) { @@ -74,16 +77,6 @@ func SettingsPost(ctx *context.Context, form auth.RepoSettingForm) { repo.Name = newRepoName repo.LowerName = strings.ToLower(newRepoName) - if ctx.Repo.GitRepo.IsBranchExist(form.Branch) && - repo.DefaultBranch != form.Branch { - repo.DefaultBranch = form.Branch - if err := ctx.Repo.GitRepo.SetDefaultBranch(form.Branch); err != nil { - if !git.IsErrUnsupportedVersion(err) { - ctx.Handle(500, "SetDefaultBranch", err) - return - } - } - } repo.Description = form.Description repo.Website = form.Website @@ -295,7 +288,7 @@ func SettingsPost(ctx *context.Context, form auth.RepoSettingForm) { } } -func Collaboration(ctx *context.Context) { +func SettingsCollaboration(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings") ctx.Data["PageIsSettingsCollaboration"] = true @@ -306,10 +299,10 @@ func Collaboration(ctx *context.Context) { } ctx.Data["Collaborators"] = users - ctx.HTML(200, COLLABORATION) + ctx.HTML(200, SETTINGS_COLLABORATION) } -func CollaborationPost(ctx *context.Context) { +func SettingsCollaborationPost(ctx *context.Context) { name := strings.ToLower(ctx.Query("collaborator")) if len(name) == 0 || ctx.Repo.Owner.LowerName == name { ctx.Redirect(setting.AppSubUrl + ctx.Req.URL.Path) @@ -374,31 +367,102 @@ func DeleteCollaboration(ctx *context.Context) { }) } -func parseOwnerAndRepo(ctx *context.Context) (*models.User, *models.Repository) { - owner, err := models.GetUserByName(ctx.Params(":username")) +func SettingsBranches(ctx *context.Context) { + ctx.Data["Title"] = ctx.Tr("repo.settings.branches") + ctx.Data["PageIsSettingsBranches"] = true + + protectBranches, err := models.GetProtectBranchesByRepoID(ctx.Repo.Repository.ID) if err != nil { - if models.IsErrUserNotExist(err) { - ctx.Handle(404, "GetUserByName", nil) - } else { - ctx.Handle(500, "GetUserByName", err) + ctx.Handle(500, "GetProtectBranchesByRepoID", err) + return + } + ctx.Data["ProtectBranches"] = protectBranches + + ctx.HTML(200, SETTINGS_BRANCHES) +} + +func UpdateDefaultBranch(ctx *context.Context) { + branch := ctx.Query("branch") + if ctx.Repo.GitRepo.IsBranchExist(branch) && + ctx.Repo.Repository.DefaultBranch != branch { + ctx.Repo.Repository.DefaultBranch = branch + if err := ctx.Repo.GitRepo.SetDefaultBranch(branch); err != nil { + if !git.IsErrUnsupportedVersion(err) { + ctx.Handle(500, "SetDefaultBranch", err) + return + } + } + } + + if err := models.UpdateRepository(ctx.Repo.Repository, false); err != nil { + ctx.Handle(500, "UpdateRepository", err) + return + } + + ctx.Flash.Success(ctx.Tr("repo.settings.update_default_branch_success")) + ctx.Redirect(ctx.Repo.RepoLink + "/settings/branches") +} + +func SettingsProtectedBranch(ctx *context.Context) { + branch := ctx.Params("*") + if !ctx.Repo.GitRepo.IsBranchExist(branch) { + ctx.NotFound() + return + } + + ctx.Data["Title"] = ctx.Tr("repo.settings.protected_branches") + " - " + branch + ctx.Data["PageIsSettingsBranches"] = true + ctx.Data["IsOrgRepo"] = ctx.Repo.Owner.IsOrganization() + + protectBranch, err := models.GetProtectBranchOfRepoByName(ctx.Repo.Repository.ID, branch) + if err != nil { + if !models.IsErrBranchNotExist(err) { + ctx.Handle(500, "GetProtectBranchOfRepoByName", err) + return + } + + // No options found, create defaults. + protectBranch = &models.ProtectBranch{ + Name: branch, } - return nil, nil } - repo, err := models.GetRepositoryByName(owner.ID, ctx.Params(":reponame")) + ctx.Data["Branch"] = protectBranch + ctx.HTML(200, SETTINGS_PROTECTED_BRANCH) +} + +func SettingsProtectedBranchPost(ctx *context.Context, form auth.ProtectBranchForm) { + branch := ctx.Params("*") + if !ctx.Repo.GitRepo.IsBranchExist(branch) { + ctx.NotFound() + return + } + + protectBranch, err := models.GetProtectBranchOfRepoByName(ctx.Repo.Repository.ID, branch) if err != nil { - if models.IsErrRepoNotExist(err) { - ctx.Handle(404, "GetRepositoryByName", nil) - } else { - ctx.Handle(500, "GetRepositoryByName", err) + if !models.IsErrBranchNotExist(err) { + ctx.Handle(500, "GetProtectBranchOfRepoByName", err) + return } - return nil, nil + + // No options found, create defaults. + protectBranch = &models.ProtectBranch{ + RepoID: ctx.Repo.Repository.ID, + Name: branch, + } + } + + protectBranch.Protected = form.Protected + protectBranch.RequirePullRequest = form.RequirePullRequest + if err = models.UpdateProtectBranch(protectBranch); err != nil { + ctx.Handle(500, "UpdateProtectBranch", err) + return } - return owner, repo + ctx.Redirect(fmt.Sprintf("%s/settings/branches/%s", ctx.Repo.RepoLink, branch)) } -func GitHooks(ctx *context.Context) { +func SettingsGitHooks(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings.githooks") ctx.Data["PageIsSettingsGitHooks"] = true @@ -409,10 +473,10 @@ func GitHooks(ctx *context.Context) { } ctx.Data["Hooks"] = hooks - ctx.HTML(200, GITHOOKS) + ctx.HTML(200, SETTINGS_GITHOOKS) } -func GitHooksEdit(ctx *context.Context) { +func SettingsGitHooksEdit(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings.githooks") ctx.Data["PageIsSettingsGitHooks"] = true @@ -427,10 +491,10 @@ func GitHooksEdit(ctx *context.Context) { return } ctx.Data["Hook"] = hook - ctx.HTML(200, GITHOOK_EDIT) + ctx.HTML(200, SETTINGS_GITHOOK_EDIT) } -func GitHooksEditPost(ctx *context.Context) { +func SettingsGitHooksEditPost(ctx *context.Context) { name := ctx.Params(":name") hook, err := ctx.Repo.GitRepo.GetHook(name) if err != nil { @@ -449,7 +513,7 @@ func GitHooksEditPost(ctx *context.Context) { ctx.Redirect(ctx.Repo.RepoLink + "/settings/hooks/git") } -func DeployKeys(ctx *context.Context) { +func SettingsDeployKeys(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings.deploy_keys") ctx.Data["PageIsSettingsKeys"] = true @@ -460,10 +524,10 @@ func DeployKeys(ctx *context.Context) { } ctx.Data["Deploykeys"] = keys - ctx.HTML(200, DEPLOY_KEYS) + ctx.HTML(200, SETTINGS_DEPLOY_KEYS) } -func DeployKeysPost(ctx *context.Context, form auth.AddSSHKeyForm) { +func SettingsDeployKeysPost(ctx *context.Context, form auth.AddSSHKeyForm) { ctx.Data["Title"] = ctx.Tr("repo.settings.deploy_keys") ctx.Data["PageIsSettingsKeys"] = true @@ -475,7 +539,7 @@ func DeployKeysPost(ctx *context.Context, form auth.AddSSHKeyForm) { ctx.Data["Deploykeys"] = keys if ctx.HasError() { - ctx.HTML(200, DEPLOY_KEYS) + ctx.HTML(200, SETTINGS_DEPLOY_KEYS) return } @@ -498,10 +562,10 @@ func DeployKeysPost(ctx *context.Context, form auth.AddSSHKeyForm) { switch { case models.IsErrKeyAlreadyExist(err): ctx.Data["Err_Content"] = true - ctx.RenderWithErr(ctx.Tr("repo.settings.key_been_used"), DEPLOY_KEYS, &form) + ctx.RenderWithErr(ctx.Tr("repo.settings.key_been_used"), SETTINGS_DEPLOY_KEYS, &form) case models.IsErrKeyNameAlreadyUsed(err): ctx.Data["Err_Title"] = true - ctx.RenderWithErr(ctx.Tr("repo.settings.key_name_used"), DEPLOY_KEYS, &form) + ctx.RenderWithErr(ctx.Tr("repo.settings.key_name_used"), SETTINGS_DEPLOY_KEYS, &form) default: ctx.Handle(500, "AddDeployKey", err) } diff --git a/routers/repo/view.go b/routers/repo/view.go index 623b7fee0..db0adea28 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -108,8 +108,7 @@ func renderDirectory(ctx *context.Context, treeLink string) { ctx.Data["LatestCommit"] = latestCommit ctx.Data["LatestCommitUser"] = models.ValidateCommitWithEmail(latestCommit) - // Check permission to add or upload new file. - if ctx.Repo.IsWriter() && ctx.Repo.IsViewBranch { + if ctx.Repo.CanEnableEditor() { ctx.Data["CanAddFile"] = true ctx.Data["CanUploadFile"] = setting.Repository.Upload.Enabled } @@ -142,6 +141,7 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st ctx.Data["EditFileTooltip"] = ctx.Tr("repo.editor.cannot_edit_non_text_files") } + canEnableEditor := ctx.Repo.CanEnableEditor() switch { case isTextFile: if blob.Size() >= setting.UI.MaxDisplayFileSize { @@ -186,7 +186,7 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st ctx.Data["LineNums"] = gotemplate.HTML(output.String()) } - if ctx.Repo.CanEnableEditor() { + if canEnableEditor { ctx.Data["CanEditFile"] = true ctx.Data["EditFileTooltip"] = ctx.Tr("repo.editor.edit_this_file") } else if !ctx.Repo.IsViewBranch { @@ -203,7 +203,7 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st ctx.Data["IsImageFile"] = true } - if ctx.Repo.CanEnableEditor() { + if canEnableEditor { ctx.Data["CanDeleteFile"] = true ctx.Data["DeleteFileTooltip"] = ctx.Tr("repo.editor.delete_this_file") } else if !ctx.Repo.IsViewBranch { @@ -216,7 +216,7 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st func setEditorconfigIfExists(ctx *context.Context) { ec, err := ctx.Repo.GetEditorconfig() if err != nil && !git.IsErrNotExist(err) { - log.Error(4, "Fail to get '.editorconfig' [%d]: %v", ctx.Repo.Repository.ID, err) + log.Trace("setEditorconfigIfExists.GetEditorconfig [%d]: %v", ctx.Repo.Repository.ID, err) return } ctx.Data["Editorconfig"] = ec @@ -228,6 +228,9 @@ func Home(ctx *context.Context) { title += ": " + ctx.Repo.Repository.Description } ctx.Data["Title"] = title + if ctx.Repo.BranchName != ctx.Repo.Repository.DefaultBranch { + ctx.Data["Title"] = title + " @ " + ctx.Repo.BranchName + } ctx.Data["PageIsViewCode"] = true ctx.Data["RequireHighlightJS"] = true diff --git a/templates/.VERSION b/templates/.VERSION index 7a4cb9cf2..859e5fac8 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.153.0217 \ No newline at end of file +0.9.154.0217 \ No newline at end of file diff --git a/templates/repo/settings/branches.tmpl b/templates/repo/settings/branches.tmpl new file mode 100644 index 000000000..e5d6c1fb8 --- /dev/null +++ b/templates/repo/settings/branches.tmpl @@ -0,0 +1,62 @@ +{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+
+ {{template "repo/settings/navbar" .}} +
+ {{template "base/alert" .}} +

+ {{.i18n.Tr "repo.settings.default_branch"}} +

+
+

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

+
+ {{.CsrfTokenHtml}} +
+ + +
+
+
+ +

+ {{.i18n.Tr "repo.settings.protected_branches"}} +

+
+

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

+
+
+ +
+
+
+ {{range .ProtectBranches}} +
+ {{.Name}} +
+ {{end}} +
+
+
+
+
+
+{{template "base/footer" .}} \ No newline at end of file diff --git a/templates/repo/settings/navbar.tmpl b/templates/repo/settings/navbar.tmpl index 7ebf2886c..f43b3caf6 100644 --- a/templates/repo/settings/navbar.tmpl +++ b/templates/repo/settings/navbar.tmpl @@ -7,6 +7,11 @@ {{.i18n.Tr "repo.settings.collaboration"}} + {{if not .Repository.IsMirror}} + + {{.i18n.Tr "repo.settings.branches"}} + + {{end}} {{.i18n.Tr "repo.settings.hooks"}} diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index 2588966c9..8831202ad 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -26,21 +26,6 @@ - {{if not .Repository.IsBare}} -
- - -
- {{end}} {{if not .Repository.IsFork}}
diff --git a/templates/repo/settings/protected_branch.tmpl b/templates/repo/settings/protected_branch.tmpl new file mode 100644 index 000000000..d850353bf --- /dev/null +++ b/templates/repo/settings/protected_branch.tmpl @@ -0,0 +1,53 @@ +{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+
+ {{template "repo/settings/navbar" .}} +
+ {{template "base/alert" .}} +

+ {{.i18n.Tr "repo.settings.branch_protection"}} +

+
+

{{.i18n.Tr "repo.settings.branch_protection_desc" .Branch.Name | Str2html}}

+
+ {{.CsrfTokenHtml}} +
+
+ + +

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

+
+
+
+
+
+ + +

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

+
+
+ {{if .IsOrgRepo}} +
+
+ + +

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

+
+
+ {{end}} +
+ +
+ +
+ +
+
+
+
+
+
+
+{{template "base/footer" .}} \ No newline at end of file