From cd89f6c5021ef129ecc4652aa620a3562ae30979 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 14 Aug 2016 23:02:14 -0700 Subject: [PATCH] Web editor: improve edit file and diff preview --- conf/locale/locale_en-US.ini | 28 +- models/git_diff.go | 2 +- models/pull.go | 15 +- models/repo.go | 204 ++------------ models/repo_editor.go | 211 ++++++++++++++ models/wiki.go | 17 +- modules/bindata/bindata.go | 6 +- routers/repo/branch.go | 6 +- routers/repo/edit.go | 265 ++++++++---------- routers/repo/upload.go | 7 +- routers/repo/view.go | 166 +++++------ templates/repo/diff_box.tmpl | 4 +- templates/repo/{ => editor}/diff_preview.tmpl | 0 .../repo/{ => editor}/diff_preview_new.tmpl | 0 templates/repo/{ => editor}/edit.tmpl | 21 +- 15 files changed, 477 insertions(+), 475 deletions(-) create mode 100644 models/repo_editor.go rename templates/repo/{ => editor}/diff_preview.tmpl (100%) rename templates/repo/{ => editor}/diff_preview_new.tmpl (100%) rename templates/repo/{ => editor}/edit.tmpl (81%) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 9dbb71f183..9bf756bebc 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -440,36 +440,34 @@ edit_this_file = Edit this file edit_file = Edit file delete_confirm_message = Are you sure you want to delete this file? delete_commit_message = Write a note about this delete (optional) -file_editing_no_longer_exists = The file you are editing no longer exists in the repository -file_already_exists = A file by that name already exists unable_to_update_file = Unable to update this file, error occurred -add = Add -update = Update -filename_cannot_be_empty = Filename cannot be empty -directory_is_a_file = One of the directories in the path is already a file in this repository -filename_is_a_directory = The filename given is an existing directory in the repository must_be_on_branch = You must be on a branch to make or propose changes to this file must_be_writer = You must have write access to make or propose changes to this file cannot_edit_binary_files = Cannot edit binary files filename_help = To add directory, just type it and press /. To remove a directory, go to the beginning of the field and press backspace. fork_before_edit = You must fork this before editing -branch_already_exists = Branch already exists -create_new_branch = Create a %s for this commit and start a pull request. new_branch = new branch -commit_directly_to_this_branch = Commit directly to the %s branch. +editor.commit_directly_to_this_branch = Commit directly to the %s branch. +editor.create_new_branch = Create a new branch for this commit and start a pull request. +editor.filename_cannot_be_empty = Filename cannot be empty. +editor.branch_already_exists = Branch '%s' already exists in this repository. +editor.directory_is_a_file = Entry '%s' in the parent path is a file not a directory in this repository. +editor.filename_is_a_directory = The filename '%s' is an existing directory in this repository. +editor.file_editing_no_longer_exists = The file '%s' you are editing no longer exists in the repository. +editor.file_changed_while_editing = File content has been changed since you started editing. Click here to see what have been changed or press commit again to overwrite those changes. +editor.file_already_exists = A file with name '%s' already exists in this repository. +editor.add = Add '%s' +editor.update = Update '%s' +editor.failed_to_upload_files = An error occurred while updating file: %v +editor.no_changes_to_show = There are no changes to show. create_branch = Create branch from = from upload_file = Upload file add_files_to_dir = Add files to %s -unable_to_upload_files = Unable to upload files, an error occurred. add_subdir = Add subdirectory... name_your_file = Name your file... -user_has_committed_since_you_started_editing = %s has committed since you started editing. -see_what_changed = See what changed. -pressing_commit_again_will_overwrite_those_changes = Pressing '%s' again will overwrite those changes. copy_file_path_to_clipboard = Copy file path to clipboard preview_changes = Preview Changes -no_changes_to_show = There are no changes to show. commits.commits = Commits commits.search = Search commits diff --git a/models/git_diff.go b/models/git_diff.go index 5c5954fcac..a63a1bb999 100644 --- a/models/git_diff.go +++ b/models/git_diff.go @@ -434,7 +434,7 @@ func GetDiffRange(repoPath, beforeCommitID, afterCommitID string, maxLines, maxL return nil, fmt.Errorf("Start: %v", err) } - pid := process.Add(fmt.Sprintf("GetDiffRange (%s)", repoPath), cmd) + pid := process.Add(fmt.Sprintf("GetDiffRange [repo_path: %s]", repoPath), cmd) defer process.Remove(pid) diff, err := ParsePatch(maxLines, maxLineCharacteres, maxFiles, stdout) diff --git a/models/pull.go b/models/pull.go index 1dde7608f6..39361595ff 100644 --- a/models/pull.go +++ b/models/pull.go @@ -334,6 +334,9 @@ var patchConflicts = []string{ // testPatch checks if patch can be merged to base repository without conflit. // FIXME: make a mechanism to clean up stable local copies. func (pr *PullRequest) testPatch() (err error) { + repoWorkingPool.CheckIn(com.ToStr(pr.BaseRepoID)) + defer repoWorkingPool.CheckOut(com.ToStr(pr.BaseRepoID)) + if pr.BaseRepo == nil { pr.BaseRepo, err = GetRepositoryByID(pr.BaseRepoID) if err != nil { @@ -354,20 +357,12 @@ func (pr *PullRequest) testPatch() (err error) { log.Trace("PullRequest[%d].testPatch (patchPath): %s", pr.ID, patchPath) - if err := pr.BaseRepo.UpdateLocalCopy(pr.BaseRepo.DefaultBranch); err != nil { + if err := pr.BaseRepo.UpdateLocalCopyBranch(pr.BaseBranch); err != nil { return fmt.Errorf("UpdateLocalCopy: %v", err) } - // Checkout base branch. - _, stderr, err := process.ExecDir(-1, pr.BaseRepo.LocalCopyPath(), - fmt.Sprintf("PullRequest.Merge (git checkout): %v", pr.BaseRepo.ID), - "git", "checkout", pr.BaseBranch) - if err != nil { - return fmt.Errorf("git checkout: %s", stderr) - } - pr.Status = PULL_REQUEST_STATUS_CHECKING - _, stderr, err = process.ExecDir(-1, pr.BaseRepo.LocalCopyPath(), + _, stderr, err := process.ExecDir(-1, pr.BaseRepo.LocalCopyPath(), fmt.Sprintf("testPatch (git apply --check): %d", pr.BaseRepo.ID), "git", "apply", "--check", patchPath) if err != nil { diff --git a/models/repo.go b/models/repo.go index 22d211583e..73950a9fb9 100644 --- a/models/repo.go +++ b/models/repo.go @@ -437,10 +437,14 @@ func (repo *Repository) DescriptionHtml() template.HTML { } func (repo *Repository) LocalCopyPath() string { - return path.Join(setting.AppDataPath, "tmp/local", com.ToStr(repo.ID)) + return path.Join(setting.AppDataPath, "tmp/local-rpeo", com.ToStr(repo.ID)) } -func updateLocalCopy(repoPath, localPath, branch string) error { +// UpdateLocalCopy pulls latest changes of given branch from repoPath to localPath. +// It creates a new clone if local copy does not exist. +// This function checks out target branch by default, it is safe to assume subsequent +// operations are operating against target branch when caller has confidence for no race condition. +func UpdateLocalCopyBranch(repoPath, localPath, branch string) error { if !com.IsExist(localPath) { if err := git.Clone(repoPath, localPath, git.CloneRepoOptions{ Timeout: time.Duration(setting.Git.Timeout.Clone) * time.Second, @@ -450,13 +454,11 @@ func updateLocalCopy(repoPath, localPath, branch string) error { } } else { if err := git.Checkout(localPath, git.CheckoutOptions{ - Branch: branch, - Timeout: time.Duration(setting.Git.Timeout.Pull) * time.Second, + Branch: branch, }); err != nil { return fmt.Errorf("Checkout: %v", err) } if err := git.Pull(localPath, git.PullRemoteOptions{ - All: false, Remote: "origin", Branch: branch, Timeout: time.Duration(setting.Git.Timeout.Pull) * time.Second, @@ -467,9 +469,9 @@ func updateLocalCopy(repoPath, localPath, branch string) error { return nil } -// UpdateLocalCopy makes sure the local copy of repository is up-to-date. -func (repo *Repository) UpdateLocalCopy(branch string) error { - return updateLocalCopy(repo.RepoPath(), repo.LocalCopyPath(), branch) +// UpdateLocalCopy makes sure the branch of local copy of repository is up-to-date. +func (repo *Repository) UpdateLocalCopyBranch(branch string) error { + return UpdateLocalCopyBranch(repo.RepoPath(), repo.LocalCopyPath(), branch) } // PatchPath returns corresponding patch file path of repository by given issue ID. @@ -2238,168 +2240,6 @@ func (repo *Repository) GetForks() ([]*Repository, error) { return forks, x.Find(&forks, &Repository{ForkID: repo.ID}) } -// ___________ .___.__ __ ___________.__.__ -// \_ _____/ __| _/|__|/ |_ \_ _____/|__| | ____ -// | __)_ / __ | | \ __\ | __) | | | _/ __ \ -// | \/ /_/ | | || | | \ | | |_\ ___/ -// /_______ /\____ | |__||__| \___ / |__|____/\___ > -// \/ \/ \/ \/ - -func (repo *Repository) LocalRepoPath() string { - return path.Join(setting.AppDataPath, "tmp/local-repo", com.ToStr(repo.ID)) -} - -// UpdateLocalRepo makes sure the local copy of repository is up-to-date. -func (repo *Repository) UpdateLocalRepo(branchName string) error { - return updateLocalCopy(repo.RepoPath(), repo.LocalRepoPath(), branchName) -} - -// DiscardLocalRepoChanges makes sure the local copy of repository is the same as the source -func (repo *Repository) DiscardLocalRepoChanges(branchName string) error { - return discardLocalRepoChanges(repo.LocalRepoPath(), branchName) -} - -// discardLocalRepoChanges discards local commits make sure -// it is even to remote branch when local copy exists. -func discardLocalRepoChanges(localPath string, branch string) error { - if !com.IsExist(localPath) { - return nil - } - // No need to check if nothing in the repository. - if !git.IsBranchExist(localPath, branch) { - return nil - } - if err := git.ResetHEAD(localPath, true, "origin/"+branch); err != nil { - return fmt.Errorf("ResetHEAD: %v", err) - } - return nil -} - -// CheckoutNewBranch checks out a new branch from the given branch name -func (repo *Repository) CheckoutNewBranch(oldBranchName, newBranchName string) error { - return checkoutNewBranch(repo.RepoPath(), repo.LocalRepoPath(), oldBranchName, newBranchName) -} - -func checkoutNewBranch(repoPath, localPath, oldBranch, newBranch string) error { - if !com.IsExist(localPath) { - if err := updateLocalCopy(repoPath, localPath, oldBranch); err != nil { - return err - } - } - if err := git.Checkout(localPath, git.CheckoutOptions{ - Branch: newBranch, - OldBranch: oldBranch, - Timeout: time.Duration(setting.Git.Timeout.Pull) * time.Second, - }); err != nil { - return fmt.Errorf("Checkout New Branch: %v", err) - } - return nil -} - -// updateRepoFile adds new file to repository. -func (repo *Repository) UpdateRepoFile(doer *User, oldBranchName, branchName, oldTreeName, treeName, content, message string, isNewFile bool) (err error) { - repoWorkingPool.CheckIn(com.ToStr(repo.ID)) - defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) - - if err = repo.DiscardLocalRepoChanges(oldBranchName); err != nil { - return fmt.Errorf("discardLocalRepoChanges: %s - %v", oldBranchName, err) - } else if err = repo.UpdateLocalRepo(oldBranchName); err != nil { - return fmt.Errorf("UpdateLocalRepo: %s - %v", oldBranchName, err) - } - - if oldBranchName != branchName { - if err := repo.CheckoutNewBranch(oldBranchName, branchName); err != nil { - return fmt.Errorf("CheckoutNewBranch: %s - %s: %v", oldBranchName, branchName, err) - } - } - - localPath := repo.LocalRepoPath() - filePath := path.Join(localPath, treeName) - - if len(message) == 0 { - if isNewFile { - message = "Add '" + treeName + "'" - } else { - message = "Update '" + treeName + "'" - } - } - - os.MkdirAll(filepath.Dir(filePath), os.ModePerm) - - // If new file, make sure it doesn't exist; if old file, move if file name change - if isNewFile { - if com.IsExist(filePath) { - return ErrRepoFileAlreadyExist{filePath} - } - } else if oldTreeName != "" && treeName != "" && treeName != oldTreeName { - if err = git.MoveFile(localPath, oldTreeName, treeName); err != nil { - return fmt.Errorf("MoveFile: %v", err) - } - } - - if err = ioutil.WriteFile(filePath, []byte(content), 0666); err != nil { - return fmt.Errorf("WriteFile: %v", err) - } - - if err = git.AddChanges(localPath, true); err != nil { - return fmt.Errorf("AddChanges: %v", err) - } else if err = git.CommitChanges(localPath, message, doer.NewGitSig()); err != nil { - return fmt.Errorf("CommitChanges: %v", err) - } else if err = git.Push(localPath, "origin", branchName); err != nil { - return fmt.Errorf("Push: %v", err) - } - - return nil -} - -func (repo *Repository) GetPreviewDiff(repoPath, branchName, treeName, text string, maxlines, maxchars, maxfiles int) (diff *Diff, err error) { - repoWorkingPool.CheckIn(com.ToStr(repo.ID)) - defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) - - if err = repo.DiscardLocalRepoChanges(branchName); err != nil { - return nil, fmt.Errorf("discardLocalRepoChanges: %s - %v", branchName, err) - } else if err = repo.UpdateLocalRepo(branchName); err != nil { - return nil, fmt.Errorf("UpdateLocalRepo: %s - %v", branchName, err) - } - - localPath := repo.LocalRepoPath() - filePath := path.Join(localPath, treeName) - - os.MkdirAll(filepath.Dir(filePath), os.ModePerm) - - if err = ioutil.WriteFile(filePath, []byte(text), 0666); err != nil { - return nil, fmt.Errorf("WriteFile: %v", err) - } - - var cmd *exec.Cmd - cmd = exec.Command("git", "diff", treeName) - cmd.Dir = localPath - cmd.Stderr = os.Stderr - - stdout, err := cmd.StdoutPipe() - if err != nil { - return nil, fmt.Errorf("StdoutPipe: %v", err) - } - - if err = cmd.Start(); err != nil { - return nil, fmt.Errorf("Start: %v", err) - } - - pid := process.Add(fmt.Sprintf("GetDiffRange (%s)", repoPath), cmd) - defer process.Remove(pid) - - diff, err = ParsePatch(maxlines, maxchars, maxfiles, stdout) - if err != nil { - return nil, fmt.Errorf("ParsePatch: %v", err) - } - - if err = cmd.Wait(); err != nil { - return nil, fmt.Errorf("Wait: %v", err) - } - - return diff, nil -} - // ________ .__ __ ___________.__.__ // \______ \ ____ | | _____/ |_ ____ \_ _____/|__| | ____ // | | \_/ __ \| | _/ __ \ __\/ __ \ | __) | | | _/ __ \ @@ -2412,11 +2252,11 @@ func (repo *Repository) DeleteRepoFile(doer *User, branch, treeName, message str repoWorkingPool.CheckIn(com.ToStr(repo.ID)) defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) - localPath := repo.LocalRepoPath() - if err = discardLocalRepoChanges(localPath, branch); err != nil { + localPath := repo.LocalCopyPath() + if err = discardLocalRepoBranchChanges(localPath, branch); err != nil { return fmt.Errorf("discardLocalRepoChanges: %v", err) - } else if err = repo.UpdateLocalRepo(branch); err != nil { - return fmt.Errorf("UpdateLocalRepo: %v", err) + } else if err = repo.UpdateLocalCopyBranch(branch); err != nil { + return fmt.Errorf("UpdateLocalCopyBranch: %v", err) } filePath := path.Join(localPath, treeName) @@ -2450,12 +2290,12 @@ func (repo *Repository) UploadRepoFiles(doer *User, oldBranchName, branchName, t repoWorkingPool.CheckIn(com.ToStr(repo.ID)) defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) - localPath := repo.LocalRepoPath() + localPath := repo.LocalCopyPath() - if err = discardLocalRepoChanges(localPath, oldBranchName); err != nil { + if err = discardLocalRepoBranchChanges(localPath, oldBranchName); err != nil { return fmt.Errorf("discardLocalRepoChanges: %v", err) - } else if err = repo.UpdateLocalRepo(oldBranchName); err != nil { - return fmt.Errorf("UpdateLocalRepo: %v", err) + } else if err = repo.UpdateLocalCopyBranch(oldBranchName); err != nil { + return fmt.Errorf("UpdateLocalCopyBranch: %v", err) } if oldBranchName != branchName { @@ -2637,12 +2477,12 @@ func (repo *Repository) CreateNewBranch(doer *User, oldBranchName, branchName st repoWorkingPool.CheckIn(com.ToStr(repo.ID)) defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) - localPath := repo.LocalRepoPath() + localPath := repo.LocalCopyPath() - if err = discardLocalRepoChanges(localPath, oldBranchName); err != nil { + if err = discardLocalRepoBranchChanges(localPath, oldBranchName); err != nil { return fmt.Errorf("discardLocalRepoChanges: %v", err) - } else if err = repo.UpdateLocalRepo(oldBranchName); err != nil { - return fmt.Errorf("UpdateLocalRepo: %v", err) + } else if err = repo.UpdateLocalCopyBranch(oldBranchName); err != nil { + return fmt.Errorf("UpdateLocalCopyBranch: %v", err) } if err = repo.CheckoutNewBranch(oldBranchName, branchName); err != nil { diff --git a/models/repo_editor.go b/models/repo_editor.go new file mode 100644 index 0000000000..843a58b576 --- /dev/null +++ b/models/repo_editor.go @@ -0,0 +1,211 @@ +// Copyright 2016 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package models + +import ( + "fmt" + "io/ioutil" + "os" + "os/exec" + "path" + "path/filepath" + "time" + + "github.com/Unknwon/com" + + git "github.com/gogits/git-module" + + "github.com/gogits/gogs/modules/log" + "github.com/gogits/gogs/modules/process" + "github.com/gogits/gogs/modules/setting" +) + +// ___________ .___.__ __ ___________.__.__ +// \_ _____/ __| _/|__|/ |_ \_ _____/|__| | ____ +// | __)_ / __ | | \ __\ | __) | | | _/ __ \ +// | \/ /_/ | | || | | \ | | |_\ ___/ +// /_______ /\____ | |__||__| \___ / |__|____/\___ > +// \/ \/ \/ \/ + +// discardLocalRepoBranchChanges discards local commits of given branch +// to make sure it is even to remote branch when local copy exists. +func discardLocalRepoBranchChanges(localPath, branch string) error { + if !com.IsExist(localPath) { + return nil + } + // No need to check if nothing in the repository. + if !git.IsBranchExist(localPath, branch) { + return nil + } + if err := git.ResetHEAD(localPath, true, "origin/"+branch); err != nil { + return fmt.Errorf("ResetHEAD: %v", err) + } + return nil +} + +func (repo *Repository) DiscardLocalRepoBranchChanges(branch string) error { + return discardLocalRepoBranchChanges(repo.LocalCopyPath(), branch) +} + +func checkoutNewBranch(repoPath, localPath, oldBranch, newBranch string) error { + if !com.IsExist(localPath) { + if err := UpdateLocalCopyBranch(repoPath, localPath, oldBranch); err != nil { + return err + } + } + if err := git.Checkout(localPath, git.CheckoutOptions{ + Branch: newBranch, + OldBranch: oldBranch, + Timeout: time.Duration(setting.Git.Timeout.Pull) * time.Second, + }); err != nil { + return fmt.Errorf("Checkout: %v", err) + } + return nil +} + +// CheckoutNewBranch checks out a new branch from the given branch name. +func (repo *Repository) CheckoutNewBranch(oldBranch, newBranch string) error { + return checkoutNewBranch(repo.RepoPath(), repo.LocalCopyPath(), oldBranch, newBranch) +} + +type UpdateRepoFileOptions struct { + LastCommitID string + OldBranch string + NewBranch string + OldTreeName string + NewTreeName string + Message string + Content string + IsNewFile bool +} + +// updateRepoFile adds new file to repository. +func (repo *Repository) UpdateRepoFile(doer *User, opts *UpdateRepoFileOptions) (err error) { + repoWorkingPool.CheckIn(com.ToStr(repo.ID)) + defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) + + if err = repo.DiscardLocalRepoBranchChanges(opts.OldBranch); err != nil { + return fmt.Errorf("DiscardLocalRepoBranchChanges [branch: %s]: %v", opts.OldBranch, err) + } else if err = repo.UpdateLocalCopyBranch(opts.OldBranch); err != nil { + return fmt.Errorf("UpdateLocalCopyBranch [branch: %s]: %v", opts.OldBranch, err) + } + + if opts.OldBranch != opts.NewBranch { + if err := repo.CheckoutNewBranch(opts.OldBranch, opts.NewBranch); err != nil { + return fmt.Errorf("CheckoutNewBranch [old_branch: %s, new_branch: %s]: %v", opts.OldBranch, opts.NewBranch, err) + } + } + + localPath := repo.LocalCopyPath() + filePath := path.Join(localPath, opts.NewTreeName) + + if len(opts.Message) == 0 { + if opts.IsNewFile { + opts.Message = "Add '" + opts.NewTreeName + "'" + } else { + opts.Message = "Update '" + opts.NewTreeName + "'" + } + } + + os.MkdirAll(path.Dir(filePath), os.ModePerm) + + // If new file, make sure it doesn't exist; if old file, move if file name change. + if opts.IsNewFile { + if com.IsExist(filePath) { + return ErrRepoFileAlreadyExist{filePath} + } + } else if len(opts.OldTreeName) > 0 && len(opts.NewTreeName) > 0 && opts.NewTreeName != opts.OldTreeName { + if err = git.MoveFile(localPath, opts.OldTreeName, opts.NewTreeName); err != nil { + return fmt.Errorf("MoveFile [old_tree_name: %s, new_tree_name: %s]: %v", opts.OldTreeName, opts.NewTreeName, err) + } + } + + if err = ioutil.WriteFile(filePath, []byte(opts.Content), 0666); err != nil { + return fmt.Errorf("WriteFile: %v", err) + } + + if err = git.AddChanges(localPath, true); err != nil { + return fmt.Errorf("AddChanges: %v", err) + } else if err = git.CommitChanges(localPath, opts.Message, doer.NewGitSig()); err != nil { + return fmt.Errorf("CommitChanges: %v", err) + } else if err = git.Push(localPath, "origin", opts.NewBranch); err != nil { + return fmt.Errorf("Push: %v", err) + } + + gitRepo, err := git.OpenRepository(repo.RepoPath()) + if err != nil { + log.Error(4, "OpenRepository: %v", err) + return nil + } + commit, err := gitRepo.GetBranchCommit(opts.NewBranch) + if err != nil { + log.Error(4, "GetBranchCommit [branch: %s]: %v", opts.NewBranch, err) + return nil + } + + pushCommits := &PushCommits{ + Len: 1, + Commits: []*PushCommit{CommitToPushCommit(commit)}, + } + oldCommitID := opts.LastCommitID + if opts.NewBranch != opts.OldBranch { + oldCommitID = "0000000000000000000000000000000000000000" // New Branch so we use all 0s + } + if err := CommitRepoAction(doer.ID, repo.MustOwner().ID, doer.Name, doer.Email, + repo.ID, repo.MustOwner().Name, repo.Name, git.BRANCH_PREFIX+opts.NewBranch, + pushCommits, oldCommitID, commit.ID.String()); err != nil { + log.Error(4, "CommitRepoAction: %v", err) + return nil + } + go HookQueue.Add(repo.ID) + + return nil +} + +func (repo *Repository) GetDiffPreview(branch, treeName, content string) (diff *Diff, err error) { + repoWorkingPool.CheckIn(com.ToStr(repo.ID)) + defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) + + if err = repo.DiscardLocalRepoBranchChanges(branch); err != nil { + return nil, fmt.Errorf("discardLocalRepoChanges: %s - %v", branch, err) + } else if err = repo.UpdateLocalCopyBranch(branch); err != nil { + return nil, fmt.Errorf("UpdateLocalCopyBranch: %s - %v", branch, err) + } + + localPath := repo.LocalCopyPath() + filePath := path.Join(localPath, treeName) + + os.MkdirAll(filepath.Dir(filePath), os.ModePerm) + if err = ioutil.WriteFile(filePath, []byte(content), 0666); err != nil { + return nil, fmt.Errorf("WriteFile: %v", err) + } + + cmd := exec.Command("git", "diff", treeName) + cmd.Dir = localPath + cmd.Stderr = os.Stderr + + stdout, err := cmd.StdoutPipe() + if err != nil { + return nil, fmt.Errorf("StdoutPipe: %v", err) + } + + if err = cmd.Start(); err != nil { + return nil, fmt.Errorf("Start: %v", err) + } + + pid := process.Add(fmt.Sprintf("GetDiffRange [repo_path: %s]", repo.RepoPath()), cmd) + defer process.Remove(pid) + + diff, err = ParsePatch(setting.Git.MaxGitDiffLines, setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles, stdout) + if err != nil { + return nil, fmt.Errorf("ParsePatch: %v", err) + } + + if err = cmd.Wait(); err != nil { + return nil, fmt.Errorf("Wait: %v", err) + } + + return diff, nil +} diff --git a/models/wiki.go b/models/wiki.go index 7a286f4ba3..24cd6aca21 100644 --- a/models/wiki.go +++ b/models/wiki.go @@ -76,24 +76,11 @@ func (repo *Repository) LocalWikiPath() string { // UpdateLocalWiki makes sure the local copy of repository wiki is up-to-date. func (repo *Repository) UpdateLocalWiki() error { - return updateLocalCopy(repo.WikiPath(), repo.LocalWikiPath(), "") + return UpdateLocalCopyBranch(repo.WikiPath(), repo.LocalWikiPath(), "master") } -// discardLocalWikiChanges discards local commits make sure -// it is even to remote branch when local copy exists. func discardLocalWikiChanges(localPath string) error { - if !com.IsExist(localPath) { - return nil - } - // No need to check if nothing in the repository. - if !git.IsBranchExist(localPath, "master") { - return nil - } - - if err := git.ResetHEAD(localPath, true, "origin/master"); err != nil { - return fmt.Errorf("ResetHEAD: %v", err) - } - return nil + return discardLocalRepoBranchChanges(localPath, "master") } // updateWikiPage adds new page to repository wiki. diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index ddf22962fc..f0c083e579 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -301,7 +301,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 13460, mode: os.FileMode(420), modTime: time.Unix(1471215929, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 13460, mode: os.FileMode(420), modTime: time.Unix(1471235101, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4346,7 +4346,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\xfb\x72\xdb\x48\x92\x2f\xfc\x3f\x9e\x02\xed\x09\x87\xed\x08\x99\x1d\x3d\xb3\xdf\x25\x3a\xfa\xf2\xa9\xe5\xf6\x65\xd7\xb2\xb5\x96\x7a\xe6\x9b\xd3\xe1\x60\x83\x24\x44\x62\x4d\x02\x1c\x00\xb4\xac\x99\x98\x37\x38\x0f\x70\x9e\xef\x3c\xc9\xc9\xfc\x65\x66\x55\x16\x00\x4a\x76\xcf\xfa\x0f\x0b\xac\xca\xba\x67\x65\xe5\xad\xb2\x8a\xfd\x7e\xbe\x2a\xbb\x65\xfe\x7d\x7e\x9a\xef\x8b\xaa\xde\x96\x5d\x97\x77\xe5\xf6\xfa\xe9\xa6\xe9\xfa\x72\x95\xbf\xa8\x7a\xfa\xdd\x7e\xac\x96\x65\x96\x6d\x9a\x5d\x49\xa0\x2f\xe9\x4f\xb6\x2a\xba\xcd\xa2\x29\xda\x15\x25\x3c\xb3\xef\xac\xfc\xb4\xdf\x36\x2d\x03\xfd\x2c\x5f\xd9\xa6\xdc\xee\xb9\x0c\xfd\xc9\xba\x6a\x5d\xcf\xab\x9a\x7e\x5e\xd2\x57\xfe\xaa\x96\x94\xe6\xd0\x5b\xd2\xdb\x43\x2f\x69\x87\xbd\x25\xfd\xb2\xcf\xda\x72\x5d\x51\x6f\x5a\x4a\x7a\xa7\x9f\xd9\x4d\xb9\xe8\xaa\x9e\x5b\xfa\x8b\x7c\x65\x1f\xcb\xb6\xab\x1a\xae\xfd\xcf\xf2\x95\xed\x8b\x35\x03\x5c\xd0\x9f\xac\x2f\x77\xfb\x6d\x81\x02\x57\xfa\x99\x6d\x8b\x7a\x7d\x10\x98\xd7\xfa\x99\x2d\xdb\x92\xb2\xe6\x75\x79\x43\xa9\x67\xf8\x31\x9b\xcd\xb2\x03\x4d\xc2\x7c\xdf\x36\xd7\xd5\xb6\x9c\x17\xf5\x6a\xbe\x93\x61\xfe\x42\xe9\xb9\xa6\xe7\x94\x9e\x73\x3a\x86\x50\xae\x68\xa8\xf3\xa2\xd3\x71\xd0\x5c\xd2\xc8\x8b\x2e\x43\x55\x75\xb1\xb3\xd2\xfc\x99\x95\xbb\xa2\xda\xf2\xac\xf1\x5f\xea\x77\xd7\xdd\x34\x98\xda\x0b\xfd\xa4\x39\x98\xf7\xb7\xfb\x12\x53\xf0\xf4\x8a\xbe\xb2\x65\xb1\xef\x97\x9b\x82\xbb\x29\x5f\x19\x01\xed\x1b\x9a\x8b\xa6\xbd\x05\x9c\xfd\xc8\x9a\x76\x5d\xd4\xd5\xdf\x8b\x5e\xe6\xe7\xad\xfb\x99\xed\xaa\xb6\x6d\x78\x6a\xcf\xf1\x91\xd1\xc8\xe7\x5c\x0f\xa5\xbc\xa1\x49\x70\xb5\x70\xce\xae\x5a\xb7\x32\x8b\x9c\x79\x8e\x5f\x5c\x8b\xe4\x69\x4d\x92\x15\x6a\xbb\x6e\xda\x0f\x9a\xfa\x9c\x3f\x07\x55\x52\xe7\x34\x37\xed\x57\x51\xd3\x7a\x68\xee\x39\x7e\x24\x00\x5d\x56\xac\x76\x34\xc3\xfb\xa2\x2e\x79\xea\x4e\xf9\x17\xcd\x17\xfd\xca\x8a\xe5\xb2\x39\xd4\xfd\xbc\x2b\xfb\xbe\xaa\xd7\xbc\x06\xa7\x92\x94\x5f\x6a\x52\xe6\xf2\x42\xda\x6d\x73\x08\xab\x4c\xe9\x7f\xa5\x9f\xf9\x85\xfc\x94\x3c\x57\x08\x99\xa1\x24\x35\xd9\x57\x1f\xab\xbe\x2a\xa5\x31\xfb\x91\xed\x0f\xdb\x2d\xcd\xe7\xdf\x0e\x65\xd7\x73\xd6\x05\xfd\xa6\x19\x90\xdf\x59\xd5\x75\x07\x94\x78\x85\x8f\x8c\x16\xb5\x5e\x62\x38\x67\xf8\xc8\xb2\x5f\xab\xba\xeb\x8b\xed\xf6\x7d\xa6\x1f\x0c\x2c\x5f\x32\x4f\x7d\xd5\xa3\xb3\x9a\x98\x5f\xf6\xe5\xbe\xe3\x89\xce\x9f\x57\x6d\xd7\x3f\xed\x2b\x42\xb5\x77\x87\x3a\x5b\x35\xcb\x0f\x84\xc4\xbc\x21\xb1\x95\x5e\x5d\xe7\x34\xa6\x47\x84\xc6\xed\xa1\xae\x69\x14\xf9\x8b\x86\x46\x46\xcd\x54\xab\x32\x7f\x06\xe8\x93\x7c\xbf\x2d\x8b\x8e\x40\xca\x62\x95\x7f\x57\xe4\x7d\xd1\xae\xcb\xfe\xfb\x07\xf3\x05\x6d\x9e\x0f\x0f\xf2\x4d\x5b\x5e\x7f\xff\xe0\x61\xf7\xe0\x87\x17\x07\x2a\xb6\xad\xea\xb2\xfb\xee\xeb\xe2\x87\x7c\x59\x50\x0e\x8d\xf5\x36\x5f\x94\xd7\xbc\x57\xa8\xad\x9c\x90\xb4\x5e\xf3\x3e\xb9\xed\x37\xdc\x20\x2d\x18\x7d\x74\x39\x6f\xd4\xaf\x32\x9e\x25\xda\xc8\xf3\xd5\xc2\x88\x12\x3a\x84\xe4\x96\x66\xe9\xfc\xf6\xf2\x3f\x5f\x9f\xe4\x17\x44\x99\xd6\x6d\x89\x6f\xfa\x8f\x4a\xfc\x29\xa7\xd1\x5e\x55\xcf\x7e\x9a\x65\x54\xd6\x26\xe4\x59\xd1\x17\x0b\xee\x7b\x58\x24\xce\x94\x3d\x14\xf2\xb0\x93\x98\xd6\x81\xae\x75\x3d\x76\xa7\xee\xcc\xc9\x7d\x48\x75\xe8\xe6\x0d\x75\xbc\xe1\x1d\x4c\xe9\x61\x66\x2f\x64\xce\xa8\xaa\xfc\xd5\x9b\x37\x6f\x9f\xfd\x94\x97\xf5\x9a\x66\x26\xbf\xa9\xfa\x4d\x7e\xe8\xaf\xff\xdf\xf9\xba\xac\xcb\xb6\xd8\xce\x97\x15\x4f\x4a\x4b\x78\x95\xd3\x2c\xc9\x10\x67\x59\xd7\x6d\x89\xc0\xac\xb8\x95\xcb\xcb\xd7\xf9\x39\x7d\x52\x67\xa8\x2c\x77\xa4\xdf\x64\xdd\xdf\xb6\x3c\x51\xa1\xc1\xab\x4d\x99\x03\x67\x01\xd4\x5c\x0f\xe7\x25\x5f\x69\x5f\x67\xf9\x77\x8b\xf6\x07\xd7\xbf\x62\xd1\x35\xdb\x43\xaf\x25\x6f\x36\x65\x8d\x85\x22\x54\x6a\x7b\xa2\x56\x46\xfb\x67\x59\xd9\xb6\x73\xa2\x9b\xfd\x2d\x2f\x8f\xf6\xe5\x58\x2b\x52\x19\xa1\x72\xdd\xf4\xb4\xfc\x39\xca\x49\x15\x55\xfd\xb1\xd8\x56\x2b\x5a\xa4\x38\x91\x69\x59\x24\xae\x1a\x5a\x6f\x2e\x4d\x18\xdd\xdc\x60\x8a\x68\x83\x11\x59\xcf\x1f\xcc\x1e\x80\xce\x3e\x78\xfa\x60\x96\xd5\xcd\x5c\x88\x00\x53\xe4\x55\xd5\x15\x0b\xa2\xce\x72\x5a\xb4\x46\xec\xfe\xca\x78\x27\x5d\x51\x88\x3c\x81\xe0\x35\xe1\x13\x08\x84\x9f\x91\xb2\x20\x32\x0d\x5a\xa2\x54\xc4\x8f\xdd\x48\x4e\xc0\x0b\xa1\x3a\x21\x61\x34\xe6\xcc\x16\xda\xb0\xf2\x74\xbf\xdf\x56\x4b\x69\xfa\x85\xe4\x45\x04\xe5\xf3\x58\x27\xc5\xc3\x01\xc1\x2c\xcf\xa1\x19\xf5\x9a\xa9\x52\x9e\x90\x77\x94\xdf\x94\xb4\xe3\x36\x87\xb5\x9c\x49\xdb\xe6\xb0\xfa\x0a\x87\x83\xad\x5c\x24\xc1\xf9\xbb\x86\x3a\x0c\xac\x0a\x00\xb1\x89\x53\x22\x28\xcc\x02\xb4\xe5\xae\xe9\x79\xe2\xb4\x18\x93\xb9\x9b\x8a\x32\x69\xa4\x5d\xf1\x91\x0e\xb7\xbe\x91\xad\xbc\xa2\xad\xba\xe4\x8a\x67\x19\x91\x95\xb9\x6e\x27\xa2\x3f\xb2\xa5\x2c\x2d\xc5\x5d\x40\xed\x0e\xb4\x0b\x37\x54\x19\x4f\x3c\xf3\x21\x54\xe5\x54\x3f\x31\x24\xaa\x07\xd4\x81\x76\x7c\x43\x67\x26\x2f\xf4\x33\x7c\xe8\x6f\x5f\x3f\xf5\xaa\xb8\xbe\xa6\x5e\x75\xb4\x9b\x5e\xe6\xcb\x6d\x43\x5b\xf1\x97\x77\xaf\x3b\xde\x68\x9b\xf9\xbe\x69\xc1\x7f\x50\xd6\x05\x7d\x86\x34\x37\xd1\x0c\x51\x1f\x76\x0b\xfa\x75\xb3\xa9\x96\x1b\x99\x76\x2e\xc1\xfb\x83\x52\xa9\x89\x43\x47\x4b\x78\x92\xd3\xd6\xa2\x11\xd0\x94\x01\x01\x78\x0c\x86\x75\x0c\x7e\x4d\x38\x76\x68\x69\x3b\x6d\xfa\x7e\x6f\x2d\xbf\xbc\xba\xba\x90\xa6\x43\xea\x5d\x6d\x17\x0e\x33\xb0\x06\x5b\xe6\x88\xea\xbc\xa9\x67\x40\x92\x43\xbb\x1d\xe0\x0f\x8d\xd5\x72\x8e\xcc\x0b\x77\xe1\x6b\xfe\xef\x32\x4e\x0f\xe6\xb9\x23\x5e\xef\x06\xd8\x44\x73\x0c\x2e\x65\x96\x6d\x9b\xf5\xbc\xa5\xd5\x30\x64\x7a\xdd\xac\x05\x81\x92\x8c\xd8\xd2\x33\x43\x09\x9e\x8d\x9b\x96\xb9\x36\x82\x04\xc1\xe2\x45\xa6\x4d\xd2\xec\xb9\x9f\x6e\x97\xbc\xd5\x84\xb8\x35\xd0\x76\xc8\x07\x9f\x44\x99\x20\x4e\xee\x4c\xdf\xd1\xfc\x29\x35\xbf\x3c\xa7\x59\x05\x49\x47\xea\x75\xdb\xec\x28\xf5\x39\xfd\x89\x09\xb1\x8f\xe7\x5c\x1f\x60\x8a\xd5\x8a\x0e\x9b\xee\x24\x7f\xf7\xfc\x2c\xff\xbf\xfe\xf4\xc7\x3f\xce\xf2\x57\x3d\x6f\x6c\xc6\xf5\xff\x62\x1c\x2d\x74\x26\x22\x28\x11\xc0\x9e\xd0\xf8\x01\x6f\xd4\x07\xf9\x77\xc8\xfd\xff\xca\x4f\x05\xf1\x99\xe5\x6c\xd9\xec\x7e\x60\xe2\xbe\x2b\x88\x94\x70\x0e\x61\xbf\x6e\x8b\xcb\xb2\x5e\xd1\x87\x70\x7d\x9a\xe5\x88\x8b\x66\x3b\x1e\x50\x98\xdf\xf9\xb2\xa9\xaf\xab\x96\xc7\xf3\x73\x0d\xdc\x32\xb6\x38\x3f\x93\x1c\x63\xa1\x68\xca\x88\x1e\x55\xd7\xb7\x11\x14\x23\x7d\xc3\x89\x8a\x1e\x99\xe0\xf0\x5c\x49\x7d\x98\xe3\x4b\x41\x6d\xc6\x82\xb7\x34\xba\xd6\xa6\xbb\x8b\xf3\xdd\x5c\x5f\xf3\x89\x6f\x67\x95\xb6\xf0\x56\x52\xe5\xd8\xf2\x20\x84\xda\x7b\x30\xf6\xcf\x74\x4b\x9c\x3d\x7b\x93\x97\x1f\x09\x77\x99\x86\xb6\xcd\xea\xb0\x04\xbe\x32\xec\x09\x93\x7e\x22\x38\x1d\xed\xb4\x65\xa9\xc8\x12\x48\x0e\x77\x8d\xe9\xda\x92\x80\x88\xd2\x18\xe9\x27\x6e\xf4\x23\x9d\x23\xad\x6b\xe2\x85\x25\x69\xef\x47\xb0\xa3\x4e\x85\x12\x3c\xf2\x25\x2d\x38\x21\x85\xf4\xa2\x93\x4e\x49\x36\x6d\x1e\xda\x15\x07\x92\x72\x8a\x15\xf5\x65\x71\x0b\x2a\xd6\x31\x2e\xac\xca\xeb\xe2\xb0\xa5\xd5\xbe\x2e\x69\xfd\x88\x5d\x5e\xcd\xb5\xad\x6d\xd3\x7c\x40\x63\x3a\x55\xcf\x0d\x20\x3f\xd5\x4a\x5f\x03\xe2\x58\xc9\xd0\x59\x2d\x1f\xc0\x42\xa7\xb4\x05\xda\x69\x7c\xbc\xc7\xfc\x66\x4f\xd3\xac\x93\xa9\x2b\x9d\xf3\x79\x4b\x39\x35\x51\x90\x85\x0e\x3a\xce\xe5\xe0\x18\xb5\xd9\xb9\x64\xe1\xd0\xe7\x4d\x16\x18\x4d\x2a\x10\xbe\x1b\x96\xa5\x9d\x53\x13\x87\x28\xc7\x2d\x6f\x31\x91\xbe\xec\xe4\x25\x02\x5d\x62\x9c\xf3\x28\xeb\xe8\xc0\x4d\xe4\x49\xf3\x43\xb3\xef\x84\x67\xcc\xc1\x6c\x70\x8d\x56\x01\x33\x59\xd3\x7d\x99\x65\xca\x68\xce\x55\x4c\x9d\x7f\xac\x20\x04\x86\x2d\x26\x55\xaa\xe8\xca\x33\xfc\x67\x06\x60\xe9\xb2\x9b\x2c\x1b\x7a\xf3\x96\x07\xd9\x05\x21\x50\xf0\x84\x87\x8b\x16\x98\xf9\x25\xcc\xfa\x58\xe1\xa0\x53\x24\xc7\xbc\x2c\x98\x3f\xa3\xa6\xa9\xa9\xae\x2c\x51\x03\x95\xff\x9a\xea\x44\x99\x99\x4a\x40\x2a\x94\x18\xd3\xcc\x0c\xcf\xaa\x01\xf7\x84\xd3\x94\x4a\xdb\xb4\x0e\x38\x9b\xbc\xad\xd6\x1b\x3a\x5d\x9a\x9b\x13\x99\x94\x9b\x4d\x53\xf2\x9e\x7f\xf5\xec\xfb\x6f\xa4\x1f\x6b\x3e\x5b\x43\x21\x3e\x95\x8b\x03\x6d\x08\x9a\x31\xdd\x7a\xd2\x85\xc0\xdd\x00\x72\x24\x6b\x09\xd0\x50\xe8\x1d\x31\x53\x81\xd0\x29\x7d\xf3\x79\x4a\xd8\x22\x8c\x94\x36\xc1\x59\x1a\x16\x42\xaa\x82\xd2\x7c\xdd\x40\x50\x33\xc1\x88\xd9\x85\xac\x27\xb1\x6b\xbe\xae\xfa\xf9\x35\x53\x5b\xae\xf8\x39\x57\xc0\xdc\x0b\xe5\xe4\x8f\x28\xeb\x51\x4e\x14\x9b\xa4\xcf\xd5\xb7\xf9\xc3\x8f\xca\x6a\xff\x89\xc9\x28\x6f\xc5\x6a\x8b\x15\x51\xf1\xaf\x2d\x85\x93\x36\xd5\x43\x60\x5b\xbb\xc3\x1e\x87\xbb\x72\xc8\x41\x8c\x5a\x35\x37\x35\x13\x0c\x1c\x17\x44\x1a\xab\x65\x45\x87\xdc\xa2\xaa\x0b\x3a\x1d\xad\x16\x1c\x43\x0f\x09\x25\xde\xbc\xbd\x02\xe0\xba\x59\x1c\xaa\xed\xca\x00\x66\x99\x71\xd1\xc4\x43\xeb\xe2\x7b\x79\xc4\x92\x2a\xe9\xcb\xb2\x69\xf9\xfc\xc5\x68\xac\xe0\x11\x5e\x90\x0f\x6f\x61\xde\x2b\x16\x04\x01\x8b\x72\x81\x6d\xe3\x69\xa0\xd5\x5f\x6e\x94\xa9\x03\xda\x54\x5d\xfd\xa8\x47\x4f\x97\x07\x6a\x8b\x56\x9e\x93\xa9\x60\x97\x3f\xfd\x81\xfe\xcf\x98\x45\x94\x43\x6b\x3d\x9e\x78\xce\xcc\x25\xf3\x20\x5b\x31\xe9\x6a\x82\xe3\x61\xa5\x0d\x83\xdd\x58\x7d\x7f\x0d\x05\xba\x83\x20\x2d\x6b\x89\xb6\xb4\xac\xe5\x57\xf4\xc1\x22\xef\x7a\x8b\x45\x28\x7a\x95\x4b\x1b\x9a\x37\x46\x90\x13\xd9\x33\xd7\x34\x34\x26\xff\x7d\xf1\xa1\x84\x28\x1b\xe7\x7c\x8a\xfb\x39\x3a\x6f\xd9\xaf\xac\x33\x7b\x9f\x1d\x84\x73\x6f\xb6\xab\x20\x5d\x62\x37\x10\x35\x2a\x13\x95\x4f\x84\x09\x88\xde\x91\x84\xb2\xdc\xcc\x83\xc2\x8d\x27\xb2\x2f\x3f\x81\xc7\x41\x56\xd4\xbf\xf1\x2e\xe1\xac\x6c\x77\x8b\x25\xe6\x81\x9f\xdf\xc6\x15\x66\x85\x44\xb7\x69\x6e\xa0\xbd\x0a\x10\x97\x94\x02\xbd\x55\xc2\xdf\xb3\xd6\x6b\xd9\x6c\x09\xdf\x1b\x5e\x95\x8f\x11\xfe\xcc\xa7\xa6\x95\x53\xbb\x24\x8c\x68\xb3\xa9\xb6\x86\xb2\x44\x41\xa4\xb9\xa2\x20\xea\x32\x50\x4a\xd5\x2c\x82\xa0\x12\xbe\xa8\x5e\x64\x46\x0b\x0f\xb5\x8b\xb5\xfc\xaa\x16\xce\xdb\xf7\x93\xe6\x58\xb5\x8e\xef\x33\x83\x4b\xfa\x24\xe4\x56\x26\x9d\xd5\x3e\x45\x0b\xec\xbd\xc4\x07\x95\x26\x82\xb6\x79\xef\xf4\x7e\x73\xc3\x2d\xd3\xff\x41\x37\xa5\x34\x2d\xf2\x60\x9b\x72\xcf\xec\xda\xae\x03\x52\x6e\x59\x41\x72\xab\xe2\x4b\x40\xcf\x1f\xe5\xb4\x20\x7c\x25\x1a\xfb\x55\xd6\x35\xbc\xdd\xe7\x5f\x58\xc5\x4f\x15\x21\x22\xca\xa7\x27\xad\x28\x24\x49\xca\xe0\xc1\xd0\x1e\xbf\x3d\x49\x05\xdb\x0d\x89\xef\x8b\x92\x4e\x7d\x2d\xb6\x9a\x99\x62\x82\x11\x88\xc4\x69\xec\x58\x28\x51\xb1\xc7\xa4\x64\x33\x62\x01\xb8\x87\x42\x64\xb5\x95\xc0\x6c\x82\x95\xf4\x1c\xe7\x44\x9b\x34\x61\xbb\x92\xa5\x97\xf9\x4e\x94\x97\xf2\x2b\x3f\x2f\x33\x3a\x8b\xd7\xd8\x47\x82\xe8\xdf\xb3\xd2\x6a\x0d\x21\x4f\x31\x9f\x01\xca\xde\x9f\x02\x0a\x61\x29\x3f\x9a\xb2\x98\xe8\xd2\x0d\x94\x88\xcc\x09\x0d\xa7\x9f\xce\x4b\xca\x9e\xd9\xa9\x22\x0c\x0a\x78\xe3\x8e\x68\x55\x9c\xc4\xd3\x9c\xb5\xbe\x1e\x4a\xf9\xfc\x30\x2a\x86\x67\x92\xf5\xdd\xe2\x87\x87\xdd\x77\x5f\x2f\x7e\x08\x84\x7d\xb9\x29\x97\x1f\x04\x39\xab\x7a\xd1\x7c\x82\x5a\x01\xea\xad\x92\x6a\xa5\xcd\xfa\x70\x95\x6f\x28\x17\x52\x2d\x11\x22\x2a\x46\xf3\xce\xb9\xc9\x9a\x51\x5f\x98\x5e\xcd\x44\x9d\x58\x0a\xf6\x47\x7c\x84\x5e\x91\x31\x12\xa7\x8f\xa1\x24\x15\xda\x54\x0b\x3a\xd3\x88\x34\x41\x12\x7e\x8d\xbf\x17\x9a\x5c\xae\x06\x10\x8e\x51\x68\x03\x21\x65\x2d\x5c\x28\xc0\x9d\x04\x68\x1c\x9f\xa2\x4c\x44\x17\x5e\x59\xcc\xdf\xb6\xda\x55\xfd\x08\x15\x99\xac\x16\x8a\xd2\xaa\xfe\xb4\xb5\xc1\x18\xe2\xec\xd2\xe1\x44\xd5\x10\x2f\x61\xe8\x79\x53\x90\xf8\xfc\xa7\x9c\xda\x38\xf4\x2c\x21\xb2\x52\xaa\xa7\xd3\xa9\x60\x66\x84\x44\xe7\xa2\x9b\x1f\x6a\x5d\x26\x62\x90\x15\x39\x5f\x56\x38\x33\xb9\x5d\xdb\x42\x0e\x2a\x95\xd8\xf2\xc7\x61\x05\x9f\xcc\x54\x11\x8a\x52\x7c\x8e\x71\x7f\x2a\x16\x2f\x8a\x29\x5c\x20\x8a\x5d\x97\x32\x43\x18\x3f\x83\x31\xda\x90\xd0\x1c\x27\x8b\x24\xef\x0f\xcc\x57\xf3\xfa\x2e\x0e\x7d\xdf\xb0\xf0\xb8\x65\x1c\x94\x32\xd6\xe7\x33\x00\x42\xbc\x8e\xf5\xdd\xca\xb2\xa4\xb3\xa4\xf2\x2f\xb8\x90\x0e\x74\x44\x4c\x19\x2c\xc4\xa7\x43\xd3\x53\x3f\x40\xad\x44\xeb\x58\xd4\xb7\x51\xa1\x85\x3e\x70\x73\xfd\x74\x4f\x1e\xb7\xe5\x93\xd8\x97\xb0\xff\x50\x42\xfb\x23\xa5\xdd\xd6\x7c\x87\x4c\x51\x99\xdb\x06\xb6\x33\x73\xa9\xba\xcc\x80\x1a\x6d\x3a\xb5\xc8\xe7\x5d\x46\x94\x9c\xb8\xe8\x15\x66\x99\x06\x81\xd2\xb3\x41\x5b\x51\x68\x1f\x4f\x5f\x9f\xf6\x38\x1e\xab\x7d\xd3\xcc\xe9\xe4\x83\xbe\xc5\xba\x97\x6f\xcb\x7a\x9d\x28\x2a\x61\xfe\x02\xbe\xfd\xdf\xac\x5c\xac\xe7\x90\x30\xdd\x06\x7c\xd3\xd4\x4f\x91\x16\x44\x14\x2b\xad\xaa\x6d\x6b\x90\xab\x69\x9b\xc3\x7a\xa3\x5a\xaa\xec\x57\x9e\xb5\xf7\x99\xae\x6b\xe9\xea\x54\xac\xb7\x1c\x5b\x7f\xd9\xdb\x01\xde\x18\xdd\x3f\x97\x2d\x8b\xf3\x00\x4a\x16\xfe\xd8\x8a\xa4\x13\x12\x48\x7a\xe4\x8c\xde\x79\x02\xa4\xc9\xd7\x87\xed\x49\x7e\x23\x2c\x53\x2c\x13\x54\x09\xca\x4c\x31\x8a\x8b\xdd\x8f\x86\xd7\xac\x0a\x1a\xdf\x2d\xac\x19\x7f\xa5\x63\xb7\x86\x05\xa9\xc9\x28\x43\x0a\x9d\xe3\x83\x40\x59\x17\xf2\x3e\xe3\xe3\xf8\xcd\x40\x22\xe0\x73\x5b\xd3\x1c\x57\x8a\xac\x9f\xbd\x85\x2c\x8c\xf9\x62\x42\x78\x78\x57\x46\x43\x19\xbe\xc2\xe0\x2f\x2f\x5f\x5e\x99\x72\xe3\xf2\x65\xfe\xa1\xd4\xba\x5f\xf6\xfd\xbe\xfb\x05\x6a\x33\xd1\x81\xb1\xc2\xec\xa2\xb8\x65\x4e\x5d\x92\xf5\x07\x32\xae\xca\x62\xa7\x9d\xe4\x4f\xa9\xe2\x94\x98\x08\x4d\xe4\x4f\xe2\x3c\x9c\x3a\x36\x03\xcf\xfa\x73\x22\xaa\xc8\x2e\xca\x88\xb5\xf8\xa9\x2d\xea\xa5\x15\x66\x56\x63\x81\x04\x29\x79\x46\xa2\x48\xd5\x5f\x1e\x48\x20\x81\x51\x4f\x7e\xd3\x32\x21\x41\xb3\xcf\x69\x2a\xc4\x8c\xa9\xd9\x3b\x49\xd0\xec\xb3\x4d\xc3\xd2\x7e\xc8\x5d\xe2\x77\x76\xd5\x96\xa5\xb6\xfa\xdc\x6c\x07\x19\x18\x48\xe1\x7d\xe4\x2b\x0b\xa2\x6d\xa9\xd6\xbd\xdf\x46\x5a\xee\xdf\xb2\x62\xbb\x27\xe9\x9b\x59\x54\x07\x06\x85\xee\x42\x85\xf0\x1c\x20\xd8\xd8\x87\x1d\xe1\xf0\x12\x8a\x12\x2a\xf0\xf8\xe9\xfc\x89\x53\xf0\xa7\x95\xad\x88\xde\xfd\xae\x0a\xf9\x5b\x76\x65\xac\xb7\xab\xfe\x6e\xa3\x48\xaa\xe3\x74\x3a\x3b\x08\x02\x92\x46\x84\x0a\x40\x38\xfd\x58\xea\xe8\x59\xbf\x4b\x09\x24\xd9\x24\x55\xef\x8a\x4f\xf7\x15\xdc\x35\x13\xe5\x84\xaa\xc7\x42\x46\xbc\x75\x88\xc9\x06\x27\x70\x56\xe0\x1e\x05\x26\xdc\x24\x90\xaa\x5e\x6e\x0f\xab\xa3\x1d\xe9\x0e\x0b\xda\xeb\x2c\x31\x3d\x7a\xd8\x3d\xe2\x2a\xeb\x0f\xc4\x1c\xd5\x01\xfe\x17\xf9\x9d\xe3\xf7\xb7\x66\x64\x9e\x53\xb5\x22\x46\xe6\xc1\xdc\x4c\x3c\xde\x8a\xcf\x4b\x88\x83\xb3\x48\x6a\xbd\x88\x18\xf6\x27\x74\x69\x2a\xc2\x07\x12\xc5\x0a\x34\x48\xcb\x84\x85\xb3\x68\x18\x9f\x33\xaf\x35\x67\xd1\xab\xf6\xb2\x12\x9f\x0f\xc6\x51\x80\x1b\x03\xc4\x4c\xcc\x16\xe3\x72\x03\x02\x72\xb4\x38\x71\x94\x13\xa5\xdf\x8e\x4d\x2a\x47\xca\xf7\x44\x03\x26\x2a\x08\xa4\xe1\x68\x41\x59\x7b\x14\x3a\x74\x90\x88\x13\xda\x36\x2e\xc7\x50\xb3\x38\x4b\x61\xc2\xfd\xda\x78\xc9\x32\xcc\x73\xaa\x08\x60\xa5\x1a\xa1\x5f\x0b\x07\x05\xa7\x0e\x50\xf5\x8c\x1e\x47\x3b\x96\x7c\xbb\x03\x1f\xad\x2c\x25\x0b\xa7\x9a\xce\x28\x33\x4d\xa8\xaa\x44\x13\xc7\xab\x27\x7c\xe2\xd3\xe3\xbe\xfa\x01\xf6\x85\x55\x7b\xed\xd1\xb8\x62\xad\x3c\x00\x1d\xab\x36\xa8\x36\xca\x4f\x15\x8c\x07\x2f\xaa\x8f\xa5\x2a\x37\x82\x4e\x07\x79\xb3\x6c\x4b\xfb\x9f\x85\x5c\x19\x95\x88\x34\xcd\x47\xde\x51\xdc\x1e\xe7\x4a\x39\x31\x26\xe8\xa0\x18\x49\x54\x4d\x02\x8b\x66\xb9\x3a\x61\xeb\x6a\x0f\xde\x05\x1b\xb4\xd8\xde\x14\xb7\x1d\x54\x7e\x46\x64\xd8\x0e\x23\xc5\x99\x82\x10\xff\xb6\x46\xaf\xbc\xb5\x8f\x76\x8d\xcd\x04\x9b\xad\xf8\x44\x0b\x6c\xd6\x0d\x14\x1d\xa0\x10\xaa\x44\xfc\xe8\x78\x07\x3d\x00\x59\x49\xc3\xda\x09\x16\xf7\x24\xdb\x55\x04\xf3\xbb\x12\xfb\x89\xb2\x27\xcc\xdb\x52\x33\xcc\x6b\x12\x09\x96\xb9\xae\x20\x4a\xa0\x4b\x4e\xeb\x75\xa0\xfa\x9f\x8a\x8c\x54\xd1\x1c\xb2\xc8\x1d\x15\x41\x7c\x60\xd2\xaa\x98\xb5\x4a\xd2\x45\x7d\xd2\xf5\xd5\x76\xcb\x33\x6d\x2e\x29\x89\xcc\x82\x5c\xec\x13\x4c\x53\xb7\xa9\xf6\x79\x03\x9b\x85\x9f\xc2\x88\xb6\x4e\x3a\x60\xbb\x5c\x09\x19\x8c\x6d\x37\x74\xe0\x76\xd7\x25\x8c\x38\xbb\xfc\x9a\xdd\x26\x66\xda\x34\x0b\x1b\xe2\x82\x72\xa4\x65\x11\x67\xd1\xb4\x3f\x20\xb0\x76\x6e\xa1\xd2\xa6\xc5\x48\x08\x4b\x01\xfa\x80\x59\x8d\x35\x75\xd6\x07\x46\xb3\xd1\x14\x80\xe7\x4f\x4c\xbe\x93\xf3\x70\x9d\x68\x49\xa4\x7d\x60\xda\x3d\xe3\xce\xc4\xc5\x63\x2e\x5c\x48\xb2\x2b\xae\x90\x63\xfc\xc9\x70\x63\x64\xbf\x32\xde\xbf\xcf\x84\x13\x9e\x07\x4b\xcc\x99\x70\xc6\xc2\xd6\x22\x31\xfb\xaf\x86\x0e\x5a\x98\x15\xfe\x9d\xbe\x60\x83\xc8\x12\xdb\xf2\x40\x85\xa3\xce\x35\x8c\x93\x17\x84\x4a\x74\xd6\xab\x87\xcd\x6d\x76\xdd\x60\x3f\x41\xc3\xf3\xdc\xbe\x33\xf6\x5f\x68\x81\x5c\x97\xfa\x95\xa8\x8c\xa4\x90\xe8\x13\x9f\xdb\xb7\xa6\x86\x24\xda\x16\x21\xe5\x17\xfd\xcc\x58\x27\xb1\x9b\x81\xfe\x32\xbf\x0d\x33\x94\xa3\xba\x7c\xa8\x32\xfe\x5b\xde\xcc\xc1\x13\x7f\x45\x94\xa7\x16\x19\x4e\x88\x80\x2f\xaa\xd9\xa1\x8a\xe0\xfd\xc0\xb5\x64\xbf\x9a\xe7\xd1\xfb\x2c\xfa\x27\x99\x6b\xd2\x94\x0a\x3d\x4c\xbf\x18\x96\x32\xdd\xd5\x9d\xf2\xbe\xff\x41\x9f\xaa\x8f\x02\xc5\xc0\x87\x2a\x14\xe0\x87\x60\xc6\x63\xb8\x33\xb9\x9f\x99\xea\xf7\x52\xe5\x9e\xe2\xd4\xf7\xf9\x33\xf9\x30\xd5\xc4\xa1\xc2\x18\x2b\x92\x10\xf6\x58\x38\xe7\x5d\xa5\x2b\x19\x06\xa1\xce\x75\x5e\x39\x31\x92\x6c\xa5\x12\x70\x13\x66\x0b\xc4\xd9\xc9\x66\x1d\x27\xe1\xb2\x62\x1e\xa2\x6f\xed\xec\x9c\x6c\xbd\x63\x71\x9d\xc0\x6e\xca\x85\x19\xbf\xf6\x65\xab\xe3\xdc\x15\x24\x84\x7e\xac\x8a\xa0\x16\x73\x3c\x4d\x38\x74\x4d\xaf\x95\xc8\x82\x90\x32\x44\xcd\x68\x2c\x8d\x2d\x30\x6b\x7b\x04\xff\xa9\xd6\x4a\x6c\x4f\x35\xd8\x1d\x76\x8e\xb2\x33\xf1\x39\x3b\x85\xc1\xcb\x63\xec\xd6\xc8\x4d\xa8\x0d\xee\xb5\x7e\x66\x87\x3d\x1b\xb5\xdc\x5c\xfe\x82\x84\x30\x97\x69\xbe\x93\xf5\x30\xab\x56\x2c\xa8\xb5\x04\x7c\xe5\x84\x3f\xb6\xec\xe8\x3e\x9e\x70\x57\xd4\x2d\xbd\x1a\x82\x44\x25\x10\x68\x94\x0e\x1c\x0b\x25\x8e\x06\x98\x5a\x3a\xe7\x72\xd6\x38\x6f\xab\xfa\x43\xa7\x2b\xc5\xf3\xe4\xe5\x5e\x28\xeb\x08\xdf\x0f\xa5\x4a\x22\xfc\x39\x76\x8e\x53\xa3\xa8\x9a\x48\x17\xb7\xa6\xcd\x10\x23\xaa\xa2\x3e\x9b\x66\x21\x6c\x1d\xb7\xc6\x0e\xcd\xb0\x66\x85\x35\xeb\x22\x8c\xc0\x91\xa2\xd1\x3c\xe4\x67\x62\x18\xd6\xdd\x45\x22\x55\xd3\xa9\xf6\x38\xd2\x3d\x4e\x83\x72\x48\xc9\x9e\x2e\x4b\xac\x47\x56\xed\xd4\x0c\xd4\xd8\xe1\xba\x97\xe6\x6a\x4a\x89\xd0\xba\xb5\xce\xd4\xc4\x72\x6a\x75\x8a\x01\xda\xc6\x04\xea\x32\xaf\x76\x22\x0f\xfe\x62\xe6\x69\x2c\x78\x10\x18\x90\x3d\x4b\xfb\x33\xc4\x12\x6d\xd7\x0c\x2c\xf7\x20\x8b\xa1\x82\xb7\xd8\xc9\xf2\x07\x8a\xd4\x6c\x13\x76\xcd\xc6\x11\xf2\x79\xf2\x5c\xfe\x1b\xd8\x56\x83\xda\x82\xf7\xd8\x7c\x00\xa2\x92\x7e\x02\x39\xc9\x15\x5b\x5b\x47\x39\xe2\x41\xef\x47\x3b\xc6\xca\xdd\xb0\x4b\x9c\x1b\xb8\xe2\xf8\x6a\x66\x6e\x66\xac\x69\x16\x43\x2d\xfc\x81\xc4\x27\xaa\x86\x95\x57\xaa\x70\x44\x45\x1b\xfd\x57\x49\x4a\xac\x59\x44\x8a\x2e\x48\x12\xa7\x42\x38\xd9\x2e\x23\xce\xb4\x21\x5f\xfd\x69\x13\xfa\x5a\x9a\x93\x8d\xa7\xc0\xfb\xb6\x82\xe6\x21\xa5\xc4\x23\xda\x9b\xd0\x59\x90\xd9\x06\x2e\x23\x91\xbc\xd2\xb8\xb5\x2a\x3e\xb7\xf0\x65\x29\x41\xb7\x45\x3b\x80\xb9\x62\x4d\xb6\x8d\x60\xb9\x82\xff\xa1\x8f\xf4\x43\xa8\xa2\x8c\xf5\x99\x26\x0c\xf2\x6d\x30\x92\x6d\x0b\x32\x31\x1a\xf6\x70\xfb\x58\x86\x83\xa3\xaa\xc5\x63\x27\xd8\x63\x13\xea\x94\x3f\x03\xb9\x22\x74\x10\x7b\x80\x11\xab\x1f\x87\xad\x47\x3c\xfa\x39\xb5\x24\xc8\xd8\xd2\x5d\xf4\x55\x46\x3d\x02\x8e\x47\xab\xf6\x0a\xc8\x93\x2a\xfa\x18\xca\x43\x88\x2a\x29\xa4\xce\x13\x3b\x47\x27\xda\x9c\xcf\xb7\x6d\x30\xff\xf1\xdf\x60\xd6\x48\x9a\x8a\x66\x8d\xd0\xc9\xc1\x0e\x1b\x8d\x72\xbc\xd5\x28\x03\xac\x90\xe2\xb2\x63\x68\x14\x9b\x03\x5f\xc3\xad\x88\x04\xc3\xd3\x43\x49\xe0\x7e\x14\x13\x70\x34\xb1\xeb\x1b\xfc\xe6\xe0\x2c\x2b\xe2\x4c\x37\xd2\x99\xa7\x6b\x7e\x0a\x79\x8d\x26\x45\x60\xc1\x19\x12\x33\xc1\x9c\xbe\xed\x75\xe2\xa2\x69\x1e\xc4\x67\x22\xf8\x30\x8e\x2c\x96\x27\x2a\x24\x6d\xaa\xf5\x86\xc6\x55\xed\xd8\x55\x00\x98\x64\xf6\xe8\x28\xc3\xf2\x2f\x22\x51\xcd\xba\x66\x25\x15\xb7\x20\x4e\x8b\x41\x07\xfe\x5d\xd7\xb7\x4d\xbd\xfe\xe1\x59\xc3\xc2\x25\xeb\x6e\xf8\x70\xfd\xf1\xbb\xaf\x35\x9d\xc8\x30\x2f\x21\x7b\xb8\xbe\xa8\xfa\x97\x87\xc5\xa3\x2e\x5f\xb3\xab\x36\xec\x58\x85\x73\xe0\x56\x27\x11\xf1\x28\xbd\xa9\xc3\xb4\xc0\x9d\x9b\xf6\x78\xd7\x6c\x69\x83\xa4\x45\x9a\xdd\x4e\x96\x97\x08\xd8\x4e\x20\xd1\x7f\xf8\x95\x94\x35\x66\xae\x6c\x75\x7e\xa8\xc2\x59\x40\xf1\xb8\x3e\xba\x6c\xc6\xa1\x26\x1a\x11\xe5\x11\x19\x78\xa9\x9a\xc9\x78\x10\x41\x1d\x62\xa5\xc0\x7f\x8c\x4b\x61\x1d\x59\xbf\x34\xd6\xc5\x40\x6c\xe1\x2a\xac\x38\x95\xa4\x7e\x08\x1f\xc6\x69\xcb\x91\x2e\x54\x11\xcb\x21\x2f\x9f\x3d\xa6\x4b\x06\xe7\x1e\xba\x07\x74\x1d\xec\x6f\xa5\x68\x32\x76\xa5\x67\x36\x00\x47\xd1\x74\x46\x22\x4d\x1b\xc2\x24\x54\xad\x14\x9a\x66\xbd\xf0\xd4\x4c\x5c\xe8\x84\xa2\x09\x42\x92\x6c\xc5\xf4\xfa\x33\xa9\xd9\xa8\xdd\x38\x70\x6b\xee\x33\x28\x1a\xc6\x74\x8a\xe9\xa0\xb1\x40\x7f\xa2\x0b\xf5\x5a\xb5\x25\xc8\x60\x67\xee\x28\xe7\xbd\x69\xd4\x30\x98\x5b\x22\xd6\x84\x04\xbb\xbe\x4c\xb6\x32\x77\x02\xee\xb7\xe2\x5c\x05\x05\xcc\xff\x93\xaf\x0a\xa2\x03\x7d\xf3\x81\x50\x69\x5c\x04\xe9\xc7\x0a\x05\xfa\x62\xc2\x91\x52\x97\xd3\x48\x1c\x86\xe2\x92\xda\xf5\x8f\x12\x18\x47\x57\xb4\xd6\xe0\xe0\x26\xda\x23\x5c\x89\x60\x37\xa0\x95\xd0\x11\x25\x03\xea\xc5\x15\xf6\x3f\x71\x6c\x35\x03\x41\x20\xe5\x0f\xfd\xed\x97\x25\xa9\xdf\x6d\x16\xa2\xde\x87\xda\x91\x4f\x41\x87\xb9\x4c\x45\x18\xe4\x05\x31\x1c\xf0\xbb\x3d\x95\x0a\xaf\x38\xbb\x53\x27\x76\x75\x8f\xb0\x22\x2f\x34\x11\x7b\x00\x80\x32\xe1\x5d\x98\x08\xfc\x8a\x8a\x0f\xab\x45\x1d\x6f\xd4\xa5\x16\x6b\x40\x58\x67\x04\x73\x23\x8e\x38\xf9\xe9\xc5\x2b\x3a\x30\x42\x83\x56\xe9\xcf\xc5\x72\xa3\x0b\x78\x23\x5a\x0f\xb8\xeb\x6c\xb7\x43\x8a\x1b\x24\x09\x29\x6e\x77\x0d\x50\x12\x5b\x3c\x0c\x6a\x34\x20\x19\x4c\x9a\x2f\x73\x5c\x76\x4e\x13\x24\xad\xa1\x27\xc3\xb3\x2a\x0c\xf5\x2b\x9a\xd9\xa0\x8f\xe4\xad\xb5\xbf\x65\xea\xef\x1c\xef\x0a\x99\xa1\x1b\xd0\xef\x81\xc7\x1f\x41\xc2\xe8\x9d\xf3\x16\x6e\x03\xfd\xb0\x0e\x2b\x05\xf1\x4b\xe9\xc9\xc8\xe4\x62\x46\xa2\x32\x59\x6c\x8a\xb2\xec\xad\x9e\x74\xcc\xf7\xd1\x19\x46\xfc\xa8\x38\xb8\x83\xca\xf8\x51\x39\x54\xbe\x98\x6c\x36\x60\xb4\x34\x3d\xa0\x37\xb9\x1c\x83\xe2\x38\x02\x27\x58\x11\xb1\x04\x23\x9c\x4b\x3c\xd5\x72\x53\x6e\xb7\xb4\x1f\xb4\xf5\x68\x8f\xd5\xa1\x27\x2e\x16\x0a\xe4\xe4\xdb\x32\xf2\xb6\x32\x15\x5e\x95\x67\x95\x11\x04\x6d\x37\x78\x37\x88\xf2\xc1\x4e\xeb\xb3\xd3\x37\x6f\xde\x5e\xc5\x43\x9a\xf7\x41\xbd\x22\x56\xe2\xab\xe0\xfb\x38\xea\x97\x79\x40\x86\x05\x4c\x21\xa2\x0f\xa6\x96\x38\x06\xe7\xc9\x94\xf3\xfe\x58\x37\xa0\x3d\x0d\xf7\xc5\x68\x79\xd2\xff\xd5\xb1\xf5\xcb\x7e\x65\xee\xe6\x7d\x66\x0a\xf1\xb7\xfc\x37\xf3\x36\x05\x67\x8b\xc1\xd6\x8b\x26\x9b\x78\xd3\x84\x3a\xd0\xac\x46\x36\x06\x10\xe9\x43\x01\x51\x8b\xe6\xbe\xc1\x59\x71\x9d\xc3\x94\x7f\xc2\x2a\xd3\xa6\xc5\x86\xe1\xc9\x3d\xd4\xd5\xdf\x0e\x60\xcf\x60\x81\x9f\x65\xec\x52\xbb\xa8\xb6\x72\xa0\xfc\x39\xfc\x90\x74\xfe\x1a\xdc\x86\x70\x8d\xd3\xaf\xef\xba\x3d\x7b\x24\xd3\xd9\xd0\x7d\xff\xe0\x50\xe5\xac\x45\x64\xe7\xba\x07\x3f\x90\xfc\xc2\x36\x79\x5a\x3e\x82\xf8\x61\x54\x1d\x5f\x78\x5c\x8a\xf2\x31\x78\xcb\x00\x6f\x35\x9d\x77\x0b\xf3\xbb\x89\xc6\x53\x26\xfe\x77\xb4\xc9\xb7\x2b\xe3\x38\x1e\xab\xd4\x4d\x73\x84\xbd\xfb\xb1\xd8\x1e\x52\x15\x0c\xb7\xce\x65\xba\x27\x19\xae\x7a\xc4\xb2\xf0\x9e\xc2\x7d\x5d\xce\x20\x6c\xf8\x11\x93\xd6\xdf\x7d\xef\x8f\x6f\xf6\x32\xe3\xf7\x55\x86\x9e\xa8\x92\x7a\x78\xd1\x13\x79\x76\x07\x83\xf3\x70\x11\x03\xa9\x13\xab\xe1\xee\x6c\x15\xdb\x5e\x14\xd4\xb9\x5b\x4d\x26\x2d\x18\x84\x57\xec\xde\xaa\x29\x30\x50\xb0\x6e\xd9\x56\xb8\x47\x22\xe9\x7c\xdb\x37\x77\x37\x7d\x91\xb8\xae\x7a\x12\xd6\xd9\x1b\x32\x34\x7e\x49\xc8\x4f\xf3\x34\x0b\x59\xb9\xdd\x1d\xee\x32\xa2\x1f\x74\xa4\xe1\xc2\xb0\x7c\x59\xca\xa8\x38\x9f\xfe\x02\x0b\x8d\x1c\xb3\x9c\xba\x15\xf8\x43\x7f\x4f\x94\x52\x40\x6b\x92\x4d\x25\xcd\xbc\xaa\x2b\xa6\x00\xaf\xe8\x0f\x9d\xee\x22\x09\xa4\xf8\x2a\x7c\x2e\x2a\x51\x6d\x8f\x88\xe1\xa1\x1e\xf5\x6f\xd4\xe5\x51\xc7\x46\xb7\x40\x7a\x67\x41\xd5\xfe\x98\x3f\x24\xe4\xe2\x9e\xa0\xd7\x84\x89\x02\x1e\x6a\x51\x3d\xd3\xdf\x24\xd1\xe6\xdd\x31\x34\x72\x6b\xec\x69\xdf\x16\xcb\x0f\x4c\x5c\x08\x67\xca\x96\xa4\x02\x38\x75\x15\x7c\xfe\xe5\x84\x68\x6b\x9a\x00\xb1\x30\xa8\xc7\x94\x14\xb3\xca\x2b\x96\x20\x3e\x0a\x27\x26\x17\x8c\x5f\x59\xca\x63\x16\x3d\x9f\x18\xa0\x09\x8e\x01\x4e\xd5\x1f\x83\x7c\xeb\xa7\x9a\x0b\xd5\x5e\x4e\x1b\x92\x4f\x11\xd6\x4f\xc0\x7a\x47\xd3\xb5\x62\x9b\x54\xb1\xed\x72\x95\x77\xcd\x0c\x9f\xdd\xb0\x71\x5b\x2c\x0e\x7f\xd1\x4f\x18\x1c\xd6\xc5\xdf\x25\xf5\x32\xfc\x00\x86\x77\x8a\xf3\x9d\x5a\x0f\x68\xee\x97\x1b\x75\x9b\x6b\xae\xe7\x72\xf1\x10\x27\xf6\x55\xb0\x82\x32\xb9\x00\x1c\xad\xe6\xae\xf8\x54\xed\x0e\xbb\x3c\x00\xa2\x28\x6f\x82\x87\xa9\x5d\x63\x36\x6d\x9d\x18\x5a\xc2\xbf\xdc\x48\x31\xac\xe1\x6e\x5b\x05\xfb\xc7\xcd\xd9\xc4\x67\x34\x25\xf1\x88\xc9\xf4\x0a\xb9\x5d\xc5\x0d\x77\xc8\xe5\x2e\xae\xcf\x3d\x4e\x9e\x4d\x01\x55\xa4\x14\x13\x6e\xd1\x0b\xa2\x78\x0f\x7e\x90\x45\x37\x72\x69\xb5\x2a\xfa\x9f\xeb\x2d\x76\x87\xff\x0a\x31\x13\x9a\x18\x71\xe9\x0c\xd7\xe1\x22\x2a\x4d\x40\x25\x27\xaa\x72\xb5\x85\xbb\x52\xf7\xf5\x8b\x57\x57\xb8\x50\x47\x38\x29\xda\x3d\xbd\x35\xc8\x1e\x37\xb3\x50\x27\x1f\xb6\x55\xd7\x09\x13\x56\x57\x98\x78\x26\x84\x13\xfa\x3f\x51\x19\x68\x65\x29\x06\x58\x6d\xd1\x5d\x9d\x3d\xd8\xd4\x57\xfd\x95\x24\x6a\x41\x4e\x84\x2e\x22\xb5\xe4\x99\xf3\x5d\xe1\xef\x72\x5a\xb5\xc1\x68\x1b\x97\xcd\xdb\x6b\x75\xab\x29\xa1\xd7\x80\x00\xcd\x75\x26\xb4\xda\xd2\x95\x72\x5f\x87\x23\x00\x77\xf1\xf8\x46\x4e\x4a\xfb\x11\x38\xa0\xf0\xeb\xee\xbd\x4a\x69\xa3\x30\xb7\xb4\xbf\x9d\xb3\x25\x01\x0c\xd2\xfe\x36\x26\x38\x4e\x92\x32\x68\x3a\x1d\x70\xf0\x76\xb9\xc0\x2a\xff\xef\xff\xf9\xbf\x9e\x9e\xf1\xb0\xcf\xfa\x76\x4b\x5f\xca\xa8\x33\xbc\x2c\x83\x54\x90\xbf\xfd\x0f\x12\xb8\x6e\xd4\xb5\xe5\x17\xf9\xca\xec\x37\x48\x01\xe5\x77\xaa\xdb\xc7\x47\xa6\xbf\x98\x22\x64\x1a\x07\x81\x49\x41\xc6\xd2\xae\xa2\x0d\x49\xba\xfe\xac\xfa\xdb\xa1\x5a\x7e\x98\x8b\x8a\xe6\xfb\xfc\x3f\xf9\x57\x8e\xbb\xf5\x7a\x5c\x33\xe5\x0f\x64\x1c\xc8\x39\x38\x0b\xbc\x2b\x3b\xce\x38\xbd\xce\x12\xc9\x7e\x91\xb2\x1f\xb7\x46\x78\x0d\x90\x2f\xec\x65\xfb\x03\x3b\x73\x31\x42\x58\x6b\x17\x94\x82\xcb\x8f\x9c\x28\xf4\x3c\xd4\x80\x95\x1d\xd5\x81\xe6\xa9\xbb\x72\x17\x76\x92\xcb\x42\x96\x73\x33\xde\xf1\xb5\x34\x1a\xb2\x4a\x3c\x99\xba\x8e\x9e\xf1\x5d\xc2\x70\x36\xe9\x99\xd4\xb7\x25\x64\x3a\xfa\x93\xd1\x91\xc7\x2e\x8a\x6a\xb5\xe6\xfb\xe0\x7d\x01\xf3\x2e\xd2\xcd\x66\xcd\x46\xef\x62\xad\x15\x41\x98\xfb\x49\x3f\x33\x4a\xe7\xdf\x57\xf4\x67\x14\x96\x81\x83\x38\x8c\x83\x37\x6c\x8b\x45\x89\xe4\xd7\xf8\x20\xe4\xa7\x53\xb7\xa7\x15\x91\x33\xc8\x7e\x64\x4b\xb8\xdd\x09\x22\xe2\x2b\xd3\x7b\x43\x62\xe7\x96\xcf\x0c\x96\xba\xb6\x60\x6b\xf3\xbb\xe2\x46\x7e\xd2\x74\x69\x30\x8f\x97\xf2\x25\xc9\xb8\x32\x21\xa0\xb8\x31\x11\xe0\xc1\xaf\xeb\x6e\xb8\xb0\x6f\xc9\x62\x07\xd8\x2d\x33\x71\xb6\x0c\x66\x11\xa2\x8c\x5c\x32\x84\x05\xe5\xfb\x21\xf5\x38\x10\x85\xfc\x9e\xc3\xbe\x4e\xa9\xf2\x33\xc3\x26\xb2\x30\x1f\x62\x8a\x64\x6d\x80\x1a\x21\xd9\xf6\x34\x17\x5e\xc4\x4c\x51\xc2\x9a\x50\x97\xea\x95\x15\x78\xce\x1a\x0d\x94\x90\x89\x52\xbb\x48\x9c\x2f\xb5\x24\x75\x81\x47\x51\xb8\x5d\x70\x7b\x64\x35\x22\x21\xa6\x5d\x23\x26\x0c\xed\xf9\xea\xec\x2a\x5f\xc5\x8d\xc5\xf7\x59\xa0\x7b\xd2\xd2\xac\xe1\xa7\xa2\x0f\x09\x05\x57\xe2\xf3\x1e\x66\xe5\x61\x17\x64\x52\xde\x6c\xda\x4f\x2f\x12\xa3\xbb\x5c\x2e\x81\xf8\x99\x12\x86\xf9\x3e\x0b\xa9\x66\xde\x53\x31\xcf\x0d\x42\xd5\xbd\x41\xef\x6b\x92\xd6\x6a\xd0\xf0\x8f\xb1\x8e\xc1\x3c\xfc\x05\x97\xab\x0b\x26\xdf\xac\x48\x60\xa5\xaf\x5c\xca\x97\x1a\x1e\xdb\x04\x3d\x11\x9c\xe0\x0e\xf2\xc5\x41\xa2\x45\xc2\x87\xc9\x7e\xef\x72\x17\x51\xe2\x56\x4f\x20\x85\x1d\xf2\x6c\x81\x3b\x72\xf4\x47\x62\xe4\x08\x95\x8e\x35\x9e\x4a\x7d\x8b\x5b\xe5\xfd\x98\x8f\x48\x54\xb1\xc1\x0f\x89\x18\x5e\xb5\x4c\x9a\x75\xbb\x36\xa5\x88\x8a\xf3\x61\x2a\x4e\xc4\x4f\x31\x6f\x96\x30\x97\xf2\xad\x40\x89\xca\xb0\x52\xe3\x66\x6e\x56\x56\xf4\x0a\x2c\x8e\x1c\x2e\xf3\x45\x19\xc8\xd2\x73\xcd\x1a\x3a\xb6\x66\xe1\x00\x64\x22\x56\x58\x77\xde\xd6\x2a\x5f\x95\xe1\x84\x64\x09\x4e\x27\xc2\xae\x81\xd9\xd8\x0a\xdd\x69\xf5\x88\x4e\x87\x1e\xa1\xf2\xd0\x96\x9b\x7d\x74\x4a\xbc\xbe\xb8\x46\x47\x7a\x23\xf4\x78\xfe\xd9\xcb\x87\x87\x47\x8c\x44\xa0\x98\x7f\x35\xef\x9f\x05\xbc\xb6\x0b\x23\x88\x34\xa7\x30\x36\x34\x70\x0b\x60\xf9\x3a\xb7\xed\x67\x11\x1d\x80\xb5\x56\x27\xae\xef\xb7\xbe\x42\x28\xe0\xe4\x56\x7f\xd4\xc0\x7d\x56\x9d\xba\x10\xd8\x26\x72\x05\x32\x10\x8b\x33\x59\x08\xce\xb2\xdb\x91\x46\x38\x74\xce\x34\xae\xd4\x55\xc3\x7c\x79\x9c\x8e\x13\xb9\xa2\x0f\xde\x92\xb5\x67\x44\x5a\xf6\x38\xe3\xbf\x9e\x31\xac\xe9\xab\x7c\x81\x75\x23\xdd\x22\xdc\x2c\xd7\x95\x44\xc2\xd1\xe5\xbd\xae\xca\xed\xca\x55\xc2\x27\x13\x31\x94\x1c\x0f\x05\x7c\x8b\x84\xb6\xc1\x08\xfc\x94\xe0\xa0\xc7\x38\x35\xf6\x8d\x6e\x9e\xcc\x4e\xa7\xe1\xde\x90\x43\x68\xb8\x1d\xdc\x39\x1e\xd6\x31\x9c\xe0\x0f\x45\x91\x8f\x56\x84\x0e\x48\xbc\x06\x09\xdc\x92\xf3\x89\x65\xf7\x6e\x44\x8b\x1a\xaa\xa8\x83\x8b\xb9\x11\x5c\x99\x8c\xed\x2d\xef\x3c\xd0\xb3\xd8\x9c\xd4\x6c\x00\x36\x51\xd4\xb8\x80\xcc\xac\x93\xc3\x0e\x6a\x03\xc6\xf0\x31\xa7\xe7\xce\x83\xf4\x38\x80\x91\x00\xcb\xcb\x1d\xa0\xb6\x94\xa2\x5b\x80\x08\xe7\xa2\x08\xd2\x90\x1e\x2b\x8e\x36\xc4\x03\xe6\x04\x9b\x25\x21\x0d\x62\x7a\xea\x0e\x8b\xd8\x80\xfc\x50\x16\x97\x8e\x07\x20\x16\xae\x5c\xd9\x59\xa6\xbe\xa8\x2d\x6a\x0d\x71\xc0\xd8\x29\x50\xa6\x8e\x9d\x49\x3a\x12\x21\x51\x6c\x8e\xc9\xa7\x14\xa3\x95\x38\x5d\x58\x92\x0b\xc0\x39\x80\x63\x88\x1d\xbe\x98\x24\xc0\x7c\x29\x87\xb6\x17\x91\x46\x3d\xff\x24\x00\x04\x6d\x2d\xe8\xca\xd5\xcd\x20\x03\x1e\x32\xcd\xd6\xa5\x83\x7a\x78\x7e\x03\x17\x41\x12\x29\xb0\x0f\x69\x0d\xd9\x19\x25\x1e\xa3\x17\x5a\x48\xe4\x35\xd1\x28\xcb\x2d\x73\x2b\x92\xa3\x88\x6d\xd3\x99\x70\xca\xc2\x52\x70\x28\x0f\x9a\xf6\xe5\xb6\xda\x5b\xbc\x37\x66\xb4\x5d\xbc\x21\x66\x97\x2d\x97\x3b\x08\xf6\x24\x69\x1d\xf7\xdc\xed\x14\xa7\xd3\x46\x33\xb9\x5e\x66\x37\x84\xe2\xd1\x3e\x11\x51\xc7\x53\x0b\xce\x66\xef\x12\x61\x9c\x66\x63\x56\xca\x72\x06\xf7\x3a\x75\xca\x63\xfe\xb5\xd8\x4d\x98\xd9\x08\x69\x05\xe4\xd2\xdc\xae\x6c\x84\xf4\x78\xa0\xea\xcd\x8a\x90\xa3\x47\xca\x33\x68\x54\x34\xcd\x2e\xec\xbe\xe5\xbf\x21\x95\x76\x99\x2a\xd5\xe8\x6f\xb8\xd0\x2a\x61\xe5\x98\x45\x02\x67\xe9\x92\x67\x43\x6e\xd2\x65\xf1\xf9\xcc\x89\x22\x2c\x20\xdf\x67\x2f\x89\x83\x6c\xe7\xa1\xfc\x19\xff\xcc\xb7\xa3\x5a\x02\x7b\xea\xb9\xd3\x41\x33\x1e\x86\x9a\x9a\x04\x93\xe6\x3c\xa4\xb4\xb8\x9b\x02\xe6\xb0\x13\x09\xec\x5b\x8e\x43\xe1\x98\xe3\xa4\x62\x56\xef\x0e\x6a\x86\xc6\x77\x1a\x9e\x44\x7e\x8e\xa9\x00\xde\x49\x3f\xc7\xfd\x74\x40\xd2\xcd\x62\x02\x94\x4d\x8f\x11\x8e\x06\x3e\x04\x52\xdb\x78\x20\x6f\xc3\xd5\x8b\xeb\x43\x4b\x3b\x5c\x20\xc9\x9c\xef\xb7\x74\x70\x84\xeb\xdd\x00\x02\x17\xc4\x64\x25\x69\x26\x54\xa6\x8d\x25\xf5\x61\x42\xfb\x62\xc1\xc4\x65\x85\xd9\x0c\x85\x79\xae\x62\x96\x4c\x9d\x65\xaa\x78\x64\x35\x27\x55\xfa\x3c\xe6\x05\x45\x8d\x28\x13\x11\x54\x8a\xdb\x89\x12\x77\x62\xd4\x10\xe6\x68\xcd\x23\xbc\xd1\x92\x77\x2c\x6f\x84\xe0\xb0\x6a\xc7\xab\x3e\x52\x4e\x35\x4f\xd0\x37\x8d\x73\x66\x1c\x38\x20\x48\x80\x1c\x01\x4b\x7e\x4c\x82\x76\x1a\xea\x91\x28\x19\x13\xf5\xd0\xd5\x95\xda\x21\xa7\x0a\xc9\x2a\xaf\xd8\x5f\x51\xca\xc8\x3a\x23\x86\xcc\x91\x22\x3b\xd6\x45\x42\x27\xaf\x45\xce\x43\xc2\x44\x91\x4e\x23\x5a\x71\x48\xa9\x71\xce\x0c\xaa\xec\x5e\x69\x53\x37\x09\xc2\x58\x0a\x90\xb7\xf8\x98\x02\x11\xeb\x7c\xe0\xb2\xdf\xe9\x2d\x5e\xf3\x0f\x9c\x6c\x98\x5d\xe3\x43\x89\xd7\x70\x94\x6f\x3f\xa3\x1c\x5f\x9d\x62\xba\x2a\xce\x18\xe7\x0d\xee\x33\xe1\xe7\x1d\xed\xc4\x02\xd2\xd0\xa8\x04\xef\x24\xac\x02\x8b\xb0\xf8\xce\x1f\xfe\xfa\xcd\xfb\x8e\x97\x21\x7a\xb9\xfc\xfa\xc7\xf7\xdd\x83\x1f\x1e\xfe\xfa\xa7\xf7\x70\x6f\x19\x15\x9e\x5f\x33\xab\x3b\xae\x01\x05\x0d\x1a\x87\x62\x73\x08\xa7\x21\x7d\x46\xfa\xf0\x49\x96\xe2\x53\x9f\x6e\xf1\x10\x09\x6b\xb0\xc3\x57\x21\x2b\xdd\xe1\xf5\x61\x37\xd7\x31\x76\x42\x01\xec\x57\x28\x6e\x33\x30\x2f\xb8\xc9\xdf\xc2\xef\x38\xdc\x3f\xb0\x45\xe7\x21\x46\xfa\x9b\x15\x73\xc2\x26\xfb\xa3\xc6\xd8\x53\x9f\x25\xb0\x6a\xb1\x1f\x43\x37\x1b\xe7\x57\x23\xa7\x3e\x14\xc8\xc1\xbf\xe7\xb6\xec\x67\x29\x49\xc3\x0f\x1b\x6f\x9a\x65\x9d\x0a\x20\xba\xe8\xb8\x6e\xe6\xc1\xdb\x12\xb3\x6a\x70\xef\xf0\x73\x90\x79\x57\x65\x6d\x52\x40\xe9\x74\x44\x31\x05\x1d\x2c\x94\x4e\xb3\x9c\x61\x34\xc7\xd5\x8a\x11\x8a\x10\xe4\x41\x98\x6e\xfc\xfa\x01\xc8\x92\x4c\xba\xb4\x17\xea\xb0\x9f\x5f\x58\x8b\x32\x89\x04\x15\xea\x51\x0b\x8c\xaa\x3b\x64\xa8\x7a\x55\x49\xc5\x88\x2f\x6b\x62\xdf\x68\x64\xde\x0b\x7c\xc4\x96\x2d\x46\x08\x18\xac\x33\xf7\x33\xa0\x79\x62\x2e\xd6\x44\x8b\x9f\x64\x97\x4e\x55\x47\x9a\x78\x9d\x69\x4c\x0d\x78\x9b\x11\xb6\xf1\x65\x12\xc3\xb5\x9a\x43\xe4\xe8\xcd\x28\xad\x51\x85\x33\x56\xc0\x84\xce\x0d\x74\x5b\xd6\x36\x4b\xb2\x44\x36\xe9\x8f\x25\xc9\x99\x68\x1b\x2e\x9e\xd9\x69\x3e\x0d\xb6\x89\x67\x3a\x7e\x0d\x01\xc4\x84\xff\x70\x35\xe0\xcb\x24\x3b\xa2\xa6\xee\x5c\x04\xeb\x4a\x4f\x1d\x81\x9c\x18\x8c\x64\x0c\x2e\x60\xa4\x99\xe1\x0a\xb6\x74\x10\x17\xb1\x2d\xf8\xdb\xb8\x16\xbd\x6b\x00\xd0\xe0\x43\x30\x09\x36\xed\x5c\x2b\x3c\x86\x77\x0f\xa9\xa0\x26\x8a\x0e\xb5\xec\x1e\xe9\x3c\x46\xb4\xee\xe3\x0e\x22\xd3\x8d\x47\xfd\xbe\xf4\xf5\x1e\x4f\x34\x47\x26\xf7\x24\x79\x55\xcb\x6a\x5f\x04\x52\x79\xe1\x52\x0c\xb2\xe8\xfb\x62\xb9\xe1\x6d\xed\x99\xae\xdf\x24\xe8\x80\x3a\xe8\x30\x3e\x62\x38\x90\xaa\x09\xe2\xb7\x89\xd2\x21\xe8\x93\x2f\x1d\x12\xb9\x8a\xdf\x32\x51\x31\x3b\xf9\xc0\xab\x9a\x35\x93\x1d\x20\x48\x42\x4a\xf5\xa3\x9c\x12\x44\xab\x49\x38\x5b\x25\x03\xee\x6f\x9a\x3c\x28\xc0\x11\xb2\x9a\x4f\xb0\x54\x65\x00\xdd\x42\x90\x06\xd3\x6a\x11\x63\xea\x7b\xdc\x9f\x19\x36\xa8\x2d\x7c\x9f\xeb\x97\xe6\x27\xba\xf9\x7c\xa0\x93\xb7\x91\x37\x6c\xb2\x3c\x6c\xb1\x22\x70\xfe\x93\x1f\xd7\xe2\xb6\x66\x40\x88\x1b\x0c\x79\x34\xb4\xe5\x0e\x11\x89\x2a\xac\xae\xc8\x9c\xbb\x28\x97\x05\xc7\xc1\x43\x9f\x79\xac\x1b\x8e\x63\x1c\x47\xcf\xba\x99\x8f\x7c\x19\x57\xea\x67\xc1\xde\x07\x6c\xe6\x15\x0b\xd5\x47\x85\x5e\x32\x53\x8b\xb2\xbf\xc1\xad\x5e\xf8\x06\xf3\xe4\x8a\xaf\x44\xf7\xad\xe7\x22\x88\x7a\x7e\x8d\x36\xbe\x66\x56\x62\xa5\x94\xf4\x0f\xf8\x21\xf4\x54\xa7\x72\x20\x68\x4c\xa0\x01\xa8\x91\x2d\xea\x0d\x70\x98\x35\x6e\x25\xab\xf0\xb9\xa1\x95\xc9\xbe\x42\xd7\xbf\x63\x0b\x8a\x11\x6e\x7c\x13\xc2\xb2\xef\xaf\xa6\xff\x29\xa4\x6b\xfd\xa8\x49\xb9\x0c\x6b\x46\xd2\xfe\xb5\xea\xa9\xf4\xbf\xbd\x37\x1c\xa5\xad\x32\xf7\xe4\x1a\xf8\x19\x7f\x26\x50\x43\x91\x3f\xe6\x99\x12\xe8\x39\xfe\xaa\x92\x44\xf3\xf5\x50\x27\x54\x91\xa9\x09\x16\x7f\xc9\x50\xd7\x36\xbf\x92\xd4\xeb\x7d\xd9\x32\x99\xd2\xd9\x0c\x1e\x5e\xb3\x64\x6a\xc0\x7e\xb7\xb1\x25\xc6\x9a\x90\x73\x35\xaa\x36\xd0\x25\x85\x49\xc9\x92\x54\xc1\xd1\x8f\x69\x7f\x98\x5f\x1f\xfd\x0a\x1e\x3c\xd3\x75\x29\xec\xea\x10\xaf\xb2\xf2\x2c\x52\x21\x28\x1f\x1d\xb5\xb5\xbe\x57\xdd\x1c\xde\xfc\xa2\x98\xba\x52\x17\x7d\x22\x47\x7d\x1e\xd2\xa9\x39\xb9\x4b\x2a\xf1\x38\xd7\x12\xdd\x34\x84\x00\xbf\xa6\xdf\x1b\xc4\x1e\x64\x80\xeb\x92\xa3\x86\x81\xc3\x0c\x24\xa2\xa8\xe7\x70\x58\xc1\x50\x13\xbb\x78\x32\x0c\x35\x92\xeb\x84\x0c\x22\x0a\x86\xaa\xe0\x83\xf0\x79\xb5\x89\xeb\xe4\x54\x7d\x81\x04\xf4\x41\xc3\x64\xe3\xee\x8e\xb7\x35\x0c\xe5\x2d\xf8\xb0\x2b\x6a\x71\x45\xab\xf8\x16\x36\xcb\xf1\x12\x76\x06\x8e\xf1\xfd\x66\xa2\x66\xa9\x6d\x40\x52\x80\x3c\x53\x3b\x1b\x08\x7b\xa8\x75\x03\xa2\x54\x50\x11\xff\xa6\x76\xf1\x47\x7d\x40\x52\x45\xe4\xe8\x87\x98\x0e\xd5\x93\xac\x5a\x58\x8a\x64\xda\x1e\xff\xe1\xe1\xea\x89\x6c\x62\x38\xc8\x8f\xbc\x89\x38\x51\x06\xee\x0f\x6f\xa6\xa2\x55\x87\x20\x4d\x8c\x32\x7c\x50\x30\x10\xab\x30\x7f\xcb\x9c\x0d\xd4\x9d\x65\x51\x37\xe0\xb2\x27\x14\x19\x2e\x77\x5a\x99\x31\x04\x58\x45\x15\xd1\xc3\x2e\x69\xbb\x99\xd3\xd6\x98\xab\xa4\x49\xc7\x09\x6f\x14\x98\x81\x06\x3d\x30\x09\x6b\x58\x73\x10\x37\xd2\x01\xb1\xfe\x98\x8f\x10\x09\x3f\x24\x24\xda\x99\x7d\x09\x1d\xf4\x62\xb6\xaa\x8d\x95\x19\x48\xaa\x1f\x50\xf8\xc9\xc9\x31\x8e\x13\xe1\x6a\x7c\xc6\x84\x73\x9b\xcf\x8d\x63\x7e\x46\x03\x66\x35\xa5\x37\xfa\x25\x83\x2c\xe5\x92\x22\xff\xf5\x19\x21\xb4\xa4\x56\x35\x97\x95\xd7\x1a\x51\xb9\xa6\xc4\x50\x87\x27\xc1\xb4\xf4\xe8\x96\xfe\x3d\xdd\xed\x9e\xae\x56\x8f\x26\x46\xed\x78\xb6\x30\xec\xc1\xb5\x09\x55\x8e\x0c\xa8\xa4\xab\xc9\xb1\xc0\xd3\x73\x07\x7b\x92\x5f\x27\xbe\xae\x59\xf0\x39\xcd\x4c\x87\xb3\x08\x0b\xee\xc6\xd5\xeb\x98\xfe\x37\x44\xed\xa2\x33\x36\x6f\x68\xb9\x67\xe2\xc7\x32\x10\x1f\x5c\xd6\x20\xd8\xd1\x9d\x1d\x0c\xde\x29\xca\xce\x11\xed\xde\x1d\x99\x14\x09\xb1\x7e\x74\x4a\x1c\xdb\x1e\xa7\x35\xb0\xee\x13\x80\xd3\x8c\x7b\x6c\xfd\xbf\x93\x79\x9f\x6a\x7e\x0a\x0d\xee\x61\xdf\xb3\x9b\xea\x43\x45\x05\xfe\x42\x7f\xf0\x3d\xd3\xf0\x54\x79\x0c\x47\x45\xed\x72\xf6\x57\x49\xbe\x8d\x95\x73\xe0\xef\xc0\x36\x5a\x56\xc5\xe6\x12\xd7\x5c\x9c\xef\x0f\x5b\x76\x59\xf9\x20\xa7\x69\xb3\x3c\x40\xae\xbf\xd5\xdb\xd2\xff\x85\xab\xcb\x0d\x31\x75\x1b\x0d\x88\x0d\x96\xb9\xea\x15\xa9\x66\xd2\xa0\xe2\x38\xe2\x28\xcc\xf5\xed\x19\xdd\xe4\x62\x4c\xa4\x74\x9c\x9e\x02\xee\x5f\xa7\x41\x82\xb2\xc9\x9a\xae\x4c\x72\x84\x97\xcb\xaf\xbe\xd6\x37\x1a\x7e\x58\xf2\x8f\x7a\x47\x1c\xf3\x0a\x50\x4d\x5c\x24\x10\x3a\x0e\x44\x6b\xd5\x96\x58\x18\x76\x6d\xdc\xef\x40\x81\x72\x44\x8c\x01\x0e\x4c\xe7\x94\xb9\x46\xc1\x53\xd1\x35\x19\x4f\xcc\x1b\x8e\x47\x7c\xee\x13\x10\x75\xc2\x98\x86\xe2\x5b\xa8\xcb\x72\xfe\x8d\x71\x09\xde\x2f\x5f\x4c\xf3\xd4\x37\x61\x4c\x59\xea\x52\xbe\x34\xc4\x1d\xe4\xfd\x5e\xb6\x3d\x82\x0c\x86\x15\x1a\x1b\x6b\x81\x48\xa8\x6a\x70\xb9\x2c\x35\xdf\xba\x3a\x3a\x5d\xe6\xce\x4d\xa2\x5d\xa3\xb6\x4b\x50\xfa\x93\x83\x9f\x4e\xbd\x4c\x63\x69\x33\x59\x2c\x44\x60\x90\xaf\x98\xe5\xa2\xb5\x2a\x43\xed\x7e\x1f\x01\x9b\x89\x77\xba\x46\x25\x3b\x06\x24\x36\x42\xc5\xa4\x63\x40\x78\x22\x46\x1c\x9c\x8f\x81\x90\x28\x57\x5e\x23\xe0\x07\x1b\x6e\xf5\x3b\x02\x6f\x9a\xe6\x83\xc4\xea\x5d\xe0\x33\xe6\xac\xf9\x91\x0e\xc9\xe4\xe7\x28\x5e\xa6\xb9\x24\xdd\x55\x4b\xff\x36\xcf\x4f\x9c\x30\x31\x79\x1a\x5a\xe1\xad\x05\x5e\xbe\x4c\x86\xa3\x4e\x27\xae\x1e\xbd\xa0\x3f\xae\x48\xaf\x6e\x33\xcb\xf4\x79\x81\x0f\xa6\x02\x1e\xa4\x6e\x1b\xb3\x58\x7b\xb1\xfa\xc8\x27\xcb\x2a\x79\xbf\x48\xd3\x26\x3a\xc3\x48\x15\xae\x47\x89\x39\x1c\xc4\xb2\xbb\xed\xfa\x72\xe7\xc6\xc7\xba\x54\xf6\x9d\xe6\x97\x16\x94\x9c\xf2\xd9\xc8\xc1\xa5\x7b\x98\x84\x89\xb4\x26\xd0\xec\x47\x35\x84\xb6\xb4\x01\x78\x02\xaa\x6f\x50\xfc\x6c\xa0\xd8\x32\x1c\x3b\xef\x38\xb8\x0d\xe0\xcf\x49\x18\xf4\x05\xcf\x90\xd8\xe8\xc5\xa4\xc2\x6e\xb4\x78\xa5\x86\x26\xef\x36\x0d\xb4\x49\xcc\xa2\x9b\x43\x39\x97\x06\xd3\x22\xea\x4e\xf8\xa3\x97\xed\x91\x89\x01\xcc\x5c\x61\x06\x33\xb4\xe5\x6b\x5b\x37\x25\x2e\x6f\xdd\x51\x57\x18\xdc\x54\x5d\x61\xfe\x8e\x54\xa0\x09\x98\x93\xc0\x7b\x85\x99\x84\xe1\x31\xbf\xd2\x1a\x79\x36\x9e\x03\x66\x5c\x5e\xda\xee\xfa\x5b\xf1\x3f\x9b\xae\xe0\x4d\xb1\xc3\xcd\x5c\x86\xfa\xf6\xce\x3a\x66\x16\x65\x8f\xc8\xb4\x7c\xdd\x0d\x8e\xe8\x7c\xb1\xcc\xa9\xfb\x79\xd7\x58\x7d\x10\x7b\x96\x12\x59\x9c\xf1\x86\x53\xa1\xde\xff\x60\x37\x8c\x7f\xe6\xff\xe0\xdd\x43\x7f\x2a\x22\x25\x9f\xfe\x69\x6a\x86\x10\xe2\x9f\x77\xe6\xc9\xe8\x46\x91\xc8\x2f\x3c\x09\x28\xe6\x50\x06\x42\xd8\x00\x63\xbc\xc4\xd4\xd9\x35\x45\xda\xe9\x1a\x88\x86\xd9\x9c\xb6\xa2\xd3\x29\xa5\xc4\xab\x02\xde\x74\x7f\x17\xd3\xe8\x33\xfc\xca\xff\x07\xb3\x81\x01\x04\x2f\x9f\x21\x2e\x1a\xab\x0f\x3a\x71\xd9\xd7\xf8\x4e\x12\x34\x44\xf4\xe3\x45\x08\x0b\xdd\xa5\xae\xd0\xe9\xe1\x13\x63\x3b\x4b\xd4\x91\xa2\x96\x00\x0c\x12\x6b\xc6\x91\x63\xd6\xb1\xf4\x41\xdb\xd2\xb3\x53\xd4\xbb\x72\x7d\xd8\x92\x34\xe0\xbc\xe1\x87\x05\x86\xcb\x62\xf5\x28\xdf\x08\x47\x1b\x9e\x1c\x8e\x66\x8c\xba\x1c\x5d\x0b\x7e\xf1\xea\x5a\xd7\xf2\x13\x03\x72\x77\x7b\xd8\x8a\x1c\xe0\x1d\x4e\xf0\xa7\x1a\xe8\x2a\xbd\x65\x97\x34\xec\x66\x43\xfb\x00\xd5\xd3\x54\x2f\xc4\x22\x14\xfa\x20\x97\xed\x26\x7a\x10\xad\x5b\x76\xdd\x4e\xd5\x52\x83\x23\x54\xa0\xe5\x4e\xe8\xe0\x86\x44\x14\x65\x04\xca\x82\x05\x4b\x97\x60\x7b\x4e\x63\xa7\xf8\xed\x20\xf1\xb8\xd8\xa7\x59\x3f\xdf\x5a\x44\xaf\x31\x58\xd0\x88\xc4\x30\x5e\xe9\xa4\xf0\x5c\x28\x1e\x60\x43\xe8\x22\xa5\x21\xe4\x98\xa1\x0f\x8f\x1a\x69\xe8\x64\xf0\x04\xb8\xa3\xda\x4d\x74\x6f\xb0\x4c\x8c\x13\xf2\x0e\x11\x10\x4f\x38\xfb\xea\xda\xe1\x30\x2e\x43\xf3\xe5\xe6\x8f\xd5\xea\x40\x34\x88\x3b\x73\x57\xbd\x7f\x4c\xeb\xa5\x79\xc4\x85\x89\xa3\x75\x0f\x06\x84\x1d\x1e\x1e\xb7\x6b\xa2\xb7\xa6\x44\x47\x9b\x6a\x99\x89\x4f\x30\xf3\xe8\x4e\x42\xa0\xc0\x3c\x86\x0a\xf3\x42\x90\x48\x38\xc0\x0f\x89\x97\x60\x58\xfa\xed\xe8\x58\x56\xbb\xcc\xcf\x2d\xd7\x89\x83\x90\xd5\x7b\x93\x60\xb6\xa0\x6f\xcd\x47\xac\x44\x21\x1c\xbe\xac\x21\x8c\x8a\x9d\xba\xd1\xfb\x9a\xec\x91\x38\xc9\xc0\x4e\xd6\x3f\xb1\xbf\x3c\x8f\xcc\x13\x67\xaf\x55\x21\x52\x13\x37\xcc\xe4\xf4\xe1\x98\xdb\x18\x49\x72\xef\x3c\x69\xb2\x0e\x03\x9d\xb0\x19\x30\x94\x61\xd4\xa0\x48\x30\x07\xf1\xc3\xd0\xb5\x29\x7a\x74\x64\xa2\x6c\x00\x49\xb0\xbf\xdf\x33\x5b\xc7\x27\x2a\x12\xa2\x7b\x2f\xf1\x1e\xaf\xef\x8f\x47\x09\x9b\xbb\x6a\xeb\x45\x16\xa6\x95\xfa\x58\xa2\x29\x84\xfd\x10\xe5\xf6\x1a\xde\x6e\x64\x37\x4d\x9a\xf2\x13\x95\xc8\x4f\x82\xf9\x5f\xa2\x9e\xb9\x5b\xd9\xde\x36\xdb\x1d\xef\x2b\x3c\x5c\x65\x02\x4e\xed\xce\xa8\x71\x65\x10\xb7\xf9\xfc\xdc\xb3\x9f\x3d\xdb\xc8\xaf\x45\xb9\x22\x68\x31\xac\xf4\x28\xa6\xdc\x23\xf4\x1f\x63\xcd\xa7\x2b\x33\xd1\xe8\x9e\x50\x55\xe3\xdd\x6f\x96\x68\xbc\x41\x0a\x6b\x74\x80\x61\x41\x7f\xee\xe8\x32\x6e\xf3\x1b\xc1\x9d\xa8\x6a\xf2\x44\x88\x51\x19\x43\xd7\xac\x40\x7b\xbc\x7b\xe9\x45\xf0\x7c\xe2\x02\xb8\x13\x18\x38\xc6\x7a\x62\x71\x67\xff\x56\x1e\x4f\x62\x79\x3f\x5a\x60\x10\xd1\x24\xa9\x2b\x8d\x68\x32\xc6\x97\x41\xc3\x16\xd6\x64\x2c\x01\x36\xad\x37\x30\xfb\x8e\x4d\x0c\x69\xb2\x58\x62\x03\x90\x17\x8b\x18\x1f\xe3\x9d\x84\x8d\xbc\x25\xe3\xe5\xe0\xe8\x94\x3e\x3c\x1e\x07\x38\x7b\x47\x18\x14\xeb\x94\xa8\xc4\x8e\xcd\xdc\xd9\xe4\xac\x69\x9c\x02\x37\x6f\xe2\xaa\x2a\xef\xe9\xa4\x4e\x81\xea\xbb\x8a\xf3\x71\xe6\x4a\x20\x46\x71\xbc\x91\xc9\x46\xad\xc5\x68\xe2\x93\x90\xc5\xe9\xa5\x4c\xbd\xda\x23\x21\x69\xc0\x48\xfa\xb2\xb3\x44\x7a\x61\x36\x1e\xf1\x6d\xf5\xa1\x0e\x7d\xe3\x78\x18\x73\x54\x73\x6f\x36\x8d\x63\xab\xee\x6f\x80\x11\xef\x46\xc4\x7b\x45\x52\x15\xf6\x07\x5a\x80\xa0\xb5\x53\x55\x00\x0c\x37\xbb\x03\x4d\x0e\xb4\x74\x90\xf8\xf5\xe1\xc4\xb7\x97\x57\x30\xe2\xd2\xa2\x11\xcb\xb2\xe6\x13\x3e\xff\x0b\x89\x88\x78\xc9\x8a\xdf\x2f\x54\xf2\xc9\x7e\xe0\xb8\xa5\x21\xef\xfc\xdc\x94\x16\x40\xa4\x5e\xe9\x79\xe7\xa3\x98\x99\x80\x2e\xc6\xdc\x1c\x8f\x0a\xc2\xd9\x69\x5f\x2e\xab\x6b\xe2\x6a\x5f\xd3\x5a\xd5\xf2\x6c\x8e\xf9\x9f\xdc\x79\x4f\x3e\x8c\x04\x97\xf9\xd8\xe6\xeb\x0f\x69\xc9\xf4\xfb\x43\x4f\xc2\xd1\xf4\x0c\x41\xa7\x22\x76\xd8\x0c\xdf\xa5\xc7\xc5\xa9\x20\x67\x7f\xc5\x87\x4c\xae\x97\xcd\x3e\x67\x1f\x8c\xfa\xe0\xdf\x59\x92\xa6\x3f\x97\xb2\x6b\x55\x33\x3c\xcc\x15\xfa\xc2\xf1\xb3\x3b\x84\xb0\xc0\xef\x7b\xc0\x6d\x0a\x2e\xe5\x39\x0e\x78\xe4\xf1\xf5\x45\x45\x8b\x50\xab\xbd\xf2\x05\x96\xcd\xe6\xa8\x1b\xeb\x53\x26\xdb\x88\x43\x44\xd7\x6e\x86\xe3\x14\xdc\x17\x63\xac\x34\x47\x42\xe3\xa1\xc4\xeb\x91\xbb\xe2\x56\x9e\x92\x62\x9b\x69\x47\xa7\x67\xbd\x0a\x77\x43\x38\x9a\xff\xa6\xb9\x61\x75\xac\xdd\xe5\x19\x2d\xc9\xb8\x6f\xd1\x9a\x68\x26\xc4\x09\x90\x6e\xdf\x48\xb0\x82\x77\xfa\x39\x06\x12\x23\x09\x8f\xea\xa5\x7c\x8d\x41\xf6\xfa\xf6\x41\x78\x05\x61\x0c\xb2\x68\x56\xbc\x66\x3f\xd1\x9f\xb1\xce\x2e\x3c\xe6\x6c\x8a\x3b\xec\xe5\x3d\x5f\x24\x14\x9f\x57\xce\x20\xec\x2c\xb7\xd7\x12\xa5\x98\x05\xcc\xd2\xee\xcb\x81\x63\xd1\xe7\xd4\x38\x3c\x05\x2a\xd0\x79\x42\x7c\x25\x3c\xac\xe2\x6d\xf7\xfa\x64\xa3\x0f\x3d\x38\xec\x93\xdc\x39\xd2\x7e\xbd\x12\xe1\x00\xab\x09\x9b\x96\xbc\xbd\x73\xc2\xc2\x35\x1b\x83\xcc\x31\xd1\x14\x52\x7b\x79\xf7\x86\x83\x3e\x12\x0d\x40\xe4\x6f\x03\x11\xe9\x4a\xae\x95\xb9\xc8\x1b\x91\xa7\xe6\xa8\x6f\x3c\x61\xe3\x1e\x69\xa4\x14\x9e\x20\x89\x91\x32\x82\x88\x6e\x93\x00\xb2\x98\x64\x43\x1e\x49\xc1\xa3\xf6\xf2\x65\x42\x3e\x1c\x01\x4e\x5e\xd9\x46\x47\xf5\x3d\x1b\x51\xb2\x30\x61\x35\x9d\x8a\x73\x91\xe0\xb9\x62\xbd\x93\x23\x86\xfc\x2c\x26\x9d\xbf\xa2\x92\x20\x41\xb7\x68\x35\x8e\x55\x69\x84\x99\xef\xb0\x80\x00\xfb\x50\x99\xc5\xb6\x6b\xac\x0a\xb9\xe6\xf2\x81\x2f\x69\xd0\x7a\x43\x76\x50\xe5\x17\x8b\x71\xd1\x36\xc3\xb4\xf8\xb0\x67\xf2\x2c\xb4\xde\xda\xc1\x90\x1f\xff\xfb\xe5\xdb\x37\x27\xf9\xa7\xa7\x37\x37\x37\x4f\xb9\xf8\xd3\x43\xbb\xe5\x28\x74\x2b\x8e\xb7\xfe\xff\x9f\xbf\x3e\xc9\xcb\x7e\xf9\x64\x96\x9f\x0b\xd5\x8e\xc4\x50\x1d\x12\xe0\x6c\x04\xeb\x3e\x11\x88\xdf\x4f\xcd\x75\xc7\xa8\x16\xd4\xbf\x1d\xe2\x99\x3b\x5e\x3d\x73\x45\xb7\x67\x37\xe0\x92\xee\x18\x85\x65\x5b\xc2\x93\x1b\x1f\x2e\x83\xb8\x86\x0f\x53\x91\x79\x87\x20\x15\xb5\xa3\xdd\x78\xb5\xd4\x97\x80\x07\x20\xe6\xbc\x78\x06\xb7\xc5\xa8\xa0\xe5\x85\x0b\xa7\x30\x6b\x5c\x89\x4a\xb1\x95\x2c\x39\x60\x16\xa5\x2d\x44\xb9\xfa\x71\x58\x18\x37\xc8\xf1\x90\xe5\xf7\xf9\xbf\xe3\x56\xde\xc6\xcc\x2f\x9c\x65\xb8\x05\xe0\xd9\xb0\x30\x9e\x28\x72\xd2\x0f\x0d\x40\x1e\x5e\x32\xe9\x2b\xe6\x05\x09\x6c\x54\x89\x2a\xc3\xd8\x05\x9c\x1f\x45\x31\xe5\x18\x70\x4d\xaa\x1b\x17\x49\xcd\xf3\xd3\xd9\x36\x2f\x72\x6f\xef\x44\xaf\x95\x9b\xed\x7a\x3c\x0f\x89\xfb\x47\xe2\xf8\x71\x07\x68\x08\x54\xe2\x9d\x36\xc4\x0d\xf8\x44\x9c\x9b\x57\x27\xb9\x39\x06\x9f\xa8\x11\xee\xc4\xae\xae\xd0\xd7\xa1\x8e\xdf\xe2\x94\xa9\x02\x91\xfd\x84\x13\x00\xff\xe4\xe8\x8e\xb7\x34\x12\x9a\xc5\xea\xef\x13\x93\x82\xc3\x54\x02\x00\x4c\x2e\xb2\xa3\xf0\x00\x55\x25\xdc\x58\x7c\x17\xd2\x9a\xeb\x4b\x66\xe5\x30\xc3\xbd\x19\x5d\xf6\x08\x55\x3b\x45\x4d\x44\x5b\x15\xf0\x2e\xee\x7f\xa3\xd0\x7a\x7e\x0a\x2b\x2a\x61\xbe\x12\xfa\x07\xe2\x97\x4a\x3c\xd3\xc7\xf9\x6c\x44\x5d\x23\xef\xaa\xd4\x75\xc4\x9f\x29\xe0\xa0\x8d\x11\x5b\xa4\x4b\x31\x16\xa7\x62\x0b\xc7\x38\x40\xb9\x32\x61\x9c\x89\x85\xcb\x47\xac\xc4\x67\x21\x2d\xe5\xa7\x8d\xce\xe0\xe4\x48\x89\x0c\x6e\x45\x82\x12\xf8\x33\x81\x39\xf3\xd4\xe9\x9a\x41\xe0\x72\xcd\x96\x12\x8b\xfd\x31\x0a\x6f\xea\x79\x15\xa9\xd5\x82\xd5\x49\x50\xbd\x41\xe6\xf0\xf1\xf6\x21\x6d\x22\xe6\xbc\x16\x57\x0b\xf9\xf2\xb3\xb5\xdf\x36\xb7\x16\x01\xf6\x19\x7e\x69\x54\x7b\x3f\xb2\x08\xa6\x83\x8a\x90\x53\x75\x45\x66\x1a\x50\xa8\x1d\x32\x25\x2b\xe1\x9f\xca\x63\xc5\x58\x52\xd6\x6a\x53\x9d\x16\x9b\x05\x21\xe3\x61\x5d\x48\xc3\xe5\xc9\x33\xb8\x1a\x48\xd5\x4d\x0d\xa2\x7f\xf8\x01\xfc\xd5\x3d\x40\xa7\x52\x54\xcd\x8a\xa0\xd0\x0d\xaf\xb7\x48\x9c\x83\xa6\x46\x31\x8e\x5c\x1a\xa0\x86\x11\x56\xe3\x48\x8f\x46\x58\xf5\x45\x7d\x98\x55\x57\x14\x27\x7f\x98\x84\x49\x6b\x78\xb2\x2c\xe3\x20\xaa\x71\xa8\x9f\x11\x47\x75\x7a\xe5\x86\xa2\xd3\xbd\x4b\x7d\x97\x33\xcc\xca\x0f\xee\x33\x22\xaa\x0e\x94\x0b\x9f\x23\x45\x4d\xf5\x25\x4e\x8a\x9b\xdd\xfb\x5c\x63\x56\xd5\xf5\xf5\x6c\xd1\x92\x10\xc1\x61\x4b\xf1\xc4\x37\x9f\x4d\xfc\x3b\xbf\xc4\x6f\x01\x61\x97\x68\x60\x85\x7c\x48\xa2\xde\xfa\xf8\x5e\xdd\x7a\x25\x11\xfe\xa8\xc3\x27\x8f\x9f\x51\x8e\xf8\xa6\xbe\x69\x10\x7f\x5e\x72\x66\x52\x04\xef\xca\xf2\x17\x02\xae\x86\x77\x65\x51\xe8\x92\x53\x1c\x58\xb7\xdf\x12\xff\xad\xef\x6b\x5f\xf2\x0f\x04\x32\x71\x10\x87\x9a\x24\xf1\x72\x65\x30\xbf\xc8\x4f\x0f\xc5\x55\x86\xeb\x21\xa6\x82\xe5\x5b\x4f\x7a\x7b\x1a\xc2\x43\x54\xce\x02\x43\x0d\x8e\xc0\x08\xad\x2a\x48\x07\x11\xc4\x07\x68\x7c\xb8\x0a\x8a\xa1\x08\xa1\x13\x0d\x82\xf5\xd3\xab\x37\xf2\x13\xb7\x9d\xf5\xbe\x38\xa2\xb1\x3c\x47\x94\x0f\xce\xd2\xc7\x17\xf6\xb8\xb4\x5d\xca\xf5\xe3\x2d\x07\x8d\xb8\x16\x91\x46\x93\xcd\x6d\x53\xa2\x42\x87\x78\x2c\x52\x07\xc7\x6d\xd9\x11\x2d\x08\xbe\xce\x97\xac\x7a\xd5\xe7\xf0\x4b\x7b\x40\x8b\x63\xb6\x44\xf7\xcf\x86\x03\x30\xd4\x1a\x32\x21\x4c\x88\x69\x29\xb8\xda\xcc\x42\xd0\xcc\xa6\x42\xd1\x58\x9e\x44\x10\x12\x6d\xb9\xec\x52\x05\x09\x10\xab\xb6\xb8\x86\x6f\x20\xff\x0d\xa9\x34\xb0\x58\xec\xa2\x2d\x9f\x0e\x8b\xd1\xe2\x09\x4a\x5d\xe2\x23\xa4\xab\x6f\x1f\xff\x09\x69\xc5\x46\xfc\x4a\xe2\xca\xc4\x15\x33\xdf\x70\xc4\x08\xd0\xbb\xf5\xba\x11\x07\x0d\x62\x17\xc4\x77\x28\xb1\x47\x10\x53\xc8\x8f\xd5\x3b\x0d\x22\x86\x74\xb7\xc9\xc3\xfc\x70\xd8\xad\x5e\xe2\xc3\xee\xdb\x66\x75\xe0\x67\x03\x7c\xbf\x93\xd2\xc2\xbe\x94\x86\x8d\xfc\x98\x2a\x64\x0c\x44\xad\x90\xb0\xfe\xec\x0b\xd3\xd2\x44\xf0\x53\x26\xcc\x8f\x86\x4d\x5e\xed\xa8\xfe\x8f\xf2\x74\xae\x54\x4f\xbc\x65\x88\x5f\x4b\x6c\x66\x2d\x21\x34\x2d\x0f\xfa\x29\x7b\x9c\x27\x29\x13\x1f\xca\x34\xa3\x70\x0c\x20\x42\xf9\xe0\xfb\x96\x3e\x24\x14\x33\xb1\x1c\xcf\x5b\xc6\xee\x3a\x90\x9c\x38\x96\x3a\x3e\x65\x2c\x27\xf5\x17\x72\x68\xa1\xdb\x59\x43\x02\x84\x1c\x96\x8f\x84\xc9\x7f\x2d\x5f\xac\xfd\x1c\x63\xd3\x38\xc2\x32\xe5\x3d\x1d\xae\xb5\x83\x0f\x13\xf0\x97\xf2\x11\xdb\x58\x1a\xe2\x5d\x72\xf1\x7f\x2b\xfa\x04\x53\x4c\x61\xaa\x4b\x4b\xdb\xfe\x29\x8e\xaf\xd8\x8d\xa1\xd7\x67\x68\x4e\x11\x25\xa2\xcc\x08\xdb\xd9\x9f\xce\x76\x0a\x1c\xea\xd2\xed\x02\xec\x89\x1b\x06\x9e\xad\xa3\x8d\x26\xcc\x61\x84\x4a\x0d\x65\x13\xc0\x72\x14\x6a\x56\x54\xb0\x0f\x61\xa6\x4f\x3f\x6b\x67\xe8\x41\x87\x07\x33\x58\x97\x14\x6c\x4e\x84\x32\x77\x9c\x75\xa3\xd6\xbc\xe1\x46\x9a\xb8\xe7\x70\x1b\xee\x81\xd4\x1f\xcf\xd5\xa3\x2c\x08\x53\x50\xdd\x23\x23\x16\x64\x54\x97\xfa\x2f\xbb\x7d\x65\x78\x10\x5e\x9e\xd5\xfe\xeb\x6d\x2d\x1c\xcc\xf6\x9d\x65\xbf\x36\xed\xfa\x7d\x7c\x41\x30\xe8\xf1\x13\x55\x3c\xb4\x39\x0c\x13\x5e\xfc\x39\x02\x18\x5f\x01\x8a\x35\x1a\x02\xbf\xe0\x6d\x9a\x6a\xe0\x19\x40\x74\x69\xf2\xb0\x2d\xfc\x52\x2d\x20\x6e\x08\xcc\x22\x8f\x97\xa9\xc3\xa8\x6f\x4e\x82\xb3\x45\x37\xc4\x5f\xf4\xfe\xb5\xba\x40\x73\x00\x31\xfe\xe0\xf7\xe5\x38\xa6\x08\x2b\xd2\xc5\x9d\xe5\x15\x12\x70\x0e\xb1\x47\x0b\x3f\x6d\x27\x5a\x51\xfa\x9b\x21\x3e\x98\x9a\x0e\x38\x55\xbf\x34\x7d\xf0\xc6\x57\xf2\x26\x97\x8b\x76\x83\xd7\xf2\x12\x2f\x57\xae\x1c\xb3\x32\xe1\xff\x1e\x1e\x60\xd4\x4e\xc8\x14\x22\xf5\x2e\xe8\x24\xda\x2c\x53\x07\xb9\x39\xc1\xeb\x5f\x88\x2f\xb1\x5e\xba\x57\xa4\xc2\x0b\x7e\x75\x72\xc7\xb4\x9b\xc5\x66\x1c\xad\xd9\x88\x73\x7c\x2c\xc6\x4c\x23\xfc\x6e\x7f\x14\xf8\x24\xd2\xa3\x2a\x58\x0a\x89\x16\x2d\xc9\xf9\x96\x24\xdd\x6d\xa2\x71\x41\x45\x2c\x21\xfc\x78\xe4\x0d\xb2\xf1\x8b\x95\x5f\x1e\xe7\x73\x5c\xc7\xdd\x91\x3e\x9d\x7f\xe2\xd8\x2d\xf1\x0e\x4f\xd5\xe9\xb7\xaf\xbc\x5a\x79\xf0\x08\x56\xc8\x9a\x7a\x0d\xeb\xf7\x38\x70\xa6\xa0\x8e\x2c\x25\x53\x10\x6a\xfa\x5c\x93\xb2\xfa\x85\x12\xa6\xfe\x6b\x6e\xa1\xe9\x1b\x8f\xc3\x5e\x8f\x1e\x6c\x4a\x3a\xfd\x65\x0f\x37\x1d\x75\xc1\x48\x68\xc5\x50\x49\x31\x8a\x96\x8e\x01\xde\x59\x24\x8d\x9d\xee\x3b\x1c\x14\xeb\xce\x05\x42\xad\xa6\x12\x35\x5d\x8c\x6b\xf7\x87\x4e\x3f\x62\x3a\xbf\x2b\x86\xfa\xb0\x97\x4c\x63\x42\xe8\x05\xdf\xc9\x3b\x4b\x78\xbe\xa4\x19\x98\x61\x7f\x7f\x5c\xf5\x69\x8b\x28\x2b\x31\x6e\x4c\xfb\x0c\x3e\xc6\xe6\x2f\x6a\xc4\x58\x20\xb5\xf9\x12\x89\x35\x12\xda\x38\x73\xe0\x40\x65\x72\x07\x6f\x8a\x2a\xd5\x9e\xc5\x27\x29\xe7\x49\x2c\xf5\xf3\xf8\xe8\x65\x0c\xab\xfe\x6d\x28\xa6\xce\x91\xf6\x10\xcb\x20\x3d\x52\x4a\xdc\xa2\xd8\x4b\x60\xf3\x08\x24\xbf\xc1\x25\x4e\xe6\x0c\xcb\xa7\x6d\xc8\xdf\x79\xdb\x6c\xcb\xd0\xd1\xfc\x5d\xc3\xee\xad\x06\x92\x06\x1e\x48\x0b\x86\x32\x21\x5d\x05\x7f\x0b\x6c\x1d\xd2\xe5\x0d\x4f\x44\x17\x71\xa9\x7a\x5a\xba\xb5\x12\xce\x5a\x6b\x87\xa0\xf2\xed\x10\xba\x46\x08\x2c\x3d\x57\xdf\xf0\x2b\x93\x38\x54\x67\x88\x6c\x20\x6f\x64\x6a\x4a\xda\xa8\xa4\x31\x8f\xa3\xcf\x79\xe4\xe2\x7e\xaf\x0f\x3e\x8c\xf3\x07\x01\x95\x71\xa6\x84\x50\xca\xf6\x48\x2c\xb3\xe8\x1a\x3f\xa3\x16\xb3\x71\x1a\x61\x58\x6a\x95\x48\x63\xa1\x59\xb9\x63\x92\xb4\xeb\x21\x3e\xa7\x61\xdc\x1f\x18\x36\x77\x62\x2a\x5c\x68\xd6\x54\xb7\x2c\xcf\x20\x49\x2b\xf0\x55\x8c\xfd\x90\xc7\xd5\x93\x7e\x78\x88\xcf\xe9\x07\xb7\x82\xbb\xda\x22\xf2\xdd\xd1\x1f\x8e\x3c\x28\xee\x95\x89\x4b\xd5\xb0\x8b\x31\xd4\xef\x95\x3b\xc9\xe1\x96\xb6\x1a\x70\x26\x6c\xf3\x19\x1f\xa9\x92\x23\x5e\x44\x13\xcc\x83\xb8\x88\x4e\xbe\x84\x72\x3f\x11\xc0\xa5\x78\x2e\x19\x40\x9d\xf3\x67\x04\x9b\x3c\x97\xa4\x5f\x91\xd9\x03\xf7\xa5\xb4\x41\x33\xef\x3f\x92\x05\xce\xe2\xad\x0a\xe7\xe7\x0f\x15\xb0\x7e\xb6\x92\x2b\x40\x44\xd7\x14\xde\x60\xae\xd5\x71\x65\x81\x98\x03\x2a\x10\xf1\x31\x9c\xed\x58\xcf\xb7\x39\x7b\x42\x09\xb3\x89\x0d\xd5\x5c\xf1\x00\xc5\xc6\x7d\xef\xfa\xca\xa1\x21\x1a\x7f\x9f\xb6\xba\xf3\x7e\xdc\xb8\x2b\xf1\x5c\x97\x67\xa8\x03\xc2\x1c\x15\x93\x66\x7e\xab\x8f\x11\x24\xa2\xdd\xba\x45\xbc\x00\x5b\x6b\x26\x16\x0e\x15\x50\xe1\xb7\x61\x94\xac\xb0\x18\x50\x03\x78\xc4\x50\x45\x8f\xee\x22\x0a\x5f\xd0\x01\x90\x8d\xbb\x7b\x00\xb2\x20\x11\x6a\x38\x0e\x67\x24\x01\x77\x75\x44\xf6\xfc\x17\x74\x04\x74\xe3\x33\x3b\x72\x62\xbd\xd0\x07\x65\x57\xab\xc9\xfd\x7f\x57\xff\x06\x82\x10\x90\x33\x79\xf1\xd8\x88\x01\x3c\xc5\x20\xa9\x4d\x7a\x8a\x39\x85\xf3\x6c\x36\xdc\x25\xce\xd5\xcd\xed\x14\xe7\x55\x6b\x7d\x81\x53\x9b\xde\x3e\xd0\x53\x2e\x56\x55\xd3\xba\xe3\xa5\xb4\xba\xf7\x37\x14\xd2\xa0\xec\xec\x68\xdd\xb7\xb7\xca\xe9\x20\x22\x6b\x12\x53\x3e\x06\xf8\x16\x99\x0e\xce\x1d\xf2\xdc\xf4\xaf\x58\xab\xf7\xd9\xaa\xe8\x36\x16\x60\xf2\x99\x7d\x67\xa2\x2b\x13\x03\x37\xde\x1e\x8e\x8f\x0e\xe7\xc3\x47\x88\xef\x7c\x41\x3a\x7d\x63\x7c\xf8\xe8\x78\x27\xcf\xee\xac\x8d\x45\x5c\x1f\xf4\xd6\x9c\x3a\xc3\xf2\x8c\xe3\x36\x15\xab\xbe\x39\x21\xdb\x35\x75\x25\x7e\x77\xe7\xf2\x55\xf1\x0b\xd2\xfe\xea\xe7\x73\xfe\x21\x21\xa7\x35\x85\x6f\xfa\x65\x7d\xd3\xe3\x31\x8b\x2b\xfe\xfb\x6d\xfe\x70\x95\xc5\xa1\x43\xab\xcd\x0a\xba\xa5\xe8\x46\xe5\xdb\xe5\xbb\xe7\x8a\x71\x71\xbd\xb5\xf7\x97\x63\x0d\xe8\x26\x74\xf0\x07\xd7\x6d\xed\x24\x2a\x3d\x74\x53\x2d\xda\x7d\x4e\x78\x83\xb0\xfe\x7f\x61\xda\x99\xef\x16\x50\xba\x2e\x7e\x10\xcd\xe5\x89\x4b\x48\x16\xc4\x67\xec\xc3\x13\x7c\x49\x72\x7a\x94\xc6\x74\x79\x52\x23\x49\xe2\xf8\xa8\x49\x42\xb1\x1c\xb5\x62\x16\x18\x9f\x66\xee\xcf\x31\xc5\x1c\xa1\x93\xda\xd3\x77\xd8\x7c\x96\x78\xfc\x27\x49\x72\xbb\x64\x30\x12\xd1\x0b\xfb\xb4\x6d\xb3\xa6\xa3\x53\x74\xcd\xe9\xf0\x94\x5f\x4f\xeb\xb4\x7b\xd1\x49\x15\x08\x0f\xe5\x53\x60\x0c\xee\x8b\x2e\x2d\x8d\xfd\xe9\x13\x2c\x32\xf6\x10\x30\xc6\x21\x22\xe2\x33\x81\x48\x26\x86\x07\x64\x12\x59\x7c\x0a\xb2\xbb\xa9\xe4\xa9\x83\x4b\x7c\x4c\xc2\xb4\x07\x68\x1d\x0f\xb5\xcb\x65\x37\x03\x8e\x6b\x81\xa7\xea\x1a\x7d\x18\x84\x03\x0f\x84\x67\xe9\xf2\xb7\xd8\x8e\xdd\x9d\x85\xdc\xb9\xc8\xfe\xe8\xfa\x14\x9e\x96\x74\x37\x0d\xa6\x0f\xc8\x58\xb3\x1e\xb5\xea\xe7\x55\x44\xf9\xb0\x8b\x9c\x47\x81\x18\x28\xea\xad\x60\xd9\x9f\x55\xc7\xa0\x97\x11\x22\x54\xf3\xe5\x5d\x05\xfd\x67\x7a\x4f\xbd\x19\x74\x32\xa1\x79\x06\x72\x4f\x0d\x83\x2e\x4e\x56\xf1\xe5\x9d\xc4\x49\x5b\xaf\xe5\xd4\x39\xd2\xc9\x5b\xbc\x65\xd8\xae\x54\x70\xdd\xb2\x53\xed\x0b\x73\xf4\xbb\xa7\xca\x63\xbd\xbe\xb3\xce\x2f\x18\xc6\xba\xea\xe7\xeb\x65\xec\x3e\xbf\xe3\xda\x2e\x98\x70\xf3\xe1\x5e\x2e\x25\xbe\x4e\x9d\x2a\x2d\xa7\x8b\xdf\x35\xc1\xe8\x10\xab\x2b\xa6\xaa\x3f\xd6\xb7\xb6\x64\xf7\x1c\x56\xd4\xf1\xb3\xb7\xea\x32\xf0\xae\x14\x33\xcb\xa3\x19\xa5\x7d\x5d\xe8\x1b\x3b\x25\x8c\xeb\xdd\x23\x89\xcf\xfc\x78\x59\xe0\x6e\xe2\xb7\x74\x14\xd7\x4f\x41\xda\x51\xda\x38\x5b\x9e\xad\x27\x77\x36\x34\x18\x8b\xa3\xeb\x6e\x6e\x5b\x74\xa5\x2f\x3f\x6b\x04\xce\x41\xc6\x0f\x83\x11\x45\x89\x18\x48\x1e\xf1\xd8\xc9\xc4\x3d\x66\x77\x2d\x7e\x99\x97\x7d\xd1\xd4\xc7\x53\x0f\x6d\x0b\xb9\xaf\x96\xce\x23\x03\xf2\xed\xde\xb1\x42\x8f\x92\x5e\x7c\xd9\x18\xf9\x9d\xae\xd1\x46\x78\x87\x64\x7d\xb7\xeb\x77\x6d\x87\xa9\x8a\xff\xd5\xed\xd0\xba\x5e\x8d\x1e\x73\x77\xec\x01\x5e\x2a\xa2\xb9\xeb\x2b\x1c\x13\x97\xf2\x72\xd1\x2f\xf8\xed\xc9\xb5\xbe\x56\xbf\x6e\xda\x86\x30\x4e\x82\x37\xeb\xab\xeb\x2f\x2c\xad\x9b\x28\x00\x8b\xc5\xed\xfc\xa0\xb1\x2a\xac\xcc\x39\x92\x89\xed\xe3\x40\x0f\xb1\x14\x98\x27\x2b\xc3\x7a\xe8\xa5\x5a\x2f\xc0\x4d\x59\xa9\x53\xcb\x70\x25\xb5\x4c\xb3\xe0\x0b\x5f\x1a\xc3\x0b\xc0\x6f\x35\xc5\xc1\xc2\x4e\xc8\x11\x91\x09\x03\x0e\xfb\x39\x0f\x15\x21\x1c\x24\x39\x7f\x8d\xe4\xfc\x8a\x93\xc7\x2d\x58\xaf\x42\xb1\x41\xa7\x8e\x95\xbb\x6e\xcb\x51\x99\xe7\xfc\xc0\xcd\x10\xde\x66\x6e\x53\x16\xfb\xd1\xbc\xbd\xa4\xc4\xd1\xac\x01\x72\x3c\x01\x80\x3d\x3e\x0b\xbe\x54\xb5\x82\x10\xed\x4b\xbc\x5a\x6d\x8f\xb5\x51\xc1\xbb\x68\x08\x5f\x33\x13\x7f\xa4\x84\x72\x53\xc3\x5e\xa9\x6d\x6f\xd4\xab\x66\xc1\x21\x59\x3a\x83\x7e\x2b\x3f\x1d\xd4\xa2\x69\x7a\x92\xe5\x08\x94\xd8\x48\xb8\xca\xca\x34\xfd\x64\xe9\xcc\x08\x2f\x3f\x8c\x66\x4a\xa0\xc7\x53\x25\xd0\xc7\xe7\x6a\xc7\xcf\x8c\x51\x5b\xed\x61\xd9\x1f\x88\xe6\x84\x06\xcf\x2f\xf9\x79\xb2\xcb\x90\x31\x6a\x71\x54\xd2\x63\xe8\xb0\xf0\x54\xcb\x4b\x7e\x24\x6e\xb2\xe9\x33\xce\xb9\xb3\xed\x51\x59\xdf\xf8\xa8\xf8\xd4\x4e\x69\x1b\x22\x2c\x4c\x94\x16\x87\xe5\x87\xb2\xe7\xcb\xec\x9b\x39\x9c\x3a\x7c\x5d\x17\x06\x96\xff\x04\xb0\xfc\x25\x81\xe5\x57\xd0\xb8\x4d\xd4\x4a\xe7\xe8\xae\xec\x0b\x38\x21\xb9\x5a\x5e\x9c\xd1\x0a\x48\xf2\x54\x29\x68\xe2\xe6\x2a\xff\xe8\x2e\x64\x96\xd4\xd5\xf0\x16\xca\x3a\x15\x89\x4e\x03\xc8\x54\x6d\x1c\x97\x59\x0e\xf4\xe5\xed\x52\x1f\x36\xfa\xd4\x73\x1f\xde\x49\x8a\x83\x85\x8c\x47\xb0\x46\x23\xe1\x87\x82\xb0\x2e\x04\x7e\x95\x12\x4a\xa1\x60\x11\x58\x08\x17\xc1\x5d\xb0\xef\xce\x14\xe0\xbe\x90\xcd\x74\x14\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x32\x95\x42\x56\x44\xc0\x96\x7b\x5f\xfa\x32\x34\xe1\x1c\xfc\x1c\x70\xed\xcb\xde\x85\xe6\x34\x85\x65\x0b\xad\xb3\xa8\x44\x23\xad\x3d\x96\xab\x60\x22\x57\x40\x9a\x90\x14\xe3\x84\xf1\x42\x8f\x7d\x5b\x5e\x12\x86\x46\xd2\xe2\x01\x4a\x7f\x35\xcd\xc2\x83\x85\xa0\xe9\x9a\x0e\x77\xf1\xb6\x5c\xb3\xa2\x42\x2e\x92\x23\x0c\x17\x6e\x04\xbd\x43\xb2\x49\x37\xfe\x8e\xd7\x55\x83\x51\xba\x81\xa5\x4e\x89\x36\xcc\xfb\x43\x94\xcd\xb4\x0e\x1f\xa0\x57\x47\x06\xd1\xc5\xbc\xf2\x52\xb5\x83\x79\xe7\x09\xa4\xbc\xca\x27\x86\xcd\xad\x2f\x0d\xb9\xd2\x04\xb5\x41\x0d\xaf\x21\x73\xba\x59\xde\x17\x5d\xc7\xef\xdf\x46\x55\x37\x8c\x05\xac\x72\x91\x8b\x29\x50\xb5\xc3\xed\xf6\x50\x87\x77\x45\x14\x0d\x84\x45\x92\x5d\xed\xa3\xb5\xd9\x9b\xc2\x9a\x73\x9f\x51\x31\xce\x85\xc3\x14\xf8\xb5\xa4\x38\xb2\x2b\x3e\xe9\x13\x75\xf1\x0d\xcc\x73\x7d\xed\xd2\xdd\x9f\x3d\xb3\xdc\xd7\xfc\xf0\xe5\xb1\xb2\xa6\xe3\x7b\x7c\x49\x04\xe6\xe9\x37\x78\x12\x86\xf6\xc3\x7a\xdb\x2c\x0a\x76\x62\x91\xe7\x4c\xf1\x76\xe6\x13\xad\x83\x1f\x5e\x72\x48\x39\x7c\x12\xb9\x18\x20\x29\x8d\x7e\x53\x2d\x68\x50\x22\xe8\x8f\x0b\x18\x80\x5c\x04\x03\x94\x6b\x49\x51\x3c\x29\x84\xb0\x1e\x9c\x21\x18\xca\x4f\x26\x05\xa5\xa5\xe1\x3c\xec\xed\x7c\xaf\x67\xae\x8e\xe1\xa3\x1a\x5c\x19\x28\x97\x65\x4f\x32\xdb\x27\x71\x94\x7c\x3d\xf2\x76\xe4\xdc\x90\xed\xbe\xba\x8e\x3e\x35\x39\x89\x32\x51\xbf\x6f\x18\x23\xa4\xdf\x90\xf3\x4e\xf3\x71\x8a\x1b\x08\x44\xca\x57\xb3\xa3\xd6\xd1\xf5\x54\xc2\x94\x72\x7f\xe3\xe5\x6a\x7e\xcd\x26\x67\x9e\x17\xf1\xfe\x59\xc4\xf2\x57\xe5\x43\x74\x8b\x18\xa0\x9e\xdd\x76\x63\xec\x0c\x3a\x12\x54\x27\xe9\x3b\xc0\xd1\x59\xc4\x87\xe6\x48\xfb\xd1\x46\x8a\xd0\x78\xbe\x79\xaf\x1d\x4b\x3b\x20\x76\xbc\xa6\xf5\xbe\x55\xa9\x72\x33\xe9\xca\x84\xfb\xd4\xe9\xf0\x85\xff\x23\xbe\xc1\x54\xab\xdc\x1f\x1e\x50\xf7\xc4\xb8\x9d\x50\x79\x94\xf0\xd4\x1b\x09\xa9\x9b\x0f\x92\xa2\xe1\xc7\x6c\x3e\xa2\x82\x05\xe1\x1e\xb6\xe7\xb6\x73\xd2\x9a\x94\x18\x3f\x1d\x9e\x76\x41\x52\xc6\xa6\x61\x49\x57\xed\x61\x6e\xef\xf1\xaa\x2a\x78\x06\x15\xa2\x70\x6f\xad\xa5\x0d\x9f\x76\x84\x66\x58\xe9\xec\xa0\xcb\x03\x4a\x9b\x74\x5b\x4a\x49\x88\x53\xbb\x6a\xaf\xc4\x5c\xb3\x5c\xef\x25\xc5\xbf\x3a\x22\x29\x25\x62\x0c\x31\xe5\x91\x68\x43\x2b\x4d\x1f\x3b\x65\xb9\x4e\x6a\x35\x83\xce\xb9\x5a\x01\x35\x7d\x58\xb8\xde\x74\x25\xc9\x11\xfc\xe8\x36\xed\xdc\xbe\x59\x36\x5b\x9c\x96\x92\xc6\x9b\x16\x69\x0a\x3b\xbc\xa5\x21\xa9\xb8\x12\xcd\x57\x4a\xba\x5e\x53\xf6\xf2\xee\xc8\x05\xbf\x3b\x22\x29\xd0\xde\xad\xe0\x2f\xcd\xca\xba\x67\x6f\x7c\xba\x9d\x54\x96\x7b\xa1\xbf\xa7\x60\x9c\x7b\x55\xd1\xf2\xb3\x27\xdf\x6a\x20\x60\xab\x03\xa1\x8b\x9b\x56\xfc\x9c\xf7\x5b\xee\x2f\xbf\x06\x0c\xc3\x1b\x9b\x21\x0e\x08\x02\xba\xa9\xd6\x1b\x78\x1c\x10\x49\x5a\x8b\x0b\x3f\xef\xa2\x99\x4d\x3c\xb3\x41\x1a\xdf\x1c\xec\x8f\x9a\x59\x7e\x62\xef\x4a\x07\x82\x11\x01\x20\x8c\xa8\xe8\x25\x10\x54\x39\x75\x2d\x2f\x0f\xb9\x47\xa1\x87\xcf\x03\x81\x40\x84\x03\x9b\x7b\xcf\x57\xb9\x9e\x56\x88\x5a\xba\xd3\x97\xe9\xe4\x8e\x69\x12\xf0\x6a\x36\x6a\xc1\xfc\xac\x10\x7e\xf2\x9e\xde\x74\x07\xeb\xfa\xe5\xe1\xbe\x9e\x13\x2a\x20\xc8\x1b\xfe\x1e\x05\xeb\x58\x1a\x5c\xe8\xe3\x5b\x25\xeb\x8f\x63\x16\x2f\x95\xe2\x85\x5c\x3e\xf9\x64\x78\x23\xa1\x30\x6d\x92\x25\x14\xa6\xd5\x0c\xd3\x5e\x00\x10\x83\x7f\x02\xb1\xe3\xb3\x76\xde\x15\x4c\x98\xe8\x54\x59\xe5\x97\xa7\x86\xf4\xbb\x7e\x6f\x2f\x53\x5f\x9e\x5f\x5d\xdc\xb1\x8b\x18\x54\x31\x1c\x90\x0e\xcd\x39\x4b\x51\x1d\x59\x0e\xdf\x2d\x40\x83\xec\x18\x55\xce\xc0\xb9\x4e\xb6\x4e\x37\x0d\x77\x17\xaf\xc6\xc8\x4b\xd2\x17\xcd\x19\xbf\x0f\xcf\x97\x82\xa4\xcc\x2c\x3f\x27\x7e\xa6\x62\x5f\x4d\x6b\x4d\xfd\x05\xf9\x11\xd7\x72\x5f\xb4\xf6\xa6\x10\x9e\xe4\xcd\x1f\x9d\x3c\x9a\x25\x74\x67\xde\xe3\xb9\x30\x0d\x74\x76\xf5\xfa\x92\x3e\x97\xed\xad\x38\x23\xe8\x48\x3f\x54\x7b\x06\x9b\xf3\x9d\x32\x61\xa8\x29\x05\xb0\x7f\x46\x8a\x6d\x7c\xb6\x5a\x97\xed\x47\x8e\xbe\xa9\xf8\x73\x71\x7a\x0e\x65\x11\x25\x79\xb2\xa3\x4d\x23\xd4\xb6\xb1\xeb\xb1\x13\xb4\x1c\x4d\xc2\xae\x1b\xe9\xac\xf6\x38\x7b\xe8\x8f\xd5\xe3\xa2\x00\x0f\x79\x6a\xf1\x2c\xb0\x99\x1e\xf1\x77\x29\x74\xc2\xe6\x05\xaa\x3e\x94\x03\xd2\x32\xf7\x5d\x50\x9a\x25\x74\xdc\x1f\xda\x69\x3d\x9f\xe9\xa2\xe7\x2b\x73\x0c\xd6\x5d\xa3\x9e\x8c\xa7\x94\x96\x48\x20\xe7\x72\xb4\xa8\xaf\xc4\xa0\xea\xe0\x35\x31\x2e\xe1\xcd\xea\xe3\x89\x9d\x70\x7d\xbb\xc3\xdd\x4d\x51\x0e\x5c\x57\x15\xee\xa7\x1d\xa9\x5a\xf8\x2f\xc0\x10\x86\xc3\xdf\x42\x8d\x93\x6a\x68\x8e\x2c\x5e\x0c\x19\xc7\x0f\x34\x88\x41\xd9\x45\x46\x13\x5e\x1e\xa7\xaa\xf2\x5c\x6e\x98\x03\x9e\x2b\xed\xc6\x7d\xac\x97\x68\xa7\x4d\x85\x1a\x0c\xcc\xaa\x42\x4d\xed\xcc\x0a\x5b\xec\xf7\xe1\xe8\xde\xef\xb7\xc9\xb9\xed\x40\x3e\x0a\xe9\x73\x10\x7f\xd6\x10\x75\x0e\x48\xae\x7d\x7b\x20\xbe\xfd\xad\x00\xc3\x23\x5d\x93\x9b\xeb\x6b\x7e\xb8\x9b\x5f\x8c\xd1\x40\xa9\xfc\x93\xa3\x59\x87\xf6\x35\x98\xc1\x9c\x75\xba\xd0\x91\xf2\x98\x9e\x69\x84\x83\x77\x48\x64\xa1\xd4\xc0\xdb\x03\x96\x92\xfb\xfb\xee\x50\x8b\xb8\xed\xb2\xb4\x21\xce\xf2\x8d\x80\x83\x6c\x9b\xa6\xb7\x97\xeb\x1d\xfb\xf8\x8e\x92\x89\x57\xe8\x37\x61\x82\xd9\x84\xbd\x94\xe7\x2a\x7d\x19\x18\xd0\x97\x72\xe7\x6a\x54\x88\xfa\x3d\x2e\x41\xfd\x3e\x02\x2e\x6e\x5a\xc6\x7c\x5d\xe2\x97\x1c\x17\xa1\xc7\x88\x6a\x28\xdb\xc2\x06\x2c\x69\x43\xbc\xc1\x1c\x84\x8a\xbb\x8d\x43\x8d\xcb\x97\xd3\x78\xc1\x50\x63\x6e\xd1\x65\xe2\x35\xd1\xb9\xc6\x29\x9d\x0b\xca\x29\xe7\xdb\xe7\x3f\x69\xf8\x52\xc1\x3c\x5f\xec\x08\x1a\x70\x96\x67\xe6\x5c\xf2\x16\xae\x20\x96\xfb\x1a\xbf\x46\x40\xc9\xca\x8d\xa6\x92\x00\xf8\xce\x23\xc2\xab\x28\xd0\x7f\x94\xb7\x12\x56\x65\x02\x70\xcd\xcd\x05\x30\xfa\x95\x3f\x7e\x44\x59\x4f\x25\xeb\xd1\x93\x51\x19\x96\xa6\x77\x87\x9d\x5c\x32\xad\xfe\x5e\xca\xbb\x17\xcc\x0d\x48\x06\x5a\xbb\x64\x6b\xcc\x19\x67\xdc\x55\xb4\x9b\x28\xd5\x85\xb5\x5b\x2d\xe2\xd2\x3d\x33\x8f\x89\xc9\xf5\x23\x48\xcf\xfe\xc7\x54\xcf\x44\xc7\x54\x2f\x3c\xc4\x54\xc5\x2a\xbf\x85\x28\xb5\xeb\xb6\xb6\x8b\x2e\x2f\x5f\xa7\x5b\x35\xe6\x46\x0e\xe3\x31\xb3\x8b\x0f\xf8\xd9\x2e\x7e\xde\xe3\x41\xce\x97\x9a\x9f\xb8\x12\x3a\xd5\x7e\x52\x35\x75\x58\x47\xf7\xb7\x6d\xd5\x97\x7f\x7a\x00\x2f\xa8\x07\x7d\xb5\x5a\x3c\x78\x92\x50\xbd\x6a\x59\xa6\x64\xaf\x5a\x1e\x99\x9f\xa0\xb9\x63\xc5\xd4\xd6\x45\xe1\x7c\x27\xef\x80\x29\x97\xa9\xee\xdb\xe9\xd4\x1a\x3d\x8a\xdc\x44\xa0\x46\x9e\x93\xb0\x7e\xf1\xed\xd2\xd6\x65\xc4\xd8\xe2\xb8\xaf\xfa\xce\xaa\xf9\x09\xc9\xb1\x83\xf2\x1e\x99\xbd\x4f\xa6\x17\xd9\xac\x7b\x78\x92\xec\x55\x2d\xf7\x53\xb5\x08\x46\x12\x34\x91\xe7\xdc\x7f\xaf\x7c\x1c\xf6\x7f\x84\xad\x36\x8a\xbb\xb1\x56\x19\xaa\x65\xb1\x27\xde\xba\x88\xac\xd4\x99\x24\x84\x03\x41\xe2\x2b\xf0\x05\xc8\xf9\x56\xdd\x08\x24\x06\x03\xae\x41\xd2\x46\x66\xbf\x81\x30\x58\xe2\x4c\xa2\xe8\x95\x14\x7a\xc7\x79\x41\x54\xf3\x85\xad\xb4\x45\x97\x09\x2b\x6f\xb1\x0f\x26\x57\x1e\x41\x92\xe6\xdb\xb2\x5e\x03\xed\xfe\x93\x7f\x12\x17\xcc\x3f\xc3\x0c\x49\x50\x03\x28\xaf\xf9\xf2\xde\xf7\x16\xe6\x00\x3a\x6c\x4a\x09\x6b\x7b\x2f\xbb\xea\xd7\xc6\x9f\xc9\xe7\xf8\x3d\xdd\x43\x85\x3d\x4a\x7e\x35\xdf\xd6\x91\x36\x49\xe3\x56\xef\xe5\xcf\xaf\xdf\x0e\x20\x27\x76\xb7\xe6\x4c\x50\x03\xcd\x99\xd8\xfb\x50\x79\x83\x88\xaa\x24\x06\x65\x37\xa8\x28\x76\x8b\xc1\x05\x90\xf9\xb5\xdc\x49\x25\x41\x8c\x0b\xe0\x09\x33\xbe\x5d\xc1\x25\xb0\xef\x38\x89\x79\xdb\x6f\xf3\x87\x1f\xc7\xa5\x3b\x7d\xb3\x31\x82\xc7\xf7\x29\x34\xf8\x11\x17\x9e\x85\x49\x16\xaf\x9d\x30\xc7\xf0\xd4\x99\x9e\x62\x81\x1c\xcf\xb0\xe5\x8b\x9d\x2a\xba\xe8\xc1\x32\x35\x59\x93\x40\x16\x2b\xc2\x7e\xb9\xf9\x0a\xd0\x53\xf9\x9d\x02\xc1\x98\xfb\xb1\xd8\x06\xa8\x57\x9a\x30\x6a\xb5\xf6\x6d\xd6\xe2\xab\xe1\x08\x9d\x78\x98\x3a\x42\x27\x77\xb8\xa6\x0f\x72\x85\xe6\x2b\xbe\x95\xb9\x72\x0a\xfc\x85\x26\x19\xa8\x81\xc4\x9a\x0d\x42\xab\x0e\xfd\xa4\xcd\x55\x05\xc1\xeb\x0c\xbf\x12\xec\x52\x1a\xc1\x9b\x5a\x60\x23\x99\x60\x5d\xb9\x94\x30\xe0\xf5\x32\xcc\x8c\xd9\xa8\x5e\x9c\x85\xb9\x11\x73\xd6\x60\x30\xdb\xea\xba\x0c\xc6\x2f\x1d\xcd\x6b\x4a\x4b\x80\x37\x7d\xbf\xef\x2c\x1c\x10\x47\xee\xbb\xcc\xdf\xd2\x8f\xc1\x20\x7c\x55\x3a\x92\x58\x53\x98\x99\x0a\x16\x49\x37\x31\x92\x30\x3d\xe5\x06\xad\x27\x92\x03\xd7\x23\x69\x48\x89\xd7\xad\x5e\xa1\x8a\xbb\xf8\x85\x26\x0d\x66\xf4\xba\x5c\xe1\x46\xf8\x6a\x1e\x4a\xe8\xbc\x3e\xb7\x1c\x8e\x93\x00\xf5\x63\x98\xdf\xaa\x8f\x1d\x67\x15\xfd\x64\xa7\xd7\x78\x96\x5f\xfa\x83\xa0\x0a\xac\xb9\x42\xf8\x79\xd7\x2b\x89\xad\x70\x5b\xf7\xc5\xa7\xfc\xa5\xe5\xfb\x1a\xd8\x46\x82\xd2\xcc\xc5\x83\x97\x21\x48\x94\x7a\x8d\x04\x9c\xe3\x05\x5f\x9c\x5f\x6f\x25\xa8\xc0\x93\xa3\xc5\x39\x18\x4b\x4b\xc7\x88\x6a\x7c\xad\xa2\xb3\x98\x9a\xd6\xc6\x65\xa6\x6b\xb3\x48\x06\xa1\x0e\x79\xbe\xed\xb1\x08\x8a\x88\x65\x90\x14\x24\x8c\x2c\xda\xb5\x9a\x2d\x4f\xdb\xf5\x41\x5e\xb5\xf5\x55\x57\x1c\x90\xa6\x74\x27\xc4\x79\x65\x21\x6a\x06\x67\x84\x80\xb3\x3b\x67\x02\x8d\xe8\xe1\x2a\x59\x4f\x94\x80\xf7\xbb\x2b\x70\x06\x6f\xf8\xe8\x33\x39\x51\x04\xa1\x9c\x62\x09\x44\x71\xba\xb3\x80\x9a\x67\x05\x9c\x46\x3a\x06\xf6\xb2\x4b\x40\x21\x96\x59\x26\x51\x88\xa1\x94\x31\x64\x18\x30\x86\xe6\xb6\x3c\x5b\xb6\x12\x84\x95\xff\x5c\xb1\xcf\x68\xc8\xf1\xa7\x93\xa5\x75\x44\xfb\x56\x07\x89\xd8\xa0\x9f\x11\x3e\x3e\x60\x2c\xbb\xd4\x32\x26\x1e\x3d\x4e\x01\xca\x4f\xe5\xf2\xe0\x1c\x65\x7e\x96\xdf\x6a\x99\x8e\xd5\x34\x76\xb5\xe9\x50\xe3\xc1\xeb\x0b\x49\x71\x30\x53\xaf\x62\x59\xd7\x21\x01\x99\x24\x74\xb4\xfd\xd0\xbc\xcd\x77\x66\xae\xdf\xe6\x51\xad\x8f\xcb\x6c\xe5\xd6\xf9\xc0\x1b\xdc\x60\x11\x0c\x64\x85\xe0\x0f\xf3\x10\x0c\x02\x51\x41\x04\x52\x03\x43\x04\x78\xf5\x69\x56\x66\x8c\x4d\x7e\xa1\xd5\x92\x9d\x02\xd9\x8f\x01\x44\x15\x8f\x9b\x9f\x6e\x63\x49\x1a\xb2\x87\x78\xa6\x3f\x13\x98\xaa\x16\x99\x54\xb2\xc4\xbc\xfa\x4a\xd2\xb4\x4a\xe7\xe2\x6e\x7a\x9d\xf0\x78\x7a\x50\x1e\x5d\x6a\xca\x10\xd2\x5a\x06\x10\x3b\xa1\x0d\x67\xc3\x8b\x3c\x3e\x0d\x51\xa5\xdd\x3d\x04\x37\xa6\xe1\x32\x5a\x56\xb3\x67\x0e\x62\x3f\x1b\xf5\x36\x28\x67\x74\x45\xcc\x61\xff\x3e\xc7\xcf\xec\x57\x99\xfb\xf7\x76\xf1\x5c\xad\x8c\x66\xdc\x77\x0e\x75\x49\x1c\x2c\x79\x1c\x3b\x6b\xcb\xda\x3d\xd9\x20\xbf\x92\x42\xc9\xe3\x98\xdf\xc4\x47\x30\xf9\x52\xd6\xd1\xc7\xc5\xc3\x7b\xcd\xa8\x95\x6f\x99\x88\x25\x79\xf0\x90\x68\xd7\x2e\xbf\x1e\x96\x65\xcb\x63\x0a\xc6\x99\xff\x66\x15\xcb\x18\xed\x65\xeb\xdf\xf4\x35\x69\xf9\xed\xc6\xf7\xb5\x98\xc7\xbe\x96\x91\xfe\xc1\x3d\xf7\x9c\x3e\xc5\x6d\x8f\x5a\x7f\x41\x05\x83\x17\xb8\xe3\x93\xd6\x5f\xd2\x09\x19\xc6\xf0\x89\x56\x5b\xb3\xe4\x79\x43\x5f\xa1\xbe\xbc\x7a\x64\x50\xa3\xea\x64\x6c\x5f\x5c\x9b\x8e\x70\x58\x5d\x18\xe8\x97\x77\x6f\xf0\x20\xb9\x7b\xb1\xbd\xa9\xbf\x64\xde\x26\x9f\xa1\xfc\x4d\x9f\xcb\xfc\xe2\x6e\x85\x60\xe7\x8a\xa7\xf6\x7b\xb0\x6b\x04\xf7\xa7\x11\x3f\x6e\x24\xc4\x0f\xe4\x88\x1d\x11\xdf\xe9\x87\xef\x06\xb0\xdd\xbf\x3d\x3e\xde\x11\x83\x3d\x64\x8f\x11\xeb\xbb\xb1\xa0\xbf\x92\x5c\x75\xfa\xec\x9f\x28\x83\x1f\x86\xc7\x6c\x89\x1e\xf4\x4d\xb3\x7d\x9f\x15\x6b\x1e\x12\xfd\x9f\xf1\x0e\xd6\xab\xb9\xd8\xcc\xf4\x99\xc9\x4f\xfe\xfa\x86\x6b\xfe\x46\x83\xf9\xf2\x03\x09\xdf\xec\x90\xb0\xab\x6a\x3e\xc3\x38\x61\x83\x84\x0d\xc7\xc7\xe3\x9f\x2b\xfc\x5c\x15\xb7\xf8\x75\x83\x5f\x37\x65\xf9\x41\x0a\x83\x38\x53\xf1\xa6\x26\x21\x89\x53\x6e\xf1\xfb\x96\x9f\x69\xc4\xf3\x0b\x4b\x04\x0d\xc6\x6b\x98\xf6\x03\x6f\x5e\xd6\xb0\xa4\x21\xdd\x7e\x50\x3a\xb7\xaa\xa9\xf2\xf9\x90\xdd\x23\x6f\x35\x09\x5f\xfc\x48\x1b\x35\xaf\x49\xf2\xf9\x10\x67\x6a\xbf\xb1\x0a\xe5\x9b\x52\xb9\x1f\x9a\x28\x9f\x94\xd6\x16\x37\xf3\xd8\x2f\xfd\x42\x6a\xec\x95\x7e\xd1\xf4\xae\xda\x66\xcf\x0f\xe2\xbc\xcf\xec\xa1\xba\xf8\x42\xdd\x33\xca\x33\x0f\x65\x8e\x69\xc5\x5a\x7b\x7b\x28\xfb\xb0\xe7\x60\x2b\xb3\xcc\x1e\xa6\xac\xea\xfd\x21\x28\x62\xe3\xa3\xa8\x02\x16\x43\x06\xcb\xfd\x4c\x82\x9a\x65\x50\xf3\x72\x1c\xad\x05\x18\x26\x28\x78\x59\xd3\x92\x3f\xfe\xc7\x3f\x00\x4f\xdf\xff\xfc\x67\x7e\xfe\xd3\x93\xbc\xfc\xc4\xd1\xfb\xbb\x7c\xa7\x4e\x48\x06\x46\xbf\x9f\x27\x90\x1c\x1a\x06\xd7\xe6\xd4\xeb\x45\xae\xcd\xa1\xf9\xec\xff\x04\x00\x00\xff\xff\x53\x0c\x76\x89\x56\xd7\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xfb\x72\xdb\x48\x92\x2f\xfc\x3f\x9e\x02\xed\x09\x87\xed\x08\x99\x1d\x3d\xb3\xdf\x25\x3a\xfa\xf2\xa9\xe5\xf6\x65\xd7\xb2\xb5\x96\x7a\xe6\x9b\xd3\xe1\x60\x83\x24\x44\x62\x4d\x02\x1c\x00\xb4\xac\x99\x98\x37\x38\x0f\x70\x9e\xef\x3c\xc9\xc9\xfc\x65\x66\x55\x16\x00\x4a\x76\xcf\xfa\x0f\x8b\xa8\xca\xba\x67\x65\xe5\xad\xb2\x8a\xfd\x7e\xbe\x2a\xbb\x65\xfe\x7d\x7e\x9a\xef\x8b\xaa\xde\x96\x5d\x97\x77\xe5\xf6\xfa\xe9\xa6\xe9\xfa\x72\x95\xbf\xa8\x7a\xfa\x6e\x3f\x56\xcb\x32\xcb\x36\xcd\xae\x24\xd0\x97\xf4\x27\x5b\x15\xdd\x66\xd1\x14\xed\x8a\x12\x9e\xd9\xef\xac\xfc\xb4\xdf\x36\x2d\x03\xfd\x2c\xbf\xb2\x4d\xb9\xdd\x73\x19\xfa\x93\x75\xd5\xba\x9e\x57\x35\x7d\x5e\xd2\xaf\xfc\x55\x2d\x29\xcd\xa1\xb7\xa4\xb7\x87\x5e\xd2\x0e\x7b\x4b\xfa\x65\x9f\xb5\xe5\xba\xa2\xde\xb4\x94\xf4\x4e\x7f\x66\x37\xe5\xa2\xab\x7a\x6e\xe9\x2f\xf2\x2b\xfb\x58\xb6\x5d\xd5\x70\xed\x7f\x96\x5f\xd9\xbe\x58\x33\xc0\x05\xfd\xc9\xfa\x72\xb7\xdf\x16\x28\x70\xa5\x3f\xb3\x6d\x51\xaf\x0f\x02\xf3\x5a\x7f\x66\xcb\xb6\xa4\xac\x79\x5d\xde\x50\xea\x19\x3e\x66\xb3\x59\x76\xa0\x49\x98\xef\xdb\xe6\xba\xda\x96\xf3\xa2\x5e\xcd\x77\x32\xcc\x5f\x28\x3d\xd7\xf4\x9c\xd2\x73\x4e\xc7\x10\xca\x15\x0d\x75\x5e\x74\x3a\x0e\x9a\x4b\x1a\x79\xd1\x65\xa8\xaa\x2e\x76\x56\x9a\x7f\x66\xe5\xae\xa8\xb6\x3c\x6b\xfc\x97\xfa\xdd\x75\x37\x0d\xa6\xf6\x42\x7f\xd2\x1c\xcc\xfb\xdb\x7d\x89\x29\x78\x7a\x45\xbf\xb2\x65\xb1\xef\x97\x9b\x82\xbb\x29\xbf\x32\x02\xda\x37\x34\x17\x4d\x7b\x0b\x38\xfb\xc8\x9a\x76\x5d\xd4\xd5\xdf\x8b\x5e\xe6\xe7\xad\xfb\xcc\x76\x55\xdb\x36\x3c\xb5\xe7\xf8\x91\xd1\xc8\xe7\x5c\x0f\xa5\xbc\xa1\x49\x70\xb5\x70\xce\xae\x5a\xb7\x32\x8b\x9c\x79\x8e\x2f\xae\x45\xf2\xb4\x26\xc9\x0a\xb5\x5d\x37\xed\x07\x4d\x7d\xce\x3f\x07\x55\x52\xe7\x34\x37\xed\x57\x51\xd3\x7a\x68\xee\x39\x3e\x12\x80\x2e\x2b\x56\x3b\x9a\xe1\x7d\x51\x97\x3c\x75\xa7\xfc\x45\xf3\x45\x5f\x59\xb1\x5c\x36\x87\xba\x9f\x77\x65\xdf\x57\xf5\x9a\xd7\xe0\x54\x92\xf2\x4b\x4d\xca\x5c\x5e\x48\xbb\x6d\x0e\x61\x95\x29\xfd\xaf\xf4\x99\x5f\xc8\xa7\xe4\xb9\x42\xc8\x0c\x25\xa9\xc9\xbe\xfa\x58\xf5\x55\x29\x8d\xd9\x47\xb6\x3f\x6c\xb7\x34\x9f\x7f\x3b\x94\x5d\xcf\x59\x17\xf4\x4d\x33\x20\xdf\x59\xd5\x75\x07\x94\x78\x85\x1f\x19\x2d\x6a\xbd\xc4\x70\xce\xf0\x23\xcb\x7e\xad\xea\xae\x2f\xb6\xdb\xf7\x99\xfe\x60\x60\xf9\x25\xf3\xd4\x57\x3d\x3a\xab\x89\xf9\x65\x5f\xee\x3b\x9e\xe8\xfc\x79\xd5\x76\xfd\xd3\xbe\x22\x54\x7b\x77\xa8\xb3\x55\xb3\xfc\x40\x48\xcc\x1b\x12\x5b\xe9\xd5\x75\x4e\x63\x7a\x44\x68\xdc\x1e\xea\x9a\x46\x91\xbf\x68\x68\x64\xd4\x4c\xb5\x2a\xf3\x67\x80\x3e\xc9\xf7\xdb\xb2\xe8\x08\xa4\x2c\x56\xf9\x77\x45\xde\x17\xed\xba\xec\xbf\x7f\x30\x5f\xd0\xe6\xf9\xf0\x20\xdf\xb4\xe5\xf5\xf7\x0f\x1e\x76\x0f\x7e\x78\x71\xa0\x62\xdb\xaa\x2e\xbb\xef\xbe\x2e\x7e\xc8\x97\x05\xe5\xd0\x58\x6f\xf3\x45\x79\xcd\x7b\x85\xda\xca\x09\x49\xeb\x35\xef\x93\xdb\x7e\xc3\x0d\xd2\x82\xd1\x8f\x2e\xe7\x8d\xfa\x55\xc6\xb3\x44\x1b\x79\xbe\x5a\x18\x51\x42\x87\x90\xdc\xd2\x2c\x9d\xdf\x5e\xfe\xe7\xeb\x93\xfc\x82\x28\xd3\xba\x2d\xf1\x9b\xfe\xa3\x12\x7f\xca\x69\xb4\x57\xd5\xb3\x9f\x66\x19\x95\xb5\x09\x79\x56\xf4\xc5\x82\xfb\x1e\x16\x89\x33\x65\x0f\x85\x3c\xec\x24\xa6\x75\xa0\x6b\x5d\x8f\xdd\xa9\x3b\x73\x72\x1f\x52\x1d\xba\x79\x43\x1d\x6f\x78\x07\x53\x7a\x98\xd9\x0b\x99\x33\xaa\x2a\x7f\xf5\xe6\xcd\xdb\x67\x3f\xe5\x65\xbd\xa6\x99\xc9\x6f\xaa\x7e\x93\x1f\xfa\xeb\xff\x77\xbe\x2e\xeb\xb2\x2d\xb6\xf3\x65\xc5\x93\xd2\x12\x5e\xe5\x34\x4b\x32\xc4\x59\xd6\x75\x5b\x22\x30\x2b\x6e\xe5\xf2\xf2\x75\x7e\x4e\x3f\xa9\x33\x54\x96\x3b\xd2\x6f\xb2\xee\x6f\x5b\x9e\xa8\xd0\xe0\xd5\xa6\xcc\x81\xb3\x00\x6a\xae\x87\xf3\x92\xaf\xb4\xaf\xb3\xfc\xbb\x45\xfb\x83\xeb\x5f\xb1\xe8\x9a\xed\xa1\xd7\x92\x37\x9b\xb2\xc6\x42\x11\x2a\xb5\x3d\x51\x2b\xa3\xfd\xb3\xac\x6c\xdb\x39\xd1\xcd\xfe\x96\x97\x47\xfb\x72\xac\x15\xa9\x8c\x50\xb9\x6e\x7a\x5a\xfe\x1c\xe5\xa4\x8a\xaa\xfe\x58\x6c\xab\x15\x2d\x52\x9c\xc8\xb4\x2c\x12\x57\x0d\xad\x37\x97\x26\x8c\x6e\x6e\x30\x45\xb4\xc1\x88\xac\xe7\x0f\x66\x0f\x40\x67\x1f\x3c\x7d\x30\xcb\xea\x66\x2e\x44\x80\x29\xf2\xaa\xea\x8a\x05\x51\x67\x39\x2d\x5a\x23\x76\x7f\x65\xbc\x93\xae\x28\x44\x9e\x40\xf0\x9a\xf0\x09\x04\xc2\xcf\x48\x59\x10\x99\x06\x2d\x51\x2a\xe2\xc7\x6e\x24\x27\xe0\x85\x50\x9d\x90\x30\x1a\x73\x66\x0b\x6d\x58\x79\xba\xdf\x6f\xab\xa5\x34\xfd\x42\xf2\x22\x82\xf2\x79\xac\x93\xe2\xe1\x80\x60\x96\xe7\xd0\x8c\x7a\xcd\x54\x29\x4f\xc8\x3b\xca\x6f\x4a\xda\x71\x9b\xc3\x5a\xce\xa4\x6d\x73\x58\x7d\x85\xc3\xc1\x56\x2e\x92\xe0\xfc\x5d\x43\x1d\x06\x56\x05\x80\xd8\xc4\x29\x11\x14\x66\x01\xda\x72\xd7\xf4\x3c\x71\x5a\x8c\xc9\xdc\x4d\x45\x99\x34\xd2\xae\xf8\x48\x87\x5b\xdf\xc8\x56\x5e\xd1\x56\x5d\x72\xc5\xb3\x8c\xc8\xca\x5c\xb7\x13\xd1\x1f\xd9\x52\x96\x96\xe2\x2e\xa0\x76\x07\xda\x85\x1b\xaa\x8c\x27\x9e\xf9\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xea\x40\x3b\xbe\xa1\x33\x93\x17\xfa\x19\x7e\xe8\xb7\xaf\x9f\x7a\x55\x5c\x5f\x53\xaf\x3a\xda\x4d\x2f\xf3\xe5\xb6\xa1\xad\xf8\xcb\xbb\xd7\x1d\x6f\xb4\xcd\x7c\xdf\xb4\xe0\x3f\x28\xeb\x82\x7e\x86\x34\x37\xd1\x0c\x51\x1f\x76\x0b\xfa\xba\xd9\x54\xcb\x8d\x4c\x3b\x97\xe0\xfd\x41\xa9\xd4\xc4\xa1\xa3\x25\x3c\xc9\x69\x6b\xd1\x08\x68\xca\x80\x00\x3c\x06\xc3\x3a\x06\xbf\x26\x1c\x3b\xb4\xb4\x9d\x36\x7d\xbf\xb7\x96\x5f\x5e\x5d\x5d\x48\xd3\x21\xf5\xae\xb6\x0b\x87\x19\x58\x83\x2d\x73\x44\x75\xde\xd4\x33\x20\xc9\xa1\xdd\x0e\xf0\x87\xc6\x6a\x39\x47\xe6\x85\xbb\xf0\x35\xff\x77\x19\xa7\x07\xf3\xdc\x11\xaf\x77\x03\x6c\xa2\x39\x06\x97\x32\xcb\xb6\xcd\x7a\xde\xd2\x6a\x18\x32\xbd\x6e\xd6\x82\x40\x49\x46\x6c\xe9\x99\xa1\x04\xcf\xc6\x4d\xcb\x5c\x1b\x41\x82\x60\xf1\x22\xd3\x26\x69\xf6\xdc\x4f\xb7\x4b\xde\x6a\x42\xdc\x1a\x68\x3b\xe4\x83\x4f\xa2\x4c\x10\x27\x77\xa6\xef\x68\xfe\x94\x9a\x5f\x9e\xd3\xac\x82\xa4\x23\xf5\xba\x6d\x76\x94\xfa\x9c\xfe\xc4\x84\xd8\xc7\x73\xae\x0f\x30\xc5\x6a\x45\x87\x4d\x77\x92\xbf\x7b\x7e\x96\xff\x5f\x7f\xfa\xe3\x1f\x67\xf9\xab\x9e\x37\x36\xe3\xfa\x7f\x31\x8e\x16\x3a\x13\x11\x94\x08\x60\x4f\x68\xfc\x80\x37\xea\x83\xfc\x3b\xe4\xfe\x7f\xe5\xa7\x82\xf8\xcc\x72\xb6\x6c\x76\x3f\x30\x71\xdf\x15\x44\x4a\x38\x87\xb0\x5f\xb7\xc5\x65\x59\xaf\xe8\x87\x70\x7d\x9a\xe5\x88\x8b\x66\x3b\x1e\x50\x98\xdf\xf9\xb2\xa9\xaf\xab\x96\xc7\xf3\x73\x0d\xdc\x32\xb6\x38\x3f\x93\x1c\x63\xa1\x68\xca\x88\x1e\x55\xd7\xb7\x11\x14\x23\x7d\xc3\x89\x8a\x1e\x99\xe0\xf0\x5c\x49\x7d\x98\xe3\x4b\x41\x6d\xc6\x82\xb7\x34\xba\xd6\xa6\xbb\x8b\xf3\xdd\x5c\x5f\xf3\x89\x6f\x67\x95\xb6\xf0\x56\x52\xe5\xd8\xf2\x20\x84\xda\x7b\x30\xf6\xcf\x74\x4b\x9c\x3d\x7b\x93\x97\x1f\x09\x77\x99\x86\xb6\xcd\xea\xb0\x04\xbe\x32\xec\x09\x93\x7e\x22\x38\x1d\xed\xb4\x65\xa9\xc8\x12\x48\x0e\x77\x8d\xe9\xda\x92\x80\x88\xd2\x18\xe9\x27\x6e\xf4\x23\x9d\x23\xad\x6b\xe2\x85\x25\x69\xef\x47\xb0\xa3\x4e\x85\x12\x3c\xf2\x25\x2d\x38\x21\x85\xf4\xa2\x93\x4e\x49\x36\x6d\x1e\xda\x15\x07\x92\x72\x8a\x15\xf5\x65\x71\x0b\x2a\xd6\x31\x2e\xac\xca\xeb\xe2\xb0\xa5\xd5\xbe\x2e\x69\xfd\x88\x5d\x5e\xcd\xb5\xad\x6d\xd3\x7c\x40\x63\x3a\x55\xcf\x0d\x20\x3f\xd5\x4a\x5f\x03\xe2\x58\xc9\xd0\x59\x2d\x1f\xc0\x42\xa7\xb4\x05\xda\x69\x7c\xbc\xc7\xfc\x66\x4f\xd3\xac\x93\xa9\x2b\x9d\xf3\x79\x4b\x39\x35\x51\x90\x85\x0e\x3a\xce\xe5\xe0\x18\xb5\xd9\xb9\x64\xe1\xd0\xe7\x4d\x16\x18\x4d\x2a\x10\xbe\x1b\x96\xa5\x9d\x53\x13\x87\x28\xc7\x2d\x6f\x31\x91\xbe\xec\xe4\x25\x02\x5d\x62\x9c\xf3\x28\xeb\xe8\xc0\x4d\xe4\x49\xf3\x43\xb3\xef\x84\x67\xcc\xc1\x6c\x70\x8d\x56\x01\x33\x59\xd3\x7d\x99\x65\xca\x68\xce\x55\x4c\x9d\x7f\xac\x20\x04\x86\x2d\x26\x55\xaa\xe8\xca\x33\xfc\x67\x06\x60\xe9\xb2\x9b\x2c\x1b\x7a\xf3\x96\x07\xd9\x05\x21\x50\xf0\x84\x87\x8b\x16\x98\xf9\x25\xcc\xfa\x58\xe1\xa0\x53\x24\xc7\xbc\x2c\x98\x3f\xa3\xa6\xa9\xa9\xae\x2c\x51\x03\x95\xff\x9a\xea\x44\x99\x99\x4a\x40\x2a\x94\x18\xd3\xcc\x0c\xcf\xaa\x01\xf7\x84\xd3\x94\x4a\xdb\xb4\x0e\x38\x9b\xbc\xad\xd6\x1b\x3a\x5d\x9a\x9b\x13\x99\x94\x9b\x4d\x53\xf2\x9e\x7f\xf5\xec\xfb\x6f\xa4\x1f\x6b\x3e\x5b\x43\x21\x3e\x95\x8b\x03\x6d\x08\x9a\x31\xdd\x7a\xd2\x85\xc0\xdd\x00\x72\x24\x6b\x09\xd0\x50\xe8\x1d\x31\x53\x81\xd0\x29\x7d\xf3\x79\x4a\xd8\x22\x8c\x94\x36\xc1\x59\x1a\x16\x42\xaa\x82\xd2\x7c\xdd\x40\x50\x33\xc1\x88\xd9\x85\xac\x27\xb1\x6b\xbe\xae\xfa\xf9\x35\x53\x5b\xae\xf8\x39\x57\xc0\xdc\x0b\xe5\xe4\x8f\x28\xeb\x51\x4e\x14\x9b\xa4\xcf\xd5\xb7\xf9\xc3\x8f\xca\x6a\xff\x89\xc9\x28\x6f\xc5\x6a\x8b\x15\x51\xf1\xaf\x2d\x85\x93\x36\xd5\x43\x60\x5b\xbb\xc3\x1e\x87\xbb\x72\xc8\x41\x8c\x5a\x35\x37\x35\x13\x0c\x1c\x17\x44\x1a\xab\x65\x45\x87\xdc\xa2\xaa\x0b\x3a\x1d\xad\x16\x1c\x43\x0f\x09\x25\xde\xbc\xbd\x02\xe0\xba\x59\x1c\xaa\xed\xca\x00\x66\x99\x71\xd1\xc4\x43\xeb\xe2\x7b\x79\xc4\x92\x2a\xe9\xcb\xb2\x69\xf9\xfc\xc5\x68\xac\xe0\x11\x5e\x90\x0f\x6f\x61\xde\x2b\x16\x04\x01\x8b\x72\x81\x6d\xe3\x69\xa0\xd5\x5f\x6e\x94\xa9\x03\xda\x54\x5d\xfd\xa8\x47\x4f\x97\x07\x6a\x8b\x56\x9e\x93\xa9\x60\x97\x3f\xfd\x81\xfe\xcf\x98\x45\x94\x43\x6b\x3d\x9e\x78\xce\xcc\x25\xf3\x20\x5b\x31\xe9\x6a\x82\xe3\x61\xa5\x0d\x83\xdd\x58\x7d\x7f\x0d\x05\xba\x83\x20\x2d\x6b\x89\xb6\xb4\xac\xe5\x57\xf4\x83\x45\xde\xf5\x16\x8b\x50\xf4\x2a\x97\x36\x34\x6f\x8c\x20\x27\xb2\x67\xae\x69\x68\x4c\xfe\xfb\xe2\x43\x09\x51\x36\xce\xf9\x14\xf7\x73\x74\xde\xb2\x5f\x59\x67\xf6\x3e\x3b\x08\xe7\xde\x6c\x57\x41\xba\xc4\x6e\x20\x6a\x54\x26\x2a\x9f\x08\x13\x10\xbd\x23\x09\x65\xb9\x99\x07\x85\x1b\x4f\x64\x5f\x7e\x02\x8f\x83\xac\xa8\x7f\xe3\x5d\xc2\x59\xd9\xee\x16\x4b\xcc\x03\x3f\xbf\x8d\x2b\xcc\x0a\x89\x6e\xd3\xdc\x40\x7b\x15\x20\x2e\x29\x05\x7a\xab\x84\xbf\x67\xad\xd7\xb2\xd9\x12\xbe\x37\xbc\x2a\x1f\x23\xfc\x99\x4f\x4d\x2b\xa7\x76\x49\x18\xd1\x66\x53\x6d\x0d\x65\x89\x82\x48\x73\x45\x41\xd4\x65\xa0\x94\xaa\x59\x04\x41\x25\x7c\x51\xbd\xc8\x8c\x16\x1e\x6a\x17\x6b\xf9\x55\x2d\x9c\xb7\xef\x27\xcd\xb1\x6a\x1d\xdf\x67\x06\x97\xf4\x49\xc8\xad\x4c\x3a\xab\x7d\x8a\x16\xd8\x7b\x89\x1f\x54\x9a\x08\xda\xe6\xbd\xd3\xfb\xcd\x0d\xb7\x4c\xff\x07\xdd\x94\xd2\xb4\xc8\x83\x6d\xca\x3d\xb3\x6b\xbb\x0e\x48\xb9\x65\x05\xc9\xad\x8a\x2f\x01\x3d\x7f\x94\xd3\x82\xf0\x95\x68\xec\x57\x59\xd7\xf0\x76\x9f\x7f\x61\x15\x3f\x55\x84\x88\x28\x9f\x9e\xb4\xa2\x90\x24\x29\x83\x07\x43\x7b\xfc\xf6\x24\x15\x6c\x37\x24\xbe\x2f\x4a\x3a\xf5\xb5\xd8\x6a\x66\x8a\x09\x46\x20\x12\xa7\xb1\x63\xa1\x44\xc5\x1e\x93\x92\xcd\x88\x05\xe0\x1e\x0a\x91\xd5\x56\x02\xb3\x09\x56\xd2\x73\x9c\x13\x6d\xd2\x84\xed\x4a\x96\x5e\xe6\x3b\x51\x5e\xca\x57\x7e\x5e\x66\x74\x16\xaf\xb1\x8f\x04\xd1\xbf\x67\xa5\xd5\x1a\x42\x9e\x62\x3e\x03\x94\xbd\x3f\x05\x14\xc2\x52\x7e\x34\x65\x31\xd1\xa5\x1b\x28\x11\x99\x13\x1a\x4e\x3f\x9d\x97\x94\x3d\xb3\x53\x45\x18\x14\xf0\xc6\x1d\xd1\xaa\x38\x89\xa7\x39\x6b\x7d\x3d\x94\xf2\xf9\x61\x54\x0c\xcf\x24\xeb\xbb\xc5\x0f\x0f\xbb\xef\xbe\x5e\xfc\x10\x08\xfb\x72\x53\x2e\x3f\x08\x72\x56\xf5\xa2\xf9\x04\xb5\x02\xd4\x5b\x25\xd5\x4a\x9b\xf5\xe1\x2a\xdf\x50\x2e\xa4\x5a\x22\x44\x54\x8c\xe6\x9d\x73\x93\x35\xa3\xbe\x30\xbd\x9a\x89\x3a\xb1\x14\xec\x8f\xf8\x08\xbd\x22\x63\x24\x4e\x1f\x43\x49\x2a\xb4\xa9\x16\x74\xa6\x11\x69\x82\x24\xfc\x1a\x7f\x2f\x34\xb9\x5c\x0d\x20\x1c\xa3\xd0\x06\x42\xca\x5a\xb8\x50\x80\x3b\x09\xd0\x38\x3e\x45\x99\x88\x2e\xbc\xb2\x98\xbf\x6d\xb5\xab\xfa\x11\x2a\x32\x59\x2d\x14\xa5\x55\xfd\x69\x6b\x83\x31\xc4\xd9\xa5\xc3\x89\xaa\x21\x5e\xc2\xd0\xf3\xa6\x20\xf1\xf9\x4f\x39\xb5\x71\xe8\x59\x42\x64\xa5\x54\x4f\xa7\x53\xc1\xcc\x08\x89\xce\x45\x37\x3f\xd4\xba\x4c\xc4\x20\x2b\x72\xbe\xac\x70\x66\x72\xbb\xb6\x85\x1c\x54\x2a\xb1\xe5\x8f\xc3\x0a\x3e\x99\xa9\x22\x14\xa5\xf8\x1c\xe3\xfe\x54\x2c\x5e\x14\x53\xb8\x40\x14\xbb\x2e\x65\x86\x30\x7e\x06\x63\xb4\x21\xa1\x39\x4e\x16\x49\xde\x1f\x98\xaf\xe6\xf5\x5d\x1c\xfa\xbe\x61\xe1\x71\xcb\x38\x28\x65\xac\xcf\x67\x00\x84\x78\x1d\xeb\xbb\x95\x65\x49\x67\x49\xe5\x5f\x70\x21\x1d\xe8\x88\x98\x32\x58\x88\x4f\x87\xa6\xa7\x7e\x80\x5a\x89\xd6\xb1\xa8\x6f\xa3\x42\x0b\x7d\xe0\xe6\xfa\xe9\x9e\x3c\x6e\xcb\x27\xb1\x2f\x61\xff\xa1\x84\xf6\x47\x4a\xbb\xad\xf9\x0e\x99\xa2\x32\xb7\x0d\x6c\x67\xe6\x52\x75\x99\x01\x35\xda\x74\x6a\x91\xcf\xbb\x8c\x28\x39\x71\xd1\x2b\xcc\x32\x0d\x02\xa5\x67\x83\xb6\xa2\xd0\x3e\x9e\xbe\x3e\xed\x71\x3c\x56\xfb\xa6\x99\xd3\xc9\x07\x7d\x8b\x75\x2f\xdf\x96\xf5\x3a\x51\x54\xc2\xfc\x05\x7c\xfb\xbf\x59\xb9\x58\xcf\x21\x61\xba\x0d\xf8\xa6\xa9\x9f\x22\x2d\x88\x28\x56\x5a\x55\xdb\xd6\x20\x57\xd3\x36\x87\xf5\x46\xb5\x54\xd9\xaf\x3c\x6b\xef\x33\x5d\xd7\xd2\xd5\xa9\x58\x6f\x39\xb6\xfe\xb2\xb7\x03\xbc\x31\xba\x7f\x2e\x5b\x16\xe7\x01\x94\x2c\xfc\xb1\x15\x49\x27\x24\x90\xf4\xc8\x19\xbd\xf3\x04\x48\x93\xaf\x0f\xdb\x93\xfc\x46\x58\xa6\x58\x26\xa8\x12\x94\x99\x62\x14\x17\xbb\x1f\x0d\xaf\x59\x15\x34\xbe\x5b\x58\x33\xfe\x4a\xc7\x6e\x0d\x0b\x52\x93\x51\x86\x14\x3a\xc7\x0f\x02\x65\x5d\xc8\xfb\x8c\x8f\xe3\x37\x03\x89\x80\xcf\x6d\x4d\x73\x5c\x29\xb2\x7e\xf6\x16\xb2\x30\xe6\x8b\x09\xe1\xe1\x5d\x19\x0d\x65\xf8\x15\x06\x7f\x79\xf9\xf2\xca\x94\x1b\x97\x2f\xf3\x0f\xa5\xd6\xfd\xb2\xef\xf7\xdd\x2f\x50\x9b\x89\x0e\x8c\x15\x66\x17\xc5\x2d\x73\xea\x92\xac\x1f\xc8\xb8\x2a\x8b\x9d\x76\x92\x7f\x4a\x15\xa7\xc4\x44\x68\x22\xff\x24\xce\xc3\xa9\x63\x33\xf0\xac\x3f\x27\xa2\x8a\xec\xa2\x8c\x58\x8b\x9f\xda\xa2\x5e\x5a\x61\x66\x35\x16\x48\x90\x92\x67\x24\x8a\x54\xfd\xe5\x81\x04\x12\x18\xf5\xe4\x9b\x96\x09\x09\x9a\x7d\x4e\x53\x21\x66\x4c\xcd\xde\x49\x82\x66\x9f\x6d\x1a\x96\xf6\x43\xee\x12\xdf\xd9\x55\x5b\x96\xda\xea\x73\xb3\x1d\x64\x60\x20\x85\xf7\x91\x5f\x59\x10\x6d\x4b\xb5\xee\xfd\x36\xd2\x72\xff\x96\x15\xdb\x3d\x49\xdf\xcc\xa2\x3a\x30\x28\x74\x17\x2a\x84\xe7\x00\xc1\xc6\x3e\xec\x08\x87\x97\x50\x94\x50\x81\xc7\x4f\xe7\x4f\x9c\x82\x3f\xad\x6c\x45\xf4\xee\x77\x55\xc8\xbf\x65\x57\xc6\x7a\xbb\xea\xef\x36\x8a\xa4\x3a\x4e\xa7\xb3\x83\x20\x20\x69\x44\xa8\x00\x84\xd3\x8f\xa5\x8e\x9e\xf5\xbb\x94\x40\x92\x4d\x52\xf5\xae\xf8\x74\x5f\xc1\x5d\x33\x51\x4e\xa8\x7a\x2c\x64\xc4\x5b\x87\x98\x6c\x70\x02\x67\x05\xee\x51\x60\xc2\x4d\x02\xa9\xea\xe5\xf6\xb0\x3a\xda\x91\xee\xb0\xa0\xbd\xce\x12\xd3\xa3\x87\xdd\x23\xae\xb2\xfe\x40\xcc\x51\x1d\xe0\x7f\x91\xef\x1c\xdf\xdf\x9a\x91\x79\x4e\xd5\x8a\x18\x99\x07\x73\x33\xf1\x78\x2b\x3e\x2f\x21\x0e\xce\x22\xa9\xf5\x22\x62\xd8\x9f\xd0\xa5\xa9\x08\x1f\x48\x14\x2b\xd0\x20\x2d\x13\x16\xce\xa2\x61\x7c\xce\xbc\xd6\x9c\x45\xaf\xda\xcb\x4a\x7c\x3e\x18\x47\x01\x6e\x0c\x10\x33\x31\x5b\x8c\xcb\x0d\x08\xc8\xd1\xe2\xc4\x51\x4e\x94\x7e\x3b\x36\xa9\x1c\x29\xdf\x13\x0d\x98\xa8\x20\x90\x86\xa3\x05\x65\xed\x51\xe8\xd0\x41\x22\x4e\x68\xdb\xb8\x1c\x43\xcd\xe2\x2c\x85\x09\xf7\x6b\xe3\x25\xcb\x30\xcf\xa9\x22\x80\x95\x6a\x84\x7e\x2d\x1c\x14\x9c\x3a\x40\xd5\x33\x7a\x1c\xed\x58\xf2\xed\x0e\x7c\xb4\xb2\x94\x2c\x9c\x6a\x3a\xa3\xcc\x34\xa1\xaa\x12\x4d\x1c\xaf\x9e\xf0\x89\x4f\x8f\xfb\xea\x07\xd8\x17\x56\xed\xb5\x47\xe3\x8a\xb5\xf2\x00\x74\xac\xda\xa0\xda\x28\x3f\x55\x30\x1e\xbc\xa8\x3e\x96\xaa\xdc\x08\x3a\x1d\xe4\xcd\xb2\x2d\xed\x7f\x16\x72\x65\x54\x22\xd2\x34\x1f\x79\x47\x71\x7b\x9c\x2b\xe5\xc4\x98\xa0\x83\x62\x24\x51\x35\x09\x2c\x9a\xe5\xea\x84\xad\xab\x3d\x78\x17\x6c\xd0\x62\x7b\x53\xdc\x76\x50\xf9\x19\x91\x61\x3b\x8c\x14\x67\x0a\x42\xfc\xdb\x1a\xbd\xf2\xd6\x3e\xda\x35\x36\x13\x6c\xb6\xe2\x13\x2d\xb0\x59\x37\x50\x74\x80\x42\xa8\x12\xf1\xa3\xe3\x1d\xf4\x00\x64\x25\x0d\x6b\x27\x58\xdc\x93\x6c\x57\x11\xcc\xef\x4a\xec\x27\xca\x9e\x30\x6f\x4b\xcd\x30\xaf\x49\x24\x58\xe6\xba\x82\x28\x81\x2e\x39\xad\xd7\x81\xea\x7f\x2a\x32\x52\x45\x73\xc8\x22\x77\x54\x04\xf1\x81\x49\xab\x62\xd6\x2a\x49\x17\xf5\x49\xd7\x57\xdb\x2d\xcf\xb4\xb9\xa4\x24\x32\x0b\x72\xb1\x4f\x30\x4d\xdd\xa6\xda\xe7\x0d\x6c\x16\x7e\x0a\x23\xda\x3a\xe9\x80\xed\x72\x25\x64\x30\xb6\xdd\xd0\x81\xdb\x5d\x97\x30\xe2\xec\xf2\x6b\x76\x9b\x98\x69\xd3\x2c\x6c\x88\x0b\xca\x91\x96\x45\x9c\x45\xd3\xfe\x80\xc0\xda\xb9\x85\x4a\x9b\x16\x23\x21\x2c\x05\xe8\x03\x66\x35\xd6\xd4\x59\x1f\x18\xcd\x46\x53\x00\x9e\x3f\x31\xf9\x4e\xce\xc3\x75\xa2\x25\x91\xf6\x81\x69\xf7\x8c\x3b\x13\x17\x8f\xb9\x70\x21\xc9\xae\xb8\x42\x8e\xf1\x27\xc3\x8d\x91\xfd\xca\x78\xff\x3e\x13\x4e\x78\x1e\x2c\x31\x67\xc2\x19\x0b\x5b\x8b\xc4\xec\xbf\x1a\x3a\x68\x61\x56\xf8\x77\xfa\x05\x1b\x44\x96\xd8\x96\x07\x2a\x1c\x75\xae\x61\x9c\xbc\x20\x54\xa2\xb3\x5e\x3d\x6c\x6e\xb3\xeb\x06\xfb\x09\x1a\x9e\xe7\xf6\x3b\x63\xff\x85\x16\xc8\x75\xa9\xbf\x12\x95\x91\x14\x12\x7d\xe2\x73\xfb\xad\xa9\x21\x89\xb6\x45\x48\xf9\x45\x7f\x66\xac\x93\xd8\xcd\x40\x7f\x99\xdf\x86\x19\xca\x51\x5d\x3e\x54\x19\xff\x2d\x6f\xe6\xe0\x89\xbf\x22\xca\x53\x8b\x0c\x27\x44\xc0\x17\xd5\xec\x50\x45\xf0\x7e\xe0\x5a\xb2\x5f\xcd\xf3\xe8\x7d\x16\xfd\x93\xcc\x35\x69\x4a\x85\x1e\xa6\x5f\x0c\x4b\x99\xee\xea\x4e\x79\xdf\xff\xa0\x9f\xaa\x8f\x02\xc5\xc0\x0f\x55\x28\xc0\x0f\xc1\x8c\xc7\x70\x67\x72\x9f\x99\xea\xf7\x52\xe5\x9e\xe2\xd4\xf7\xf9\x33\xf9\x61\xaa\x89\x43\x85\x31\x56\x24\x21\xec\xb1\x70\xce\xbb\x4a\x57\x32\x0c\x42\x9d\xeb\xbc\x72\x62\x24\xd9\x4a\x25\xe0\x26\xcc\x16\x88\xb3\x93\xcd\x3a\x4e\xc2\x65\xc5\x3c\x44\xdf\xda\xd9\x39\xd9\x7a\xc7\xe2\x3a\x81\xdd\x94\x0b\x33\x7e\xed\xcb\x56\xc7\xb9\x2b\x48\x08\xfd\x58\x15\x41\x2d\xe6\x78\x9a\x70\xe8\x9a\x5e\x2b\x91\x05\x21\x65\x88\x9a\xd1\x58\x1a\x5b\x60\xd6\xf6\x08\xfe\x53\xad\x95\xd8\x9e\x6a\xb0\x3b\xec\x1c\x65\x67\xe2\x73\x76\x0a\x83\x97\xc7\xd8\xad\x91\x9b\x50\x1b\xdc\x6b\xfd\x99\x1d\xf6\x6c\xd4\x72\x73\xf9\x0b\x12\xc2\x5c\xa6\xf9\x4e\xd6\xc3\xac\x5a\xb1\xa0\xd6\x12\xf0\x95\x13\xfe\xd8\xb2\xa3\xfb\x78\xc2\x5d\x51\xb7\xf4\x6a\x08\x12\x95\x40\xa0\x51\x3a\x70\x2c\x94\x38\x1a\x60\x6a\xe9\x9c\xcb\x59\xe3\xbc\xad\xea\x0f\x9d\xae\x14\xcf\x93\x97\x7b\xa1\xac\x23\x7c\x3f\x94\x2a\x89\xf0\xcf\xb1\x73\x9c\x1a\x45\xd5\x44\xba\xb8\x35\x6d\x86\x18\x51\x15\xf5\xd9\x34\x0b\x61\xeb\xb8\x35\x76\x68\x86\x35\x2b\xac\x59\x17\x61\x04\x8e\x14\x8d\xe6\x21\x3f\x13\xc3\xb0\xee\x2e\x12\xa9\x9a\x4e\xb5\xc7\x91\xee\x71\x1a\x94\x43\x4a\xf6\x74\x59\x62\x3d\xb2\x6a\xa7\x66\xa0\xc6\x0e\xd7\xbd\x34\x57\x53\x4a\x84\xd6\xad\x75\xa6\x26\x96\x53\xab\x53\x0c\xd0\x36\x26\x50\x97\x79\xb5\x13\x79\xf0\x17\x33\x4f\x63\xc1\x83\xc0\x80\xec\x59\xda\x9f\x21\x96\x68\xbb\x66\x60\xb9\x07\x59\x0c\x15\xbc\xc5\x4e\x96\x3f\x50\xa4\x66\x9b\xb0\x6b\x36\x8e\x90\xcf\x93\xe7\xf2\xdf\xc0\xb6\x1a\xd4\x16\xbc\xc7\xe6\x03\x10\x95\xf4\x13\xc8\x49\xae\xd8\xda\x3a\xca\x11\x0f\x7a\x3f\xda\x31\x56\xee\x86\x5d\xe2\xdc\xc0\x15\xc7\x57\x33\x73\x33\x63\x4d\xb3\x18\x6a\xe1\x0f\x24\x3e\x51\x35\xac\xbc\x52\x85\x23\x2a\xda\xe8\xbf\x4a\x52\x62\xcd\x22\x52\x74\x41\x92\x38\x15\xc2\xc9\x76\x19\x71\xa6\x0d\xf9\xea\x4f\x9b\xd0\xd7\xd2\x9c\x6c\x3c\x05\xde\xb7\x15\x34\x0f\x29\x25\x1e\xd1\xde\x84\xce\x82\xcc\x36\x70\x19\x89\xe4\x95\xc6\xad\x55\xf1\xb9\x85\x5f\x96\x12\x74\x5b\xb4\x03\x98\x2b\xd6\x64\xdb\x08\x96\x2b\xf8\x1f\xfa\x48\x1f\x42\x15\x65\xac\xcf\x34\x61\x90\x6f\x83\x91\x6c\x5b\x90\x89\xd1\xb0\x87\xdb\xc7\x32\x1c\x1c\x55\x2d\x1e\x3b\xc1\x1e\x9b\x50\xa7\xfc\x19\xc8\x15\xa1\x83\xd8\x03\x8c\x58\xfd\x38\x6c\x3d\xe2\xd1\xcf\xa9\x25\x41\xc6\x96\xee\xa2\xaf\x32\xea\x11\x70\x3c\x5a\xb5\x57\x40\x9e\x54\xd1\xc7\x50\x1e\x42\x54\x49\x21\x75\x9e\xd8\x39\x3a\xd1\xe6\x7c\xbe\x6d\x83\xf9\x8f\xff\x06\xb3\x46\xd2\x54\x34\x6b\x84\x4e\x0e\x76\xd8\x68\x94\xe3\xad\x46\x19\x60\x85\x14\x97\x1d\x43\xa3\xd8\x1c\xf8\x1a\x6e\x45\x24\x18\x9e\x1e\x4a\x02\xf7\xa3\x98\x80\xa3\x89\x5d\xdf\xe0\x37\x07\x67\x59\x11\x67\xba\x91\xce\x3c\x5d\xf3\x53\xc8\x6b\x34\x29\x02\x0b\xce\x90\x98\x09\xe6\xf4\x6d\xaf\x13\x17\x4d\xf3\x20\x3e\x13\xc1\x87\x71\x64\xb1\x3c\x51\x21\x69\x53\xad\x37\x34\xae\x6a\xc7\xae\x02\xc0\x24\xb3\x47\x47\x19\x96\xbf\x88\x44\x35\xeb\x9a\x95\x54\xdc\x82\x38\x2d\x06\x1d\xf8\x77\x5d\xdf\x36\xf5\xfa\x87\x67\x0d\x0b\x97\xac\xbb\xe1\xc3\xf5\xc7\xef\xbe\xd6\x74\x22\xc3\xbc\x84\xec\xe1\xfa\xa2\xea\x5f\x1e\x16\x8f\xba\x7c\xcd\xae\xda\xb0\x63\x15\xce\x81\x5b\x9d\x44\xc4\xa3\xf4\xa6\x0e\xd3\x02\x77\x6e\xda\xe3\x5d\xb3\xa5\x0d\x92\x16\x69\x76\x3b\x59\x5e\x22\x60\x3b\x81\x44\xff\xe1\x57\x52\xd6\x98\xb9\xb2\xd5\xf9\xa1\x0a\x67\x01\xc5\xe3\xfa\xe8\xb2\x19\x87\x9a\x68\x44\x94\x47\x64\xe0\xa5\x6a\x26\xe3\x41\x04\x75\x88\x95\x02\xff\x31\x2e\x85\x75\x64\xfd\xd2\x58\x17\x03\xb1\x85\xab\xb0\xe2\x54\x92\xfa\x21\x7c\x18\xa7\x2d\x47\xba\x50\x45\x2c\x87\xbc\x7c\xf6\x98\x2e\x19\x9c\x7b\xe8\x1e\xd0\x75\xb0\xbf\x95\xa2\xc9\xd8\x95\x9e\xd9\x00\x1c\x45\xd3\x19\x89\x34\x6d\x08\x93\x50\xb5\x52\x68\x9a\xf5\xc2\x53\x33\x71\xa1\x13\x8a\x26\x08\x49\xb2\x15\xd3\xeb\xcf\xa4\x66\xa3\x76\xe3\xc0\xad\xb9\xcf\xa0\x68\x18\xd3\x29\xa6\x83\xc6\x02\xfd\x89\x2e\xd4\x6b\xd5\x96\x20\x83\x9d\xb9\xa3\x9c\xf7\xa6\x51\xc3\x60\x6e\x89\x58\x13\x12\xec\xfa\x32\xd9\xca\xdc\x09\xb8\xdf\x8a\x73\x15\x14\x30\xff\x4f\xbe\x2a\x88\x0e\xf4\xcd\x07\x42\xa5\x71\x11\xa4\x1f\x2b\x14\xe8\x8b\x09\x47\x4a\x5d\x4e\x23\x71\x18\x8a\x4b\x6a\xd7\x3f\x4a\x60\x1c\x5d\xd1\x5a\x83\x83\x9b\x68\x8f\x70\x25\x82\xdd\x80\x56\x42\x47\x94\x0c\xa8\x17\x57\xd8\xff\xc4\xb1\xd5\x0c\x04\x81\x94\x7f\xe8\xb7\x5f\x96\xa4\x7e\xb7\x59\x88\x7a\x1f\x6a\x47\x3e\x05\x1d\xe6\x32\x15\x61\x90\x17\xc4\x70\xc0\xef\xf6\x54\x2a\xbc\xe2\xec\x4e\x9d\xd8\xd5\x3d\xc2\x8a\xbc\xd0\x44\xec\x01\x00\xca\x84\x77\x61\x22\xf0\x15\x15\x1f\x56\x8b\x3a\xde\xa8\x4b\x2d\xd6\x80\xb0\xce\x08\xe6\x46\x1c\x71\xf2\xd3\x8b\x57\x74\x60\x84\x06\xad\xd2\x9f\x8b\xe5\x46\x17\xf0\x46\xb4\x1e\x70\xd7\xd9\x6e\x87\x14\x37\x48\x12\x52\xdc\xee\x1a\xa0\x24\xb6\x78\x18\xd4\x68\x40\x32\x98\x34\x5f\xe6\xb8\xec\x9c\x26\x48\x5a\x43\x4f\x86\x67\x55\x18\xea\x57\x34\xb3\x41\x1f\xc9\x5b\x6b\x7f\xcb\xd4\xdf\x39\xde\x15\x32\x43\x37\xa0\xdf\x03\x8f\x3f\x82\x84\xd1\x3b\xe7\x2d\xdc\x06\xfa\x61\x1d\x56\x0a\xe2\x97\xd2\x93\x91\xc9\xc5\x8c\x44\x65\xb2\xd8\x14\x65\xd9\x5b\x3d\xe9\x98\xef\xa3\x33\x8c\xf8\x51\x71\x70\x07\x95\xf1\xa3\x72\xa8\x7c\x31\xd9\x6c\xc0\x68\x69\x7a\x40\x6f\x72\x39\x06\xc5\x71\x04\x4e\xb0\x22\x62\x09\x46\x38\x97\x78\xaa\xe5\xa6\xdc\x6e\x69\x3f\x68\xeb\xd1\x1e\xab\x43\x4f\x5c\x2c\x14\xc8\xc9\xb7\x65\xe4\x6d\x65\x2a\xbc\x2a\xcf\x2a\x23\x08\xda\x6e\xf0\x6e\x10\xe5\x83\x9d\xd6\x67\xa7\x6f\xde\xbc\xbd\x8a\x87\x34\xef\x83\x7a\x45\xac\xc4\x57\xc1\xf7\x71\xd4\x2f\xf3\x80\x0c\x0b\x98\x42\x44\x1f\x4c\x2d\x71\x0c\xce\x93\x29\xe7\xfd\xb1\x6e\x40\x7b\x1a\xee\x8b\xd1\xf2\xa4\xff\xab\x63\xeb\x97\xfd\xca\xdc\xcd\xfb\xcc\x14\xe2\x6f\xf9\x6f\xe6\x6d\x0a\xce\x16\x83\xad\x17\x4d\x36\xf1\xa6\x09\x75\xa0\x59\x8d\x6c\x0c\x20\xd2\x87\x02\xa2\x16\xcd\x7d\x83\xb3\xe2\x3a\x87\x29\xff\x84\x55\xa6\x4d\x8b\x0d\xc3\x93\x7b\xa8\xab\xbf\x1d\xc0\x9e\xc1\x02\x3f\xcb\xd8\xa5\x76\x51\x6d\xe5\x40\xf9\x73\xf8\x90\x74\xfe\x35\xb8\x0d\xe1\x1a\xa7\xaf\xef\xba\x3d\x7b\x24\xd3\xd9\xd0\x7d\xff\xe0\x50\xe5\xac\x45\x64\xe7\xba\x07\x3f\x90\xfc\xc2\x36\x79\x5a\x3e\x82\xf8\x61\x54\x1d\x5f\x78\x5c\x8a\xf2\x31\x78\xcb\x00\x6f\x35\x9d\x77\x0b\xf3\xbb\x89\xc6\x53\x26\xfe\x77\xb4\xc9\xb7\x2b\xe3\x38\x1e\xab\xd4\x4d\x73\x84\xbd\xfb\xb1\xd8\x1e\x52\x15\x0c\xb7\xce\x65\xba\x27\x19\xae\x7a\xc4\xb2\xf0\x9e\xc2\x7d\x5d\xce\x20\x6c\xf8\x11\x93\xd6\xdf\x7d\xef\x8f\x6f\xf6\x32\xe3\xf7\x55\x86\x9e\xa8\x92\x7a\x78\xd1\x13\x79\x76\x07\x83\xf3\x70\x11\x03\xa9\x13\xab\xe1\xee\x6c\x15\xdb\x5e\x14\xd4\xb9\x5b\x4d\x26\x2d\x18\x84\x57\xec\xde\xaa\x29\x30\x50\xb0\x6e\xd9\x56\xb8\x47\x22\xe9\x7c\xdb\x37\x77\x37\x7d\x91\xb8\xae\x7a\x12\xd6\xd9\x1b\x32\x34\x7e\x49\xc8\x4f\xf3\x34\x0b\x59\xb9\xdd\x1d\xee\x32\xa2\x1f\x74\xa4\xe1\xc2\xb0\xfc\xb2\x94\x51\x71\x3e\xfd\x05\x16\x1a\x39\x66\x39\x75\x2b\xf0\x0f\xfd\x9e\x28\xa5\x80\xd6\x24\x9b\x4a\x9a\x79\x55\x57\x4c\x01\x5e\xd1\x1f\x3a\xdd\x45\x12\x48\xf1\x55\xf8\x5c\x54\xa2\xda\x1e\x11\xc3\x43\x3d\xea\xdf\xa8\xcb\xa3\x8e\x8d\x6e\x81\xf4\xce\x82\xaa\xfd\x31\x7f\x48\xc8\xc5\x3d\x41\xaf\x09\x13\x05\x3c\xd4\xa2\x7a\xa6\xbf\x49\xa2\xcd\xbb\x63\x68\xe4\xd6\xd8\xd3\xbe\x2d\x96\x1f\x98\xb8\x10\xce\x94\x2d\x49\x05\x70\xea\x2a\xf8\xfc\xcb\x09\xd1\xd6\x34\x01\x62\x61\x50\x8f\x29\x29\x66\x95\x57\x2c\x41\x7c\x14\x4e\x4c\x2e\x18\xbf\xb2\x94\xc7\x2c\x7a\x3e\x31\x40\x13\x1c\x03\x9c\xaa\x3f\x06\xf9\xd6\x4f\x35\x17\xaa\xbd\x9c\x36\x24\x9f\x22\xac\x9f\x80\xf5\x8e\xa6\x6b\xc5\x36\xa9\x62\xdb\xe5\x2a\xef\x9a\x19\x3e\xbb\x61\xe3\xb6\x58\x1c\xfe\xa2\x3f\x61\x70\x58\x17\x7f\x97\xd4\xcb\xf0\x01\x0c\xef\x14\xe7\x3b\xb5\x1e\xd0\xdc\x2f\x37\xea\x36\xd7\x5c\xcf\xe5\xe2\x21\x4e\xec\xab\x60\x05\x65\x72\x01\x38\x5a\xcd\x5d\xf1\xa9\xda\x1d\x76\x79\x00\x44\x51\xde\x04\x0f\x53\xbb\xc6\x6c\xda\x3a\x31\xb4\x84\x7f\xb9\x91\x62\x58\xc3\xdd\xb6\x0a\xf6\x8f\x9b\xb3\x89\xcf\x68\x4a\xe2\x11\x93\xe9\x15\x72\xbb\x8a\x1b\xee\x90\xcb\x5d\x5c\x9f\x7b\x9c\x3c\x9b\x02\xaa\x48\x29\x26\xdc\xa2\x17\x44\xf1\x1e\xfc\x20\x8b\x6e\xe4\xd2\x6a\x55\xf4\x3f\xd7\x5b\xec\x0e\xff\x15\x62\x26\x34\x31\xe2\xd2\x19\xae\xc3\x45\x54\x9a\x80\x4a\x4e\x54\xe5\x6a\x0b\x77\xa5\xee\xeb\x17\xaf\xae\x70\xa1\x8e\x70\x52\xb4\x7b\x7a\x6b\x90\x3d\x6e\x66\xa1\x4e\x3e\x6c\xab\xae\x13\x26\xac\xae\x30\xf1\x4c\x08\x27\xf4\x7f\xa2\x32\xd0\xca\x52\x0c\xb0\xda\xa2\xbb\x3a\x7b\xb0\xa9\xaf\xfa\x2b\x49\xd4\x82\x9c\x08\x5d\x44\x6a\xc9\x33\xe7\xbb\xc2\xdf\xe5\xb4\x6a\x83\xd1\x36\x2e\x9b\xb7\xd7\xea\x56\x53\x42\xaf\x01\x01\x9a\xeb\x4c\x68\xb5\xa5\x2b\xe5\xbe\x0e\x47\x00\xee\xe2\xf1\x8d\x9c\x94\xf6\x23\x70\x40\xe1\xd7\xdd\x7b\x95\xd2\x46\x61\x6e\x69\x7f\x3b\x67\x4b\x02\x18\xa4\xfd\x6d\x4c\x70\x9c\x24\x65\xd0\x74\x3a\xe0\xe0\xed\x72\x81\x55\xfe\xdf\xff\xf3\x7f\x3d\x3d\xe3\x61\x9f\xf5\xed\x96\x7e\x29\xa3\xce\xf0\xb2\x0c\x52\x41\xfe\xf6\x3f\x48\xe0\xba\x51\xd7\x96\x5f\xe4\x57\x66\xdf\x20\x05\x94\xdf\xa9\x6e\x1f\x3f\x32\xfd\x62\x8a\x90\x69\x1c\x04\x26\x05\x19\x4b\xbb\x8a\x36\x24\xe9\xfa\xb3\xea\x6f\x87\x6a\xf9\x61\x2e\x2a\x9a\xef\xf3\xff\xe4\xaf\x1c\x77\xeb\xf5\xb8\x66\xca\x1f\xc8\x38\x90\x73\x70\x16\x78\x57\x76\x9c\x71\x7a\x9d\x25\x92\xfd\x22\x65\x3f\x6e\x8d\xf0\x1a\x20\x5f\xd8\xcb\xf6\x07\x76\xe6\x62\x84\xb0\xd6\x2e\x28\x05\x97\x1f\x39\x51\xe8\x79\xa8\x01\x2b\x3b\xaa\x03\xcd\x53\x77\xe5\x2e\xec\x24\x97\x85\x2c\xe7\x66\xbc\xe3\x6b\x69\x34\x64\x95\x78\x32\x75\x1d\x3d\xe3\xbb\x84\xe1\x6c\xd2\x33\xa9\x6f\x4b\xc8\x74\xf4\x27\xa3\x23\x8f\x5d\x14\xd5\x6a\xcd\xf7\xc1\xfb\x02\xe6\x5d\xa4\x9b\xcd\x9a\x8d\xde\xc5\x5a\x2b\x82\x30\xf7\x93\xfe\xcc\x28\x9d\xbf\xaf\xe8\xcf\x28\x2c\x03\x07\x71\x18\x07\x6f\xd8\x16\x8b\x12\xc9\xaf\xf1\x83\x90\x9f\x4e\xdd\x9e\x56\x44\xce\x20\xfb\xc8\x96\x70\xbb\x13\x44\xc4\xaf\x4c\xef\x0d\x89\x9d\x5b\x7e\x66\xb0\xd4\xb5\x05\x5b\x9b\xdf\x15\x37\xf2\x49\xd3\xa5\xc1\x3c\x5e\xca\x2f\x49\xc6\x95\x09\x01\xc5\x8d\x89\x00\x0f\x7e\x5d\x77\xc3\x85\xfd\x96\x2c\x76\x80\xdd\x32\x13\x67\xcb\x60\x16\x21\xca\xc8\x25\x43\x58\x50\xbe\x1f\x52\x8f\x03\x51\xc8\xf7\x1c\xf6\x75\x4a\x95\xcf\x0c\x9b\xc8\xc2\x7c\x88\x29\x92\xb5\x01\x6a\x84\x64\xdb\xd3\x5c\x78\x11\x33\x45\x09\x6b\x42\x5d\xaa\x57\x56\xe0\x39\x6b\x34\x50\x42\x26\x4a\xed\x22\x71\xbe\xd4\x92\xd4\x05\x1e\x45\xe1\x76\xc1\xed\x91\xd5\x88\x84\x98\x76\x8d\x98\x30\xb4\xe7\xab\xb3\xab\x7c\x15\x37\x16\xdf\x67\x81\xee\x49\x4b\xb3\x86\x9f\x8a\x3e\x24\x14\x5c\x89\xcf\x7b\x98\x95\x87\x5d\x90\x49\x79\xb3\x69\x3f\xbd\x48\x8c\xee\x72\xb9\x04\xe2\x67\x4a\x18\xe6\xfb\x2c\xa4\x9a\x79\x4f\xc5\x3c\x37\x08\x55\xf7\x06\xbd\xaf\x49\x5a\xab\x41\xc3\x3f\xc6\x3a\x06\xf3\xf0\x17\x5c\xae\x2e\x98\x7c\xb3\x22\x81\x95\xbe\x72\x29\x5f\x6a\x78\x6c\x13\xf4\xc4\x5c\x7e\x88\xb7\x54\x23\xa0\x19\x92\x6b\xd3\x3f\xa8\xe4\x1c\x5a\x3d\x11\x97\xc0\xbc\x59\xc2\x32\xb9\xca\xd8\x99\x64\xbe\x28\xe7\x74\x5e\x85\x8d\xf9\x57\x73\x32\x59\xc0\x39\xb8\xb0\x7d\x47\xf5\x41\xa7\xdd\xc0\xfa\xcc\x62\x5c\x6e\xab\x6c\x81\x03\x30\x39\x56\x27\x6e\x89\xb7\xbe\x42\xe8\x79\xe4\xf2\x78\x54\xf4\x7c\x56\x9d\x72\x98\xcc\xb1\x1a\x72\xd3\x2e\xe0\xe4\x99\x9c\x33\x9c\x65\x97\xf0\x0c\x3f\xb7\x65\x90\x4f\xa1\x36\x62\xf6\x2f\x1e\x88\x27\x72\x13\x1c\x2c\x0c\x2b\x69\x08\x83\xf7\x38\x4a\xbe\x9e\x31\xac\xa9\x45\x7c\x81\x75\x23\xdd\x22\xfa\x56\xae\x2b\x09\xb8\x02\x29\x8d\x25\x84\x72\xbb\x72\x95\x30\x01\x24\xbe\x85\xc3\x6e\xe0\x78\x94\x08\x2a\x18\x81\x9f\x12\x9c\x27\x18\xa7\x86\x58\x61\x00\xb6\x20\xf3\x6e\x0c\x4b\x52\x07\x8f\x62\x20\x64\xd3\xce\x14\x6d\xa4\x6f\xdb\x5b\x46\x02\x60\x71\x28\xa2\xdb\xce\x00\xac\xdf\xaa\xbc\x30\x66\x4b\xc0\x9f\xf2\x34\x3d\xc0\x65\x8a\xa0\xcc\x40\xc6\x2c\x34\x17\x8f\xa3\xd8\x82\x1d\x44\xa6\x10\x89\xbd\x8c\xf5\x5c\xe3\x5a\x3d\xfc\xf4\xd0\x1f\xc4\x23\x90\xc0\x24\x39\x53\x64\xbb\x57\x12\x5a\x0a\xab\xa6\x4b\xbe\x28\xc3\xc9\xf3\x5c\xb3\x26\xa2\x92\x48\x59\x3b\x38\x84\xb9\x90\x83\x2f\x9e\x0f\xc2\xe9\x26\x96\x83\x2e\x44\xaf\xf1\x12\xa8\xd6\x16\xd6\x9d\x4f\xbf\x22\x10\x81\x9a\xaf\xb1\x08\xd3\x2c\x27\xee\xbe\x50\xbb\xb4\x5c\x1d\x2c\x84\xfe\x0c\xb8\xaf\xbb\x1a\x0a\x43\x46\x3b\xb1\x48\x8c\x09\x93\xb0\xfc\xfe\xf4\xfe\xec\xfa\xe7\x8a\x57\x24\x14\xcc\x45\x5e\x8b\xd3\x13\x22\xcf\xa0\x85\x5b\x65\x57\xb5\xc0\x50\xc0\x0b\xa2\xd4\xb1\x86\xd4\x9a\x3e\xbf\xd9\xb8\x66\x75\xf5\xc6\x06\x20\x85\xce\x3b\x92\xe1\xca\x18\xb6\x86\x2f\xfb\x48\xc9\xd9\xdd\x9a\x8b\x78\x7d\x04\x86\x2b\xd5\xb9\xde\xb0\x64\x0a\x6a\x93\x34\x42\xb8\x68\xb8\x2a\x9b\xd4\x90\x92\xf5\xb3\x11\x67\xa9\x12\xf6\x40\x14\x42\xd5\x6f\x1c\x51\x4a\x47\x3a\xc2\xb3\x53\x99\x46\xc8\xf1\x71\xc9\x3e\x1f\xe3\x98\x3c\xc9\x41\xc8\x05\x2d\x55\x89\x78\x70\x35\xf1\x79\xc2\xb7\xcb\x11\x90\x9c\xd4\xa7\xf5\x80\xd4\xe7\x58\x0f\x39\x11\x78\x41\x18\x10\xfc\xbe\xd6\x44\x78\xa1\x83\xe4\xda\x98\x81\x10\xcc\x20\x4c\x10\xe1\xc5\x13\x66\xce\x9e\x19\x8f\x3a\x24\x08\x4a\xa8\x4c\x4e\x60\x01\xc1\x75\x2e\xe5\x22\x60\x5b\x42\x9f\xb9\x55\xc2\x66\x1d\xbf\xc5\x15\xe1\x63\x9c\x41\xba\xc3\x22\x66\xca\x87\x4a\x35\xc4\x11\x60\xef\xe0\x96\x9d\xb1\x2f\xea\x7e\xdc\xa2\x1e\xb9\x04\xbb\x97\x13\x43\xc2\x9a\x50\x5b\xcb\x6d\xb5\xb7\xd8\x77\x2c\x74\xb8\xd8\x4b\x2c\x3a\x58\x6e\x46\x88\x02\x56\x2d\x32\x34\x17\x92\x12\x38\x1a\xe3\x0d\x67\x63\x1e\xd1\x72\x06\x17\x56\x15\xef\x62\xfe\xb5\x18\x84\x98\x8b\x0a\x69\x05\x04\xee\xdc\xee\xa2\x84\xf4\xc8\x29\xe8\x95\x91\x90\xa3\x68\xf2\x0c\xaa\x22\x4d\xb3\x9b\xc8\x6f\xf9\x6f\x48\x25\x4a\xad\xda\x42\xfa\x1b\x6e\xea\x4a\xbc\x3c\xe6\xfd\xc0\x32\xbb\xe4\xd9\x90\x4d\x76\x59\x4c\x50\x38\x51\xa4\x20\xe4\xfb\xec\x25\xb1\xc6\xed\x3c\x94\x3f\xe3\xcf\x7c\x3b\xaa\x25\xf0\xdd\x9e\xed\x1e\x34\xe3\x61\xa8\xa9\x49\x30\x69\xce\x43\x4a\x8b\xbb\x29\x60\x8e\xa7\x91\xc0\xbe\xe5\x00\x1b\x8e\xeb\x4f\x2a\x66\xbd\xf5\xa0\x66\xa8\xb2\xa7\xe1\xe9\x78\xe5\x60\x11\x60\x0a\xf5\xe7\xb8\x9f\x0e\x48\xba\x59\x4c\x80\xb2\x4d\x35\xc2\xd1\xc0\x87\x40\x6a\xf4\x0f\x1b\x70\xb8\x7a\x71\x7d\x68\x69\x87\x0b\x24\x99\xf3\xfd\x96\x58\x95\x70\x6f\x1d\x40\x20\x61\xbc\x79\x92\x66\x42\x65\xda\x58\x52\x1f\x26\xb4\x2f\x16\xcc\x93\xaf\x30\x9b\xa1\x30\xcf\x55\xcc\x92\xa9\xb3\x4c\x95\xfb\xac\xe6\xa4\x4a\x9f\xc7\x87\x97\xe8\x47\x65\x22\x82\xae\x74\x3b\x51\xe2\x4e\x8c\x1a\xc2\x1c\xad\x79\x84\x37\x5a\xf2\x8e\xe5\x8d\x10\x1c\x2f\xee\x78\xd5\x47\xca\xa9\x4a\x0d\x8a\xb4\x71\xce\x8c\x23\x22\x04\xd1\x96\x43\x7b\xc9\xc7\x24\x68\xa7\x31\x2c\x89\xdc\xf1\xc9\x1a\xba\xba\x52\x03\xeb\x54\x21\x59\xe5\x15\x3b\x62\x4a\x19\x59\x67\x04\xc7\x39\x52\x64\xc7\x4a\x56\x18\x1b\xb4\xc8\x79\x48\x98\x28\xd2\x69\xa8\x2e\x8e\x95\x35\xce\x99\x41\x47\xdf\x2b\x6d\xea\x26\x41\x18\x4b\x01\xf2\x16\x3f\xa6\x40\xc4\xed\x20\x9c\x9c\xef\xf4\x7a\xb2\x39\x3e\x4e\x36\xcc\x3e\xff\xa1\xc4\x6b\xdc\x00\x68\x3f\xa3\x1c\xdf\x09\x63\xba\x2a\x5e\x26\xe7\x0d\x2e\x6a\xe1\xf3\x8e\x76\x62\x01\x69\x68\x54\x82\x77\x12\x56\x81\x65\x73\xfc\xce\x1f\xfe\xfa\xcd\xfb\x8e\x97\x21\xba\xef\xfc\xfa\xc7\xf7\xc4\x03\x3d\xfc\xf5\x4f\xef\xe1\xb7\x33\x2a\x3c\xbf\x66\xe1\x6a\x5c\x03\x0a\x1a\x34\x4e\xb8\xe6\x10\x8e\x36\xfa\x19\xe9\xc3\x27\x59\x8a\x4f\x7d\xba\xc5\x43\x88\xaf\xc1\x0e\x5f\x85\xac\x74\x87\xd7\x87\xdd\x5c\xc7\xd8\x09\x05\xb0\xaf\x50\xdc\x66\x60\x5e\x70\x93\xbf\x85\xef\x38\xdc\x3f\x30\xc3\xf7\x10\x23\xfd\xcd\x8a\x39\x29\x9a\x1d\x6d\x63\x50\xad\xcf\x92\xc4\xb5\xd8\x8f\xa1\x9b\x8d\x73\x18\x12\xe6\x07\x9a\xf1\xc0\xb7\xde\x96\xfd\x2c\x25\x69\xf8\xb0\xf1\xa6\x59\xd6\xa9\x00\xa2\x8b\x8e\x7b\x74\x1e\xbc\x2d\x31\xab\x06\xf7\x0e\x9f\x83\xcc\xbb\x2a\x6b\x93\x02\x4a\xa7\x23\x8a\x29\xe8\x60\xa1\x74\x9a\xe5\x0c\xa3\x39\xae\x56\x8c\x50\x84\x20\x0f\xc2\x74\xe3\xeb\x07\x20\x4b\x32\xe9\xd2\x5e\xa8\xc3\x3e\xbf\xb0\x16\x15\x61\x09\x2a\xd4\xa3\xa6\x25\xd5\xe3\xc8\x50\xf5\x0e\x96\xb2\xea\x5f\xd6\xc4\xbe\xd1\x90\xc3\x17\xf8\x11\x5b\xb6\xe0\x27\x60\xb0\xce\xdc\x67\x40\xf3\xc4\x0e\xae\x89\x16\x18\xca\x6e\xd3\xaa\xf2\x37\x71\xa7\xd3\x60\x21\x26\x8d\xf0\x2d\x19\xc3\xb5\x9a\x63\xff\xe8\x95\x2f\xad\x51\xd5\x01\xac\x59\x0a\x9d\x1b\x28\xed\xac\x6d\x96\x66\x88\x6c\xd2\x1f\x4b\x92\x33\xd1\x36\x5c\x3c\xb3\xd3\x7c\x1a\x6c\x13\xcf\x74\x7c\x0d\x01\xc4\x37\xe1\xe1\x6a\xc0\x97\x49\x76\x44\x4d\xdd\xb9\x88\x42\x96\x9e\x3a\x02\x39\x31\x18\xc9\x18\xdc\x2c\x49\x33\xc3\xdd\x72\xe9\x20\x6e\x98\x5b\x54\xbb\x71\x2d\x7a\x89\x02\xa0\xc1\x39\x62\x12\x6c\xda\x6b\x58\x78\x0c\xef\xf7\x52\x41\x26\x8b\x9e\xc2\xec\xf7\xe9\x5c\x61\xb4\xee\xe3\x9e\x2f\xd3\x8d\x47\xc3\x85\xf4\xf5\x1e\x17\x3b\x47\x26\xf7\x24\xfe\x56\xcb\x6a\x5f\x04\x52\x79\xe1\x52\x0c\xb2\xe8\xfb\x62\xb9\xe1\x6d\xed\x99\xae\xdf\x44\x1c\x56\x29\x98\xf1\x11\xc3\x81\xfe\x88\x20\x7e\x9b\x28\x1d\xa2\x59\xf9\xd2\x21\x91\xab\xf8\x2d\x13\xdd\xb9\x93\x0f\xbc\x0e\x5d\x33\xd9\xb3\x83\x04\xc5\x54\xf1\xcb\x29\x41\x4e\x9a\x84\xb3\x55\x32\xe0\xfe\xa6\xc9\x83\x66\x1f\xb1\xb8\xf9\x04\x4b\x75\x45\x50\x2a\x05\x89\x3c\xad\x16\xc1\xb3\xbe\xc7\xc5\xa0\x61\x83\xda\xc2\xf7\xb9\xfe\xd2\xfc\xc4\xe8\x90\x0f\x8c\x0d\x36\xf2\x86\x6d\xb1\x87\x2d\x56\x04\x5e\x8d\xf2\x71\x2d\xfe\x78\x06\x84\x80\xc8\x10\x2e\x43\x5b\xee\x10\x91\x70\xc9\xea\x63\xcd\xb9\x8b\x72\x59\x70\x80\x3f\xf4\x99\xc7\xba\xe1\x00\xcd\x71\xf4\xac\x84\xf9\xc8\xb7\x8c\xa5\x7e\xbe\xc6\xe8\x23\x51\xf3\x8a\x85\xea\x4d\xc9\x30\x98\xa9\x45\xd9\xdf\xe0\xba\x32\x9c\x9e\x79\x72\x45\x95\xd2\x7d\xeb\xb9\x08\xa2\x9e\x5f\xa3\x8d\xaf\x99\x95\x58\x29\x25\xfd\x03\x3e\x84\x9e\xea\x54\x0e\x04\x8d\x09\x34\x00\x35\xb2\x45\xbd\x01\x0e\xb3\x8e\xb7\x64\xdb\x04\x37\xb4\x32\xd9\x57\xe8\xfa\x77\x6c\x1a\x32\xc2\x8d\xdf\x84\xb0\xec\xd4\xac\xe9\x7f\x0a\xe9\x5a\x3f\x6a\x52\x2e\xc3\x9a\x91\xb4\x7f\xad\x7a\x2a\xfd\x6f\xef\x0d\x47\x69\xab\xcc\x3d\xb9\x06\x7e\xc6\xcf\x04\x6a\x28\xf2\xc7\x3c\x53\xc5\x3c\xc7\x5f\xd5\x41\x69\xbe\x1e\xea\x84\x2a\x32\x35\xc1\x95\x41\x32\xd4\x67\xcf\xaf\x24\xf5\x7a\x5f\xb6\x4c\xa6\x74\x36\x83\xeb\xda\x2c\x99\x1a\xb0\xdf\x6d\x6c\x89\xb1\x26\xe4\x5c\x8d\xaa\x0d\x74\x49\x61\x52\xb2\x24\x55\x70\x58\x67\xda\x1f\xe6\xb0\x48\x5f\xc1\x35\x69\xba\x2e\x85\x5d\x1d\xe2\x1d\x5d\x9e\x45\x2a\x04\x75\xb7\xa3\xb6\xd6\xf7\xaa\x9b\xe3\x9a\x82\xa8\x0a\xaf\xf4\xee\x01\x91\xa3\x3e\x0f\xe9\xd4\x9c\x5c\x92\x95\x40\xa3\x6b\x09\xdb\x1a\x62\x9b\x5f\xd3\xf7\x06\x41\x15\x19\xe0\xba\xe4\x70\x68\xe0\x30\x03\x89\x28\xea\x39\x3c\x71\x30\xd4\xc4\xe0\x9f\x0c\x43\xad\xff\x3a\x21\x83\x50\x89\xa1\x2a\x38\x57\x7c\x5e\x6d\xe2\x13\x3a\x55\x5f\x20\x01\x7d\x50\xb4\xd9\xb8\xbb\xe3\x6d\x0d\x63\x94\x0b\x3e\xec\x8a\x5a\x7c\xec\x2a\xbe\x5e\xce\x72\xbc\xc4\xd3\x81\xc7\x7f\xbf\x99\xa8\x59\x6a\x1b\x90\x14\x20\xcf\xd4\xce\x06\xc2\x1e\x6a\xdd\x80\x28\x15\x14\x9f\xbf\xa9\xc1\xff\x51\x1f\x90\x54\x11\x39\x3a\x58\xa6\x43\xf5\x24\xab\x16\x96\x22\x99\xb6\xc7\x7f\x78\xb8\x7a\x22\x9b\x18\x9e\xff\x23\x37\x29\x4e\x94\x81\xfb\xc3\x9b\xa9\x68\xd5\x21\xfa\x14\x94\x9c\x4d\x0b\x20\xd6\x23\xff\x96\x39\xe3\xae\x3b\xcb\xa2\x6e\xc0\x65\x4f\x28\x32\x5c\xee\xb4\x32\x63\x08\xb0\x8a\x2a\xa2\x87\x5d\xd2\x76\x33\xa7\xad\x31\x57\x49\x93\x8e\x13\xde\x28\xfc\x35\xec\x81\x49\x58\xc3\x9a\x83\xb8\x91\x0e\x88\xb5\xa4\x7c\x84\x48\x5c\x25\x21\xd1\xce\x9e\xcd\x6a\x6d\xb9\xf0\xab\xca\x51\x65\x06\x92\xea\x07\x14\x7e\x72\x72\x8c\xe3\x44\x1c\x1e\x9f\x31\xe1\xb5\xe7\x73\xe3\x98\x9f\xd1\x80\x59\x4d\xe9\xad\x99\xc9\x20\x4b\xb9\x7d\xc9\x7f\x7d\x46\x88\x99\xa9\x55\xcd\x65\xe5\xb5\x46\x54\xae\x29\x31\x86\xe3\x49\x30\x66\x3e\xba\xa5\x7f\x4f\x77\xbb\xa7\xab\xd5\xa3\x89\x51\x3b\x9e\x2d\x0c\x7b\x70\x1f\x44\x95\x23\x03\x2a\xe9\x6a\x72\x2c\xf0\xf4\xdc\xc1\x82\xe9\xd7\x89\xef\xa1\x16\x7c\x4e\x33\xd3\xe1\x4c\xdd\x82\xbb\x71\xf5\x3a\xa6\xff\xcd\x9e\xcd\x0b\xe6\x65\xce\x1b\x5a\x2e\xd0\xf8\xb1\x0c\xc4\x07\x97\x35\x88\xe2\x74\x67\x07\x83\xdb\x8d\xb2\x73\x44\xbb\x77\x47\x26\x45\x62\xc7\x1f\x9d\x12\xc7\xb6\xc7\x69\x0d\xac\xfb\x04\xe0\x34\xe3\x1e\x5b\xff\xef\x64\xde\xa7\x9a\x9f\x42\x83\x7b\xd8\xf7\xec\xa6\xfa\x50\x51\x81\xbf\xd0\x1f\xfc\x9e\x69\xdc\xad\x3c\xc6\xd9\xa2\x76\x39\xfb\xab\x24\xdf\xc6\xca\x39\x70\xe4\x60\x7b\x22\xab\x62\x73\x09\xd8\x2e\xb7\x0a\x0e\x5b\xf6\xc5\xf9\x20\xa7\x69\xb3\x3c\x40\xae\xbf\xd5\x6b\xe0\xff\x85\x3b\xd9\x0d\x31\x75\x1b\x8d\xf4\x0d\x96\xb9\xea\x15\xa9\x66\xd2\xa0\xe2\x38\x02\x44\xcc\xf5\x51\x1d\xdd\xe4\x62\xbe\xa6\x74\x9c\x9e\x02\xee\x9f\xdd\x41\x82\xb2\xc9\x9a\xae\x4c\x72\x84\x97\x5b\xbd\xbe\xd6\x37\x1a\x57\x59\xf2\x8f\xba\x7d\x1c\x73\x77\x50\x4d\x5c\x24\x10\x3a\x0e\x84\xa1\xd5\x96\x58\x18\x76\x6d\xdc\xef\x19\x82\x72\x44\x8c\x01\x0e\x4c\xe7\x94\xb9\x86\xf7\x53\xd1\x35\x19\x4f\xcc\x1b\x8e\x47\x2e\x13\x24\x20\xea\x5d\x32\x0d\xc5\xd7\x6b\x97\xe5\xfc\x1b\xe3\x12\xfc\x85\x03\x31\x23\x53\xdf\x84\x31\x65\xa9\x4b\xf9\xd2\x10\x50\x91\xf7\x7b\xd9\xf6\x88\x9e\x18\x56\x68\x6c\x82\x04\x22\xa1\xaa\xc1\xad\xb9\xd4\x0a\xe9\xea\xe8\x74\x99\x3b\x37\x89\x76\x3f\xdc\x6e\x77\xe9\x27\x47\x75\x9d\x7a\x72\xc7\xd2\x66\xb2\x58\x08\x2d\x21\xbf\x62\x96\x0b\x43\xab\x0c\xb5\xfb\x3e\x02\x36\x13\xb7\x7b\x0d\xb7\x76\x0c\x48\xec\xb4\x8a\x49\xc7\x80\xf0\xf6\x8d\x78\x6e\x1f\x03\x21\x51\xae\xbc\x46\x24\x13\x76\xa1\xd1\xdf\x11\x78\xd3\x34\x1f\x24\x08\xf1\x02\x3f\x63\xce\x9a\x5f\x1f\x91\x4c\x7e\x67\xe3\x65\x9a\x4b\xd2\x5d\xb5\xf4\x8f\x0e\xfd\xc4\x09\x13\x93\xa7\x31\x23\xde\x5a\x44\xe9\xcb\x64\x38\xea\xe2\xe3\xea\x51\x73\xf0\xb8\x22\xbd\x93\xce\x2c\xd3\xe7\x45\x74\x98\x8a\xe4\x30\x34\xf1\x87\xda\x8b\xd5\x47\x3e\x59\x56\xc9\xc3\x4c\x9a\x36\xd1\x19\x46\xaa\x70\xef\x4b\x1c\x93\x40\x2c\xbb\xdb\xae\x2f\x77\x6e\x7c\xac\x4b\x65\xa7\x70\x7e\x42\x42\xc9\x29\x9f\x8d\x1c\x35\x9b\x20\x50\x28\x85\x66\x07\xb1\x21\xb4\xa5\x0d\xc0\x13\x50\x7d\x5c\xe3\x67\x03\xc5\x96\xe1\xa0\x80\xc7\xc1\x6d\x00\x7f\x4e\xe2\xbb\x2f\x78\x86\xc4\x12\x2d\x26\x15\xf6\x0f\xc6\xf3\x3b\x34\x79\xb7\x69\x04\x51\x62\x16\xdd\x1c\xca\xb9\x34\x98\x16\x51\x77\xc2\xd1\xbe\x6c\x8f\x4c\x0c\x60\xe6\x0a\x33\x98\xa1\x2d\xdf\x47\xbb\x29\x71\x2b\xed\x8e\xba\xc2\xe0\xa6\xea\x0a\xf3\x77\xa4\x02\x4d\xc0\x9c\x04\xde\x2b\xcc\x24\x0c\x8f\xf9\x95\xd6\xc8\xb3\xf1\x1c\x30\xe3\xf2\xd2\x76\xd7\xdf\x8a\x4f\xcd\x74\x05\x6f\x8a\x1d\xae\x1c\x33\xd4\xb7\x77\xd6\x31\xb3\xf0\x81\x44\xa6\xe5\xd7\xdd\xe0\x08\x3b\x18\xcb\x9c\xba\xcf\xbb\xc6\xea\xa3\xf3\xb3\x94\xc8\xe2\x8c\x37\x9c\x0a\xf5\xfe\x07\x5f\x3e\xf8\x67\xfe\x0f\xde\x3d\xf4\xa7\x22\x52\xf2\xe9\x9f\xa6\x66\x08\x6f\x17\xf0\xce\x3c\x19\x5d\x95\x12\xf9\x85\x27\x01\xc5\x1c\xca\x40\x08\x1b\x60\x8c\x97\x98\x3a\xbb\x7f\x49\x3b\x5d\x23\xec\x30\x9b\xd3\x56\x74\x3a\xa5\x94\x78\x55\xc0\xfd\xe7\xef\x62\x1a\x7d\x86\xaf\xfc\x7f\x30\x1b\x18\x40\xf0\xa4\x1b\x02\xbe\xb1\xfa\xa0\x93\xbb\x08\x1a\xb8\x4a\xa2\xa1\x88\x7e\xbc\x08\xf1\xae\xbb\xd4\xc7\x3b\x3d\x7c\x62\xd0\x6a\x09\xa7\x52\xd4\x12\x59\x42\x82\xe8\x38\x72\xcc\x3a\x96\x3e\x68\x5b\x7a\x76\xc3\x7b\x57\xae\x0f\x5b\x92\x06\x9c\x9b\xff\xb0\xc0\x70\x59\xac\x1e\xe5\x1b\xe1\x06\xc3\x93\xc3\x61\x9a\x51\x97\xa3\x6b\xc1\xe1\x5f\x1d\xca\x5a\x7e\x3b\x41\x2e\xa5\x0f\x5b\x91\x03\xbc\xc3\x09\xfe\x54\x23\x78\xa5\xd7\x07\x93\x86\xdd\x6c\x68\x1f\xa0\x7a\x9a\xea\x85\x58\x84\x42\x1f\xe4\x16\xe1\x44\x0f\xa2\x75\xcb\xee\x11\xaa\x5a\x6a\x70\x84\x0a\xb4\x5c\x76\x1d\x5c\xfd\x88\xa2\x8c\x40\x59\x14\x64\xe9\x12\x6c\xcf\x69\x50\x18\xbf\x1d\x24\xd0\x18\x3b\x6b\xeb\xcf\xb7\x16\xaa\x6c\x0c\x16\x34\x22\x31\x3e\x59\x3a\x29\x3c\x17\x8a\x07\xd8\x10\xba\x48\x69\x6c\x3c\x66\xe8\xc3\x6b\x4d\x1a\x13\x1a\x3c\x01\x2e\xdf\x76\x13\xdd\x1b\x2c\x13\xe3\x84\x3c\xb0\x04\xc4\x13\xce\xbe\xba\x76\x38\x0c\x97\x3d\xbe\xb5\xfd\xb1\x5a\x1d\x88\x06\x71\x67\xee\xaa\xf7\x8f\x69\xbd\x34\x8f\xb8\x09\x72\xb4\xee\xc1\x80\xb0\xc3\xc3\xab\x7d\x08\x31\x77\x1d\x23\x27\x4e\x8e\x88\x89\x4f\x30\xf3\xe8\x4e\x42\x04\xc4\x3c\xc6\x40\xf3\x42\x90\x48\x38\xc0\x0f\x09\x04\x61\x58\xfa\xed\xe8\x58\x56\xbb\xcc\xcf\x2d\xd7\x89\x83\x90\xd5\x7b\x93\x60\xb6\xa0\x6f\xcd\x51\xaf\x44\x21\x1c\xbe\xac\x21\x8c\x8a\x9d\xba\xd1\x8b\xa8\xec\x03\x3b\xc9\xc0\x4e\xd6\x3f\xb1\xbf\x3c\x8f\xcc\x13\x67\xcf\x70\x21\x04\x15\x37\xcc\xe4\xf4\xe1\x98\xdb\x18\x49\x72\xef\x3c\x69\xb2\x0e\x47\x07\x41\x0c\x65\x18\x0e\x29\x12\xcc\x41\x60\x34\x74\x6d\x8a\x1e\x1d\x99\x28\x1b\x40\x12\xc5\xf0\xf7\xcc\xd6\xf1\x89\x8a\x84\xe8\xde\xdb\xc9\xc7\xeb\xfb\xe3\x51\xc2\xe6\xee\x10\x7b\x91\x85\x69\xa5\xbe\x02\x69\x0a\x61\x3f\x44\xb9\x96\x87\x47\x29\xd9\x13\x99\xa6\xfc\x44\x25\xf2\x93\x60\xfe\x97\x70\x6e\xee\xba\xb9\xb7\xcd\x76\xc7\xfb\x0a\x9f\x6a\x99\x80\x53\xbb\x0c\x6b\x5c\x19\xc4\x6d\x3e\x3f\xf7\x7c\x81\x80\x6d\xe4\xd7\xa2\x5c\x11\xb4\x18\x56\x7a\x14\x53\xee\x11\xfa\x8f\xb1\xe6\xd3\x95\x99\x68\x74\x4f\x0c\xae\xf1\xee\x37\x4b\x34\x1e\x57\x85\x35\x3a\xc0\xb0\xa0\x3f\x77\x74\x19\x61\x0a\x8c\xe0\x4e\x54\x35\x79\x22\xc4\x70\x93\xa1\x6b\x56\xa0\x3d\xde\xbd\xf4\x86\x7b\x3e\x71\xb3\xdd\x09\x0c\x1c\x3c\x3e\xb1\xb8\xb3\x17\x27\x8f\x27\xb1\xbc\x1f\x2d\x30\x08\xd5\x92\xd4\x95\x86\x6a\x19\xe3\xcb\xa0\x61\x8b\xd7\x32\x96\x00\x9b\xd6\x1b\x98\x7d\xc7\x26\x86\x34\x59\x2c\xb1\x01\xc8\x53\x4c\x8c\x8f\xd1\x7f\x7a\x23\x8f\xe4\x78\x39\x38\x5e\x83\x18\x1e\x8f\x03\x9c\xbd\x23\xbe\x8b\x75\x4a\x54\x62\xc7\x66\xee\x6c\x72\xd6\x34\x00\x83\x9b\x37\x71\x55\x95\x87\x82\x52\xa7\x40\xf5\x5d\xc5\xf9\x38\x73\x25\x10\x7c\x39\x5e\x35\x65\xa3\xd6\x62\x34\xf1\x49\x2c\xe6\xf4\xb6\xa9\xde\x59\x92\x58\x3b\x60\x24\x7d\xd9\x59\x22\xbd\x30\x1b\x8f\xc0\xbd\xfa\x02\x89\x3e\xde\x3c\x0c\xa6\xaa\xb9\x37\x9b\xc6\xb1\x55\xf7\x37\xc0\x88\x77\x23\xe2\xbd\x22\xa9\x0a\xfb\x03\x2d\x40\xd0\xda\xa9\x2a\x00\x86\x9b\xdd\x81\x26\x07\x5a\x3a\x48\xfc\xfa\x22\xe4\xdb\xcb\x2b\x18\x71\x69\xd1\x88\x65\x59\xf3\x09\x9f\xff\x85\x44\x44\x3c\xd1\xc5\x0f\x33\x2a\xf9\x64\x2f\x6d\xf8\x86\xcb\x03\x46\x37\xa5\x45\x46\xa9\x57\x7a\xde\xf9\xf0\x6c\x26\xa0\x8b\x31\x37\xc7\x6b\x89\x70\x76\xda\x97\xcb\xea\x9a\xb8\xda\xd7\xb4\x56\xb5\xbc\x07\x64\xfe\x27\x77\xba\xd1\x87\x91\xe0\x96\x22\xdb\x7c\xfd\x21\x2d\x99\x7e\x7f\xe8\x49\x38\x9a\x9e\x21\xe8\x54\x28\x12\x9b\xe1\xbb\xf4\xb8\x38\x15\xe4\xec\xaf\xf8\x90\xc9\xf5\x16\xdd\xe7\xec\x83\x51\x1f\xfc\x03\x52\xd2\xf4\xe7\x52\x76\xad\x6a\x86\x17\xc7\x42\x5f\x38\x30\x78\x87\xd8\x1c\xf8\xbe\x07\xdc\xa6\xe0\x52\xde\x19\x81\x47\x1e\xdf\xcb\x54\xb4\x08\xb5\xda\xf3\x65\x60\xd9\x6c\x8e\xba\xb1\x3e\x65\xb2\x8d\x38\x44\x74\xed\x66\x38\x4e\xc1\x7d\x31\xc6\x4a\x73\x24\x34\x1e\x4a\x3c\x8b\xb9\x2b\x6e\xe5\x8d\x2c\xb6\x99\x76\x74\x7a\xd6\xab\x70\x1b\x89\x9f\x29\xd8\x34\x37\xac\x8e\xb5\x7b\x1f\xa3\x25\x19\xf7\x2d\x5a\x13\xcd\x84\x38\x01\xd2\xed\x1b\x89\xc2\xf0\x4e\x7f\x8e\x81\xc4\x48\xc2\xa3\x7a\x29\xbf\xc6\x20\x7b\x7d\xd4\x21\x3c\xef\x30\x06\x59\x34\x2b\x5e\xb3\x9f\xe8\xcf\x58\x67\x17\x5e\xa9\x36\xc5\x1d\xf6\xf2\x9e\x6f\x48\x8a\xcf\x2b\x67\x10\x76\x96\xdb\x6b\x09\xbf\xcc\x02\x66\x69\x17\x01\xc1\xb1\xe8\x3b\x71\x1c\x77\x03\x15\xe8\x3c\x21\x70\x14\x5e\x8c\xf1\xb6\x7b\x7d\x8b\xd2\xc7\x54\x1c\xf6\x49\x6e\xb9\x69\xbf\x5e\x89\x70\x80\xd5\x84\x4d\x4b\x1e\x15\x3a\x61\xe1\x7a\xef\x2e\xd4\x98\x42\x6a\x2f\x0f\xfa\x70\x34\x4b\xa2\x01\x08\x69\x6e\x20\x22\x5d\xc9\x65\x2a\x17\x52\x24\xf2\xd4\x1c\xce\x8e\x27\x6c\xdc\x23\x0d\x01\xc3\x13\x24\xc1\x5f\x46\x10\xd1\x6d\x12\x40\x16\x6c\x6d\xc8\x23\x29\x78\xd4\x5e\xbe\x4c\xc8\x87\x23\xc0\xc9\xf3\xe1\xe8\xa8\x3e\xd4\x23\x4a\x16\x26\xac\xa6\x53\x71\x2e\x12\x3c\x57\xac\x77\x72\xc4\x90\xdf\xfb\xe4\x1b\x6f\x50\x49\x90\xa0\x5b\xb4\x1a\xa0\xab\x34\xc2\xcc\x97\x85\x40\x80\x7d\x0c\xd0\x62\xdb\x35\x56\x85\xdc\x27\xfa\xc0\x97\x34\x68\xbd\x21\x3b\xa8\xf2\x8b\xc5\xb8\x68\x9b\x61\x5a\x7c\xd8\x33\x79\x16\x5a\x6f\xed\x60\xc8\x8f\xff\xfd\xf2\xed\x9b\x93\xfc\xd3\xd3\x9b\x9b\x9b\xa7\x5c\xfc\xe9\xa1\xdd\x72\x78\xbd\x15\x07\x92\xff\xff\xcf\x5f\x9f\xe4\x65\xbf\x7c\x32\xcb\xcf\x85\x6a\x47\x62\xa8\x0e\x09\x70\x36\x82\x75\x9f\x08\xc4\xef\xa7\xe6\xba\x63\x54\x0b\xea\x1f\x45\xf1\xcc\x1d\xaf\x9e\xb9\xa2\xdb\x7b\x22\x70\x49\x77\x8c\xc2\xb2\x2d\xe1\xc9\x8d\x1f\x2e\x83\xb8\x86\x0f\x53\x21\x87\x87\x20\x15\xb5\xa3\xdd\x78\xb5\xd4\x27\x8e\x07\x20\xe6\xbc\x78\x06\xb7\xc5\xa8\xa0\xe5\x85\x0b\xa7\x30\x6b\x5c\x89\x4a\xb1\x95\x2c\x39\x60\x16\xa5\x2d\x44\xb9\xfa\x71\x58\x18\x57\xe3\xf1\x42\xe7\xf7\xf9\xbf\xe3\x1e\xe8\xc6\xcc\x2f\x9c\x65\xb8\x05\xe0\xd9\xb0\x30\xde\x5e\x72\xd2\x0f\x0d\x40\x5e\x94\x32\xe9\x2b\xe6\x05\x09\x6c\x54\x89\x2a\xc3\xd8\x05\x9c\x5f\x7b\x31\xe5\x18\x70\x4d\xaa\x1b\x17\x49\xcd\xf3\xd3\xd9\x36\x2f\x72\xeb\xf1\x44\xef\xcb\x9b\xed\x7a\x3c\x0f\x89\xfb\x47\xe2\xf8\x71\x07\x68\x88\xc0\xe2\x9d\x36\xc4\x0d\xf8\x44\x9c\x9b\x57\x27\xb9\x39\x06\x9f\xa8\x11\xee\xc4\xae\xae\xd0\xaf\x43\x1d\x7f\x8b\x53\xa6\x0a\x44\xf6\x09\x27\x00\xfe\xe4\xb0\x95\xb7\x34\x12\x9a\xc5\xea\xef\x13\x93\x82\xc3\x54\x22\x1b\x4c\x2e\xb2\xa3\xf0\x00\x55\x25\xdc\x58\x7c\x17\xd2\x9a\xeb\x13\x6d\xe5\x30\xc3\x3d\x86\x5d\xf6\x88\xc1\x3b\x45\x4d\x44\x5b\x15\xf0\x2e\xee\x7f\xa3\xd0\x7a\x7e\x0a\x2b\x2a\xf1\xcb\x12\xfa\x07\xe2\x97\x4a\x3c\xd3\xc7\xf9\x6c\x44\x5d\x23\xef\xaa\xd4\x75\xc4\x9f\x29\xe0\xa0\x8d\x11\x5b\xa4\x4b\x31\x16\xa7\x62\x0b\xc7\x38\x40\xb9\x32\x61\x9c\x89\xbd\x03\x80\x20\x90\xcf\x42\x5a\xca\x4f\x1b\x9d\xc1\xc9\x91\x12\x19\xdc\xfd\x03\x25\xf0\x67\x02\x73\xe6\xa9\xd3\x35\x83\xc0\xe5\x9a\x2d\x25\x16\xd4\x64\x14\xb7\xd5\xf3\x2a\x52\xab\x45\xe1\x93\x68\x81\x83\xcc\xe1\xab\xf4\x43\xda\x44\xcc\x79\x2d\xae\x16\xf2\xcb\xcf\xd6\x7e\xdb\xdc\x5a\x68\xdb\x67\xf8\xd2\x70\xfd\x7e\x64\x11\x4c\x07\x15\x21\xa7\xea\x8a\xcc\x34\xa0\x50\x3b\x64\x4a\x56\xc2\x3f\x95\x57\x98\xb1\xa4\xac\xd5\xa6\x3a\x2d\xe8\x0c\x62\xe1\xc3\xba\x90\xc6\x01\x94\xf7\x7d\x35\x42\xac\x9b\x1a\x84\x35\xf1\x03\xf8\xab\x7b\x59\x4f\xa5\xa8\x9a\x15\x41\xa1\x1b\x5e\x6f\x91\x38\x07\x4d\x8d\x62\x1c\x92\x35\x40\x0d\x43\xc7\xc6\x91\x1e\x0d\x1d\xeb\x8b\xfa\xf8\xb1\xae\x28\x4e\xfe\x30\x09\x93\xd6\xf0\x64\x59\xc6\xd1\x61\xe3\x50\x3f\x23\x40\xec\xf4\xca\x0d\x45\xa7\x7b\x97\xfa\x2e\x67\x98\x95\x1f\xdc\x67\x84\x8a\x1d\x5e\x38\xfe\x0c\x29\x6a\xaa\x2f\x71\x52\xdc\xec\xde\xe7\x1a\xb3\xaa\xae\xaf\x67\x8b\x96\x84\x08\x8e\xc7\x8a\xb7\xcb\xf9\x6c\xe2\xef\xfc\x12\xdf\x02\xa2\xd7\xe8\xbf\xd7\xfb\xf4\x92\xa8\xb7\x3e\xbe\x57\xb7\x5e\x49\x84\x3f\xea\xf0\x2d\xe7\x67\x94\x23\xbe\xa9\x6f\x1a\x04\xd6\x97\x9c\x99\x14\xc1\x83\xb9\xfc\x0b\x91\x64\xc3\x83\xb9\x28\x74\xc9\x29\x0e\xac\xdb\x6f\x89\xff\xd6\x87\xc3\x2f\xf9\x03\x11\x5a\x1c\xc4\xa1\x26\x49\xbc\x5c\x19\xcc\x2f\xf2\xe9\xa1\xb8\xca\x70\x3d\xc4\x54\xb0\x7c\xeb\x49\x6f\xa2\x43\x78\x88\xca\x59\x60\xa8\xc1\x11\x18\xa1\x55\x05\xe9\x20\x82\xf8\xc8\x93\x0f\x57\x41\x31\x14\x21\x74\xa2\x41\xb0\x7e\x7a\xf5\x46\x3e\x71\x75\x59\x6f\x45\x23\xcc\xcc\x73\x84\x2f\xe1\x2c\x7d\x55\x62\x8f\x9b\xf0\xa5\x5c\x3f\x26\x38\xce\xcb\x5d\xb2\xb9\x6d\x4a\xb8\xeb\x10\x68\x46\xea\xe0\x80\x34\x3b\xa2\x05\xc1\xd7\xf9\x92\x55\xaf\xfa\xce\x7f\x69\x2f\x83\x71\x30\x9a\xe8\xfe\xd9\x70\xc8\x8f\x5a\x83\x74\x84\x09\x31\x2d\x05\x57\x9b\x59\x6c\x9d\xd9\x54\x8c\x1d\xcb\x93\xd0\x48\xa2\x2d\x97\x5d\xaa\x20\x01\x62\xd5\x16\xd7\xf0\x0d\xe4\xbf\x21\x95\x06\x16\x8b\x5d\xb4\xe5\xd3\x61\x31\x5a\x3c\x41\xa9\x4b\xfc\x08\xe9\xea\xdb\xc7\x7f\x42\x5a\xb1\x11\xbf\x92\xb8\x32\x71\xc5\xcc\x37\x1c\xb7\xd8\x35\xc0\x81\x6e\xc4\x41\x83\xd8\x05\xf1\x81\x4d\xec\x11\x04\x4b\xf2\x63\xf5\x4e\x83\x08\x8e\xdd\x6d\xf2\x30\x3f\x1c\x4f\xac\x97\xc0\xb7\xfb\xb6\x59\x1d\xf8\x3d\x04\xdf\xef\xa4\xb4\xb0\x2f\xa5\x61\x23\xbf\x12\x0b\x19\x03\x71\x52\xe4\xbd\x02\xf6\x85\x69\x69\x22\xf8\x8d\x16\x89\xa5\xa0\x9b\xbc\xda\x51\xfd\x1f\xe5\x4d\x60\xa9\x9e\x78\xcb\x10\x98\x97\xd8\xcc\x5a\x62\x83\x5a\x1e\xf4\x53\xf6\xea\x50\x52\x26\xbe\x00\x6a\x46\xe1\x18\xd6\x82\xf2\xc1\xf7\x2d\x7d\xac\x2b\x66\x62\x39\x50\xb9\x8c\xdd\x75\x20\x39\x71\x2c\x75\x7c\xca\x58\x4e\xea\x2f\xe4\xd0\x42\xb7\xb3\xde\xef\x0f\x39\x2c\x1f\x09\x93\xff\x5a\x7e\xb1\xf6\x73\x8c\x4d\xe3\xd0\xd1\x94\xf7\x74\xb8\xd6\x0e\x3e\x4c\xc0\x5f\xca\x47\x6c\x63\x69\x88\x77\xc9\xc5\xff\xad\xe8\x13\x4c\x31\x85\xa9\x2e\x2d\x6d\xfb\xa7\x38\xbe\x62\x37\x86\x5e\x9f\xa1\x39\x45\x94\x88\x32\x23\x6c\x67\x7f\x3a\xdb\x29\x70\xa8\x4b\xb7\x0b\xb0\x27\x6e\x18\x78\xb6\x8e\x36\x9a\x30\x87\x11\x2a\x35\x94\x4d\x00\xcb\x51\xa8\x59\x51\xc1\x3e\x84\x99\x3e\xfd\xac\x9d\xa1\x07\x1d\x5e\x02\x61\x5d\x52\xb0\x39\x11\xca\xdc\x71\xd6\x8d\x5a\xf3\x86\x1b\x69\xe2\x9e\xc3\x6d\xb8\x07\x52\x7f\x3c\x57\x8f\xb2\x20\x4c\x41\x75\x8f\x8c\x58\x90\x51\x5d\xea\xbf\xec\xf6\x95\xe1\x41\x78\x52\x57\xfb\xaf\xb7\xb5\x70\x30\xdb\xef\x2c\xfb\xb5\x69\xd7\xef\xe3\xd3\x88\x41\x8f\x9f\xa8\xe2\xa1\xcd\x61\x98\xf0\x94\xd1\x11\xc0\xf8\xbc\x51\xac\xd1\x10\xf8\x05\x6f\xd3\x54\x03\xcf\x00\xa2\x4b\x93\x17\x7b\xe1\x97\x6a\x91\x7e\x43\xe8\x10\x79\x95\x4d\x1d\x46\x7d\x73\x12\x75\x2e\xba\x21\xfe\xa2\xf7\xaf\xd5\x05\x9a\x23\xa3\xf1\x0f\x7e\x38\xaf\x62\xd3\x1b\x1d\x3b\xe2\xce\xf2\x0a\x09\x38\x87\xd8\xa3\x85\xdf\xec\x13\xad\x28\xfd\xcd\x10\xf8\x4c\x4d\x07\x9c\xaa\xbf\x34\x7d\xf0\x78\x59\xf2\xd8\x98\x8b\x7f\x84\x67\x00\x13\x2f\x57\xae\x1c\xb3\x32\xe1\xff\x1e\x5e\x96\xd4\x4e\xc8\x14\x22\xf5\x2e\xe8\x24\x8c\x2e\x53\x07\xb9\x39\xc1\xeb\x5f\x88\x2f\xb1\x5e\xba\x57\xa4\xc2\xd3\x84\x75\x72\xc7\xb4\x9b\xc5\x66\x1c\xad\xd9\x88\x73\x7c\x2c\xc6\x4c\x23\xfc\x6e\x7f\x14\xf8\x24\x84\xa5\x2a\x58\x0a\x09\x83\x2d\xc9\xf9\x96\x24\xdd\x6d\xa2\x71\x41\x45\x2c\x21\xfc\x78\xe4\x71\xb5\xf1\x53\x9c\x5f\x1e\xc0\x74\x5c\xc7\xdd\x21\x4c\x9d\x7f\xe2\xd8\x2d\xf1\x0e\x4f\xd5\xe9\x47\xbd\xbc\x5a\x79\xf0\xba\x57\xc8\x9a\x7a\xe6\xeb\xf7\x38\x70\xa6\xa0\x8e\x2c\x25\x53\x10\x6a\xfa\x5c\x93\xb2\xfa\x85\x12\xa6\xfe\x6b\x6e\xa1\xe9\xe3\x95\xc3\x5e\x8f\x5e\xa2\x4a\x3a\xfd\x65\x2f\x52\x1d\x75\xc1\x48\x68\xc5\x50\x49\x31\x0a\x03\x8f\x01\xde\x59\x24\x0d\x0a\xef\x3b\x1c\x14\xeb\xce\x05\x42\xad\xa6\x12\x0e\x5e\x8c\x6b\xf7\xc7\x84\x3f\x62\x3a\xbf\x2b\x38\xfc\xb0\x97\x4c\x63\x42\xe8\x05\xdf\xc9\x3b\x4b\x78\xbe\xa4\x19\x98\x61\x7f\x7f\xc0\xf8\x69\x8b\x28\x2b\x31\x6e\x4c\xfb\x0c\x3e\xc6\xe6\x2f\x6a\xc4\xae\x5d\x18\x2e\x91\x58\x23\xa1\x8d\x33\x07\x0e\x54\x26\x77\xf0\x58\xaa\x52\xed\x59\x7c\x6b\x73\x9e\x04\x89\x3f\x8f\xaf\x79\xc6\x78\xf1\xdf\x86\x62\xea\x1c\x69\x2f\xcc\x0c\xd2\x23\xa5\xc4\x2d\x8a\xbd\x44\x6c\x8f\x40\xf2\x0d\x2e\x71\x32\x67\x58\x3e\x6d\x43\xfe\xce\xdb\x66\x5b\x86\x8e\xe6\xef\x1a\x76\x6f\x35\x90\x34\xf0\x40\x5a\x30\x94\x09\xe9\x2a\xf8\x5b\xc4\xee\x90\x2e\x8f\x93\x22\xba\x88\x4b\xd5\xd3\xd2\xad\x95\x70\xd6\x5a\x3b\x04\x95\x6f\x87\xd0\x35\x22\x81\xe9\xb9\xfa\x86\x9f\xcf\xc4\xa1\x3a\x43\x64\x03\x79\xfc\x53\x53\xd2\x46\x25\x8d\x79\x1c\x7d\xa7\x24\x17\xf7\x7b\x7d\xc9\x62\x9c\x3f\x88\x14\x8d\x33\x25\xc4\x88\xb6\xd7\x6f\x99\x45\xd7\xf8\x19\xb5\x98\x8d\xd3\xd0\xc9\x52\x2b\x58\xfc\xd8\xac\xdc\x31\x49\xda\xf5\x10\x9f\xd3\x30\xee\x0f\x0c\x9b\x3b\x31\x15\x2e\x34\x6b\xaa\x5b\x96\xf7\x9d\xa4\x15\xf8\x2a\xc6\x7e\xc8\xab\xf1\x49\x3f\x3c\xc4\xe7\xf4\x83\x5b\xc1\x5d\x6d\x11\xf9\xee\xe8\x0f\x07\x93\x13\xf7\xca\xc4\xa5\x6a\xd8\xc5\x18\xc3\xf8\xca\x9d\xe4\x70\x4b\x5b\x0d\x38\x13\xb6\xf9\x8c\x8f\x54\xc9\x11\x2f\xa2\x09\xe6\x41\x5c\x44\x27\x9f\x78\xb9\x9f\x08\xe0\x52\x3c\x97\x0c\xa0\xce\xf9\x33\x09\xd8\x37\x3e\x97\xa4\x5f\x91\xd9\x03\xf7\xa5\xb4\x41\x33\xef\x3f\x92\x05\xce\x02\xc9\x0a\xe7\xe7\x0f\x15\xb0\x7e\xb6\x92\x2b\x40\x44\xd7\x14\xde\x60\xae\xd5\x71\x65\x81\x98\x03\x2a\x10\xf1\x31\x9c\xed\x58\xcf\xb7\x39\x7b\x42\x09\xb3\x89\x0d\xd5\x5c\xf1\x00\xc5\xc6\x7d\xef\xfa\xca\xa1\x21\x1a\x7f\x9f\xb6\xba\xf3\x7e\xdc\xb8\x2b\xf1\x5c\x97\xf7\xb5\x03\xc2\x1c\x15\x93\x66\x7e\xab\x8f\x11\x24\xa2\xdd\xba\x45\xbc\x00\x5b\x6b\x26\x16\x0e\x15\x50\xe1\xb7\x61\x94\xac\xb0\x18\x50\x03\x78\xc4\x50\x45\x8f\xee\x22\x0a\x5f\xd0\x01\x90\x8d\xbb\x7b\x00\xb2\x20\x11\x6a\x38\xf2\x6b\x24\x01\x77\x75\x44\xf6\xfc\x17\x74\x04\x74\xe3\x33\x3b\x72\x62\xbd\xd0\x97\x72\x57\xab\xc9\xfd\x7f\x57\xff\x06\x82\x10\x90\x33\x79\xca\xd9\x88\x01\x3c\xc5\x20\xa9\x4d\x7a\x8a\x39\x85\xf3\x6c\x36\xdc\x25\xce\xd5\xcd\xed\x14\xe7\x55\x6b\x7d\x81\x53\x9b\xde\x3e\xd0\x53\x2e\x56\x55\xd3\xba\xe3\x09\xb8\xba\xf7\x37\x14\xd2\x68\xf3\xec\x68\xdd\xb7\xb7\xca\xe9\x20\x06\x70\x12\x2c\x3f\x46\x2e\x17\x99\x0e\xce\x1d\xf2\x8e\xf6\xaf\x58\xab\xf7\xd9\xaa\xe8\x36\x16\x2d\xf2\x99\xfd\xce\x44\x57\x26\x06\x6e\x3c\xaa\x1c\x5f\x53\xce\x87\xaf\x2b\xdf\xf9\x34\x76\xfa\x78\xfa\xf0\x35\xf5\x4e\xde\x13\x5a\x1b\x8b\xb8\x3e\xe8\xad\x39\x75\x86\xe5\x19\xc7\x6d\x2a\x56\x7d\x73\x42\xb6\x6b\xea\x4a\xfc\xee\xce\xe5\x57\xc5\x4f\x63\xfb\xab\x9f\xcf\xf9\x43\x62\x69\x6b\x0a\xdf\xf4\xcb\xfa\xa6\xc7\x2b\x1d\x57\xfc\xf7\xdb\xfc\xe1\x2a\x8b\x43\x87\x56\x9b\x15\x74\x4b\xd1\x8d\xca\x6f\x97\xef\xde\x61\xc6\xc5\xf5\xd6\x1e\x96\x8e\x35\xa0\x9b\xd0\xc1\x1f\x5c\xb7\xb5\x93\xa8\xf4\xd0\x4d\xb5\x68\xf7\x39\xe1\x0d\xc2\xfa\xff\x85\x69\x67\xbe\x5b\x40\xe9\xba\xf8\x41\x34\x97\x27\x2e\x21\x59\x10\x9f\xb1\x0f\x6f\x0b\x26\xc9\xe9\x51\x1a\xd3\xe5\xad\x90\x24\x89\x83\xd4\x26\x09\xc5\x72\xd4\x8a\x59\x60\x7c\x9a\xb9\x3f\xc7\x14\x73\x84\x4e\x6a\x4f\x1f\x98\xf3\x59\xe2\xf1\x9f\x24\xc9\xed\x92\xc1\x48\x44\x2f\xec\xd3\xb6\xcd\x9a\x8e\x4e\xd1\x35\xa7\xc3\x53\x7e\x3d\xad\xd3\xee\x45\x27\x55\x20\x3c\x94\x4f\x81\x31\xb8\x2f\xba\xb4\x34\xf6\xa7\x4f\xb0\x38\xe4\x43\xc0\x18\x87\x88\x88\xcf\x04\x22\x99\x18\x1e\x90\x49\x64\xf1\x29\xc8\xee\xa6\x92\x37\x1c\x2e\xf1\x63\x12\xa6\x3d\x40\xeb\x78\xa8\x5d\x2e\xbb\x19\x70\x5c\x0b\xbc\xc1\xd7\xe8\x8b\x27\x1c\x78\x20\xbc\xb7\x97\xbf\xc5\x76\xec\xee\x2c\xe4\xce\x45\xf6\x47\xd7\x37\xfe\xb4\xa4\xbb\x69\x30\x7d\x40\xc6\x9a\xf5\xa8\x55\x3f\xaf\x22\xca\x87\x5d\xe4\x3c\x0a\xc4\x40\x51\x6f\x05\xcb\xfe\xac\x3a\x06\xbd\x8c\x10\xa1\x9a\x2f\xef\x2a\xe8\x3f\xd3\x7b\xea\xcd\xa0\x93\x09\xcd\x33\x90\x7b\x6a\x18\x74\x71\xb2\x8a\x2f\xef\x24\x4e\xda\x7a\x2d\xa7\xce\x91\x4e\xde\xe2\x91\xc6\x76\xa5\x82\xeb\x96\x9d\x6a\x5f\x98\xa3\xdf\x3d\x55\x1e\xeb\xf5\x9d\x75\x7e\xc1\x30\xd6\x55\x3f\x5f\x2f\x63\xf7\xf9\x81\xda\x76\xc1\x84\x9b\x0f\xf7\x72\x29\xf1\x75\xea\x54\x69\x39\x5d\xfc\xae\x09\x46\x87\x58\x5d\x31\x55\xfd\xb1\xbe\xb5\x25\xbb\xe7\xb0\xa2\x8e\xdf\xf3\x55\x97\x81\x77\xa5\x98\x59\x1e\xcd\x28\xed\xeb\x42\x1f\x0f\x2a\x61\x5c\xef\x1e\x49\xb0\xe5\xc7\xcb\x02\x77\x13\xbf\xa5\xa3\xb8\x7e\x0a\xd2\x8e\xd2\xc6\xd9\xf2\x6c\x3d\xb9\xb3\xa1\xc1\x58\x1c\x5d\x77\x73\xdb\xa2\x2b\x7d\xf9\x59\x23\x70\x0e\x32\x7e\x18\x8c\x28\x4a\xc4\x40\xf2\x88\xc7\x4e\x26\xee\x31\xbb\x6b\x21\xc8\x36\x5f\xad\x13\x1f\x4f\x3d\xb4\x2d\x2e\xbc\x5a\x3a\x8f\x0c\xc8\xb7\x7b\xc7\x0a\x3d\x4a\x7a\xf1\x65\x63\xe4\x07\xc8\x46\x1b\xe1\x1d\x92\xf5\x41\xb2\xdf\xb5\x1d\xa6\x2a\xfe\x57\xb7\x43\xeb\x7a\x35\x7a\xa5\xde\xb1\x07\x78\x82\x89\xe6\xae\xaf\x70\x4c\x5c\xca\x93\x4c\xbf\xe0\xdb\x93\x6b\x7d\x86\x7f\xdd\xb4\x0d\x61\x9c\x04\x6f\xd6\xe7\xe4\x5f\x58\x5a\x37\x51\x00\x16\x8b\xdb\xf9\x41\x63\x55\x58\x99\x73\x24\x13\xdb\xc7\x81\x1e\x62\x29\x30\x4f\x56\x86\xf5\xd0\x4b\xb5\x5e\x80\x9b\xb2\x52\xa7\x96\xe1\x4a\x6a\x99\x66\xc1\x17\xbe\x34\x86\x17\x80\xdf\x6a\x8a\x83\x85\x9d\x90\x23\x22\x13\x06\x1c\xf6\x73\x1e\x2a\x42\x38\x48\x72\xfe\x1a\xc9\xf9\x15\x27\x8f\x5b\xb0\x5e\x85\x62\x83\x4e\x1d\x2b\x77\xdd\x96\xa3\x32\xcf\xf9\xe5\x9e\x21\xbc\xcd\xdc\xa6\x2c\xf6\xa3\x79\x7b\x49\x89\xa3\x59\x03\xe4\x78\x02\x00\x7b\x7c\x16\x7c\xa9\x6a\x05\x21\xda\x97\x78\xb5\xda\x1e\x6b\xa3\x82\x77\xd1\x10\xbe\x66\x26\xfe\x48\x09\xe5\xa6\x86\xbd\x52\xdb\xde\xa8\x57\xcd\x82\x43\xb2\x74\x06\xfd\x56\x3e\x1d\xd4\xa2\x69\x7a\x92\xe5\x08\x94\xd8\x48\xb8\xca\xca\x34\xfd\x64\xe9\xcc\x08\x2f\x3f\x8c\x66\x4a\xa0\xc7\x53\x25\xd0\xc7\xe7\x6a\xc7\xef\xa7\x51\x5b\xed\x61\xd9\x1f\x88\xe6\x84\x06\xcf\x2f\xf9\xdd\xb5\xcb\x90\x31\x6a\x71\x54\xd2\x63\xe8\xb0\xf0\x54\xcb\x4b\x7e\xfd\x6e\xb2\xe9\x33\xce\xb9\xb3\xed\x51\x59\xdf\xf8\xa8\xf8\xd4\x4e\x69\x1b\x22\x2c\x4c\x94\x16\x87\xe5\x87\xb2\xe7\xcb\xec\x9b\x39\x9c\x3a\x7c\x5d\x17\x06\x96\xff\x04\xb0\xfc\x25\x81\xe5\x57\xd0\xb8\x4d\xd4\x4a\xe7\xe8\xae\xec\x0b\x38\x21\xb9\x5a\x5e\x9c\xd1\x0a\x48\xf2\x54\x29\x68\xe2\xe6\x2a\xff\xe8\x2e\x64\x96\xd4\xd5\xf0\x16\xca\x3a\x15\x89\x4e\x03\xc8\x54\x6d\x1c\x97\x59\x0e\xf4\xe5\xed\x52\x5f\x6c\xfa\xd4\x73\x1f\xde\x49\x8a\x83\x85\x8c\x47\xb0\x46\x23\xe1\x87\x82\xb0\x2e\x04\x7e\x95\x12\x4a\xa1\x60\x11\x58\x08\x17\xc1\x5d\xb0\xef\xce\x14\xe0\xbe\x90\xcd\x74\x14\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x32\x95\x42\x56\x44\xc0\x96\x7b\x5f\xfa\xe4\x35\xe1\x1c\xfc\x1c\x70\xed\xcb\x1e\xbc\xe6\x34\x85\x65\x0b\xad\xb3\xa8\x44\x23\xad\xbd\x02\xac\x60\x22\x57\x40\x9a\x90\x14\xe3\x84\xf1\x02\x87\xfd\xb6\xbc\x24\x0c\x8d\xa4\xc5\x03\x94\xfe\x6a\x9a\x85\x07\x0b\x41\xd3\x35\x1d\xee\xe2\x6d\xb9\x66\x45\x85\x5c\x24\x47\x18\x2e\xdc\x08\x7a\x87\x64\x93\x6e\xfc\x1d\xaf\xab\x06\xa3\x74\x03\x4b\x9d\x12\x6d\x98\xf7\x87\x28\x9b\x69\x1d\x3e\x40\xaf\x8e\x0c\xa2\x8b\x79\xe5\xa5\x6a\x07\xf3\xce\x13\x48\x79\x6e\x50\x0c\x9b\x5b\x5f\x1a\x72\xa5\x09\x6a\x83\x1a\x5e\x43\xe6\x74\xb3\xbc\x2f\xba\x8e\x1f\xf6\x8d\xaa\x6e\x18\x0b\x58\xe5\x22\x17\x53\xa0\x6a\x87\xdb\xed\xa1\x56\x8e\xc9\x7a\xaf\x2c\x92\xec\x6a\x1f\xad\xcd\x1e\x4b\xd6\x9c\xfb\x8c\x8a\x71\x2e\x1c\xa6\xc0\xaf\x25\xc5\x91\x5d\xf1\x49\xdf\xde\x8b\x8f\x7b\x9e\xeb\x33\x9e\xee\xfe\xec\x99\xe5\xbe\xe6\x17\x3d\x8f\x95\x35\x1d\xdf\xe3\x4b\x22\x30\x4f\xbf\xc1\xe3\x5c\xb4\x1f\xd6\xdb\x66\x51\xb0\x13\x8b\xbc\xd3\x8a\x47\x41\x9f\x68\x1d\xfc\x1a\x90\x43\xca\xe1\x5b\xcf\xc5\x00\x49\x69\xf4\x9b\x6a\x41\x83\x12\x41\x7f\x5c\xc0\x00\xe4\x22\x18\xa0\x5c\x4b\x8a\xe2\x49\x21\x84\xf5\xe0\x0c\xc1\x50\x7e\xa4\x2b\x28\x2d\x0d\xe7\x61\x6f\xe7\x7b\x3d\x73\x75\x0c\x1f\xd5\xe0\xca\x40\xb9\x2c\x7b\x92\xd9\x3e\x89\xa3\xe4\xeb\x91\x47\x31\xe7\x86\x6c\xf7\xd5\x75\xf4\x0d\xcd\x49\x94\x89\xfa\x7d\xc3\x18\x21\xfd\x86\x9c\x77\x9a\x8f\x53\xdc\x40\x20\x52\xbe\x9a\x1d\xb5\x8e\xae\xa7\x12\xa6\x94\xfb\x1b\x2f\x57\xf3\x8b\x42\x39\xf3\xbc\x88\xf7\xcf\x22\x96\xbf\x2a\x1f\xa2\x5b\xc4\x00\xf5\xec\xb6\x1b\x63\x67\xd0\x91\xa0\x3a\x49\xdf\x01\x8e\xce\x22\x3e\x34\x47\xda\x8f\x36\x52\x84\xc6\xf3\xcd\x7b\xed\x58\xda\x01\xb1\xe3\x35\xad\xf7\xad\x4a\x95\x9b\x49\x57\x26\xdc\xa7\x4e\xdd\x92\xdd\xe5\x1b\x4c\xb5\xca\xfd\xe1\x01\x75\x4f\x8c\xdb\x09\x95\x47\x09\x4f\xbd\x91\x90\xba\xf9\x20\x29\x1a\x7e\xcc\xe6\x23\x2a\x58\x10\xee\x61\x7b\x6e\x3b\x27\xad\x49\x89\xf1\x9b\xe8\x69\x17\x24\x65\x6c\x1a\x96\x74\xd5\x1e\xe6\xf6\xd0\xb0\xaa\x82\x67\x50\x21\x0a\xf7\xd6\x5a\xda\xf0\xcd\x4a\x68\x86\x95\xce\x0e\xba\x3c\xa0\xb4\x49\xb7\xa5\x94\x84\x38\xb5\xab\xf6\x4a\xcc\x35\xcb\xf5\x5e\x52\xfc\xab\x23\x92\x52\x22\xc6\x10\x53\x1e\x89\x36\xb4\xd2\xf4\xb1\x53\x96\xeb\xa4\x56\x33\xe8\x9c\xab\x15\x50\xd3\x87\x85\xeb\x4d\x57\x92\x1c\xc1\xaf\x89\xd3\xce\xed\x9b\x65\xb3\xc5\x69\x29\x69\xbc\x69\x91\xa6\xb0\xc3\x5b\x1a\x92\x8a\x2b\xd1\x7c\xa5\xa4\xeb\x35\x65\x2f\xef\x8e\x5c\xf0\xbb\x23\x92\x02\xed\xdd\x0a\xfe\xd2\xac\xac\x7b\xf6\xc6\xa7\xdb\x49\x65\xb9\x17\xfa\x3d\x05\xe3\xdc\xab\x8a\x96\x9f\x3d\xf9\x56\x03\x01\x5b\x1d\x08\x5d\xdc\xb4\xe2\xe7\xbc\xdf\x72\x7f\xf9\x99\x63\x18\xde\xd8\x0c\x71\x40\x10\xd0\x4d\xb5\xde\xc0\xe3\x80\x48\xd2\x5a\x5c\xf8\x79\x17\xcd\x6c\xe2\x99\x0d\xd2\xf8\xe6\x60\x7f\xd4\xcc\xf2\x13\x7b\x57\x3a\x10\x8c\x08\x00\x61\x44\x45\x2f\x81\xa0\xca\xa9\x6b\x79\x79\xc8\x3d\x0a\x3d\x7c\x1e\x08\x04\x22\x1c\xd8\xdc\x7b\xbe\xca\xf5\xb4\x42\xd4\xd2\x9d\xbe\x85\x28\x77\x4c\x93\x80\x57\xb3\x51\x0b\xe6\x67\x85\xf0\x93\xf7\xf4\xa6\x3b\x58\xd7\x2f\x0f\xf7\xf5\x9c\x50\x01\x41\xde\xf0\xf7\x28\x58\xc7\xd2\xe0\x42\x1f\xdf\x2a\x59\x7f\x1c\xb3\x78\xa9\x14\x2f\xe4\xf2\xc9\x27\xc3\x1b\x09\x85\x69\x93\x2c\xa1\x30\xad\x66\x98\xf6\x02\x80\x18\xfc\x13\x88\x1d\x9f\xb5\xf3\xae\x60\xc2\x44\xa7\xca\x2a\xbf\x3c\x35\xa4\xdf\xf5\x7b\x7b\x72\xfb\xf2\xfc\xea\xe2\x8e\x5d\xc4\xa0\x8a\xe1\x80\x74\x68\xce\x59\x8a\xea\xc8\x72\xf8\x6e\x01\x1a\x64\xc7\xa8\x72\x06\xce\x75\xb2\x75\xba\x69\xb8\xbb\x78\x35\x46\x5e\x92\xbe\x68\xce\xf8\xe1\x7b\xbe\x14\x24\x65\x66\xf9\x39\xf1\x33\x15\xfb\x6a\x5a\x6b\xea\x2f\xc8\xaf\xd3\x96\xfb\xa2\xb5\x37\x85\xf0\xd6\x70\xfe\xe8\xe4\xd1\x2c\xa1\x3b\xf3\x1e\xcf\x85\x69\xa0\xb3\xab\xd7\x97\xf4\x73\xd9\xde\x8a\x33\x82\x8e\xf4\x43\xb5\x67\xb0\x39\xdf\x29\x13\x86\x9a\x52\x00\xfb\x67\xa4\xd8\xc6\x67\xab\x75\xd9\x7e\xe4\xe8\x9b\x8a\x3f\x17\xa7\xe7\x50\x16\x51\x92\x27\x3b\xda\x34\x42\x6d\x1b\xbb\x1e\x3b\x41\xcb\xd1\x24\xec\xba\x91\xce\x6a\x8f\xb3\x87\xfe\x58\x3d\x2e\x0a\xf0\x90\xa7\x16\xcf\x02\x9b\xe9\x11\x7f\x97\x42\x27\x6c\x5e\xa0\xea\x43\x39\x20\x2d\x73\xdf\x05\xa5\x59\x42\xc7\xfd\xa1\x9d\xd6\xf3\x99\x2e\x7a\xbe\x32\xc7\x60\xdd\x35\xea\xc9\x78\x4a\x69\x89\x04\x72\x2e\x47\x8b\xfa\x4a\x0c\xaa\x0e\x5e\x13\xe3\x12\xde\xac\x3e\x9e\xd8\x09\xd7\xb7\x3b\xdc\xdd\x14\xe5\xc0\x75\x55\xe1\x7e\xda\x91\xaa\x85\xff\x02\x0c\x61\x38\xfc\x2d\xd4\x38\xa9\x86\xe6\xc8\xe2\xc5\x90\x71\xfc\x40\x83\x18\x94\x5d\x64\x34\xe1\xe5\x71\xaa\x2a\xcf\xe5\x86\x39\xe0\xb9\xd2\x6e\xdc\xc7\x7a\x89\x76\xda\x54\xa8\xc1\xc0\xac\x2a\xd4\xd4\xce\xac\xb0\xc5\x7e\x1f\x8e\xee\xfd\x7e\x9b\x9c\xdb\x0e\xe4\xa3\x90\x3e\x07\xf1\x67\x0d\x51\xe7\x80\xe4\xda\xb7\x07\xe2\xdb\xdf\x0a\x30\x3c\xd2\x35\xb9\xb9\xbe\xe6\x17\xc9\xf9\xc5\x18\x0d\x94\xca\x9f\x1c\xcd\x3a\xb4\xaf\xc1\x0c\xe6\xac\xd3\x85\x8e\x94\xc7\xf4\x4c\x23\x1c\xbc\x43\x22\x0b\xa5\x06\xde\x1e\xb0\x94\xdc\xdf\x77\x87\x5a\xc4\x6d\x97\xa5\x0d\x71\x96\x6f\x04\x1c\x64\xdb\x34\xbd\x3d\xc9\xef\xd8\xc7\x77\x94\x4c\xbc\x42\xbf\x09\x13\xcc\x26\xec\xa5\xbc\x3d\xe9\xcb\xc0\x80\xbe\x94\x3b\x57\xa3\x42\xd4\xef\x71\x09\xea\xf7\x11\x70\x71\xd3\x32\xe6\xeb\x12\x5f\x72\x5c\x84\x1e\x23\xaa\xa1\x6c\x0b\x1b\xb0\xa4\x0d\xf1\x06\x73\x10\x2a\xee\x36\x0e\x35\x2e\x5f\x4e\xe3\x05\x43\x8d\xb9\x45\x97\x89\x27\x5d\xe7\x1a\xa7\x74\x2e\x28\xa7\x9c\x6f\x9f\xff\xa4\xe1\x4b\x05\xf3\x7c\xb1\x23\x68\xc0\x59\x9e\x99\x73\xc9\x5b\xb8\x82\x58\xee\x6b\x7c\x8d\x80\x92\x95\x1b\x4d\x25\x01\xf0\x9d\x47\x84\x57\x51\xa0\xff\x28\x6f\x25\xac\xca\x04\xe0\x9a\x9b\x0b\x60\xf4\x95\x3f\x7e\x44\x59\x4f\x25\xeb\xd1\x93\x51\x19\x96\xa6\x77\x87\x9d\x5c\x32\xad\xfe\x5e\xca\xbb\x17\xcc\x0d\x48\x06\x5a\xbb\x64\x6b\xcc\x19\x67\xdc\x55\xb4\x9b\x28\xd5\x85\xb5\x5b\x2d\xe2\xd2\x3d\x33\x8f\x89\xc9\xf5\x23\x48\xcf\xfe\xc7\x54\xcf\x44\xc7\x54\x2f\x3c\xc4\x54\xc5\x2a\xbf\x85\x28\xb5\xeb\xb6\xb6\x8b\x2e\x2f\x5f\xa7\x5b\x35\xe6\x46\x0e\xe3\x31\xb3\x8b\x0f\xf8\xd9\x2e\x7e\xde\xe3\x41\xce\x97\x9a\x9f\xb8\x12\x3a\xd5\x7e\x52\x35\x75\x58\x47\xf7\xb7\x6d\xd5\x97\x7f\x7a\x00\x2f\xa8\x07\x7d\xb5\x5a\x3c\x78\x92\x50\xbd\x6a\x59\xa6\x64\xaf\x5a\x1e\x99\x9f\xa0\xb9\x63\xc5\xd4\xd6\x45\xe1\x7c\x27\xef\x80\x29\x97\xa9\xee\xdb\xe9\xd4\x1a\x3d\x8a\xdc\x44\xa0\x46\x9e\x93\xb0\x7e\xf1\xed\xd2\xd6\x65\xc4\xd8\xe2\xb8\xaf\xfa\xce\xaa\xf9\x09\xc9\xb1\x83\xf2\x1e\x99\xbd\x4f\xa6\x17\xd9\xac\x7b\x78\x92\xec\x55\x2d\xf7\x53\xb5\x08\x46\x12\x34\x91\xe7\xdc\x7f\xaf\x7c\x1c\xf6\x7f\x84\xad\x36\x8a\xbb\xb1\x56\x19\xaa\x65\xb1\x27\xde\xba\x88\xac\xd4\x99\x24\x84\x03\x41\xe2\x2b\xf0\x05\xc8\xf9\x56\xdd\x08\x24\x06\x03\xae\x41\xd2\x46\x66\xbf\x81\x30\x58\xe2\x4c\xa2\xe8\x95\x14\x7a\xc7\x79\x41\x54\xf3\x85\xad\xb4\x45\x97\x09\x2b\x6f\xb1\x0f\x26\x57\x1e\x41\x92\xe6\xdb\xb2\x5e\x03\xed\xfe\x93\x3f\x89\x0b\xe6\xcf\x30\x43\x12\xd4\x00\xca\x6b\xbe\xbc\xf7\xbd\x85\x39\x80\x0e\x9b\x52\xc2\xda\xde\xcb\xae\xfa\xb5\xf1\x67\xf2\x39\xbe\xa7\x7b\xa8\xb0\x47\xc9\xaf\xe6\xdb\x3a\xd2\x26\x69\xdc\xea\xbd\xfc\xf9\xf5\xdb\x01\xe4\xc4\xee\xd6\x9c\x09\x6a\xa0\x39\x13\x7b\x1f\x2a\x6f\x10\x51\x95\xc4\xa0\xec\x06\x15\xc5\x6e\x31\xb8\x00\x32\x97\xa7\xac\x59\x10\xe3\x02\x78\xc2\x8c\x6f\x57\x70\x09\xec\x3b\x4e\x62\xde\x16\x8f\x56\x8f\x4a\x77\xfa\x66\x63\x04\x8f\xef\x53\x68\xf0\x23\x2e\x3c\x0b\x93\x2c\x5e\x3b\x61\x8e\xe1\xa9\x33\x3d\xc5\x02\x39\x9e\x61\xcb\x17\x3b\x55\x74\xd1\x83\x65\x6a\xb2\x26\x81\x2c\x56\x84\xfd\x72\xf3\x15\xa0\xa7\xf2\x9d\x02\xc1\x98\xfb\xb1\xd8\x06\xa8\x57\x9a\x30\x6a\xb5\xf6\x6d\xd6\xe2\xab\xe1\x08\x9d\x78\x98\x3a\x42\x27\x77\xb8\xa6\x0f\x72\x85\xe6\x2b\xbe\x95\xb9\x72\x0a\xfc\x85\x26\x19\xa8\x81\xc4\x9a\x0d\x42\xab\x0e\xfd\xa4\xcd\x55\x05\xc1\xeb\x0c\x5f\x09\x76\x29\x8d\xe0\x4d\x2d\xb0\x91\x4c\xb0\xae\x5c\x4a\x18\xf0\x7a\x19\x66\xc6\x6c\x54\x2f\xce\xc2\xdc\x88\x39\x6b\x30\x98\x6d\x75\x5d\x06\xe3\x97\x8e\xe6\x35\xa5\x25\xc0\x9b\xbe\xdf\x77\x16\x0e\x88\x23\xf7\x5d\xe6\x6f\xe9\x63\x30\x08\x5f\x95\x8e\x24\xd6\x14\x66\xa6\x82\x45\xd2\x4d\x8c\x24\x4c\x4f\xb9\x41\xeb\x89\xe4\xc0\xf5\x48\x1a\x52\xe2\x75\xab\x57\xa8\xe2\x2e\x7e\xa1\x49\x83\x19\xbd\x2e\x57\xb8\x11\xbe\x9a\x87\x12\x3a\xaf\xcf\x2d\x87\xe3\x24\x40\xfd\x18\xe6\xb7\xea\x63\xc7\x59\x45\x3f\xd9\x69\x86\xb2\xfe\x20\xa8\x02\x6b\xae\x10\x7e\xde\xf5\x4a\x62\x2b\xdc\xd6\x7d\xf1\x29\x7f\x69\xf9\xbe\x06\xb6\x91\xa0\x34\x73\xf1\xe0\x65\x08\x12\xa5\x5e\x23\x01\xe7\x78\xc1\x17\xe7\xd7\x5b\x09\x2a\xf0\xe4\x68\x71\x0e\xc6\xd2\xd2\x31\xa2\x1a\x5f\xab\xe8\x2c\xa6\xa6\xb5\x71\x99\xe9\xda\x2c\x92\x41\xa8\x43\x9e\x6f\x7b\x2c\x82\x22\x62\x19\x24\x05\x09\x23\x8b\x76\xad\x66\xcb\xd3\x76\x7d\x90\x57\x6d\x7d\xd5\x15\x07\xa4\x29\xdd\x09\x71\x5e\x59\x88\x9a\xc1\x19\x21\xe0\xec\xce\x99\x40\x23\x7a\xb8\x4a\xd6\x13\x25\xe0\xfd\xee\x0a\x9c\xc1\x1b\x3e\xfa\x4c\x4e\x14\x41\x28\xa7\x58\x02\x51\x9c\xee\x2c\xa0\xe6\x59\x01\xa7\x91\x8e\x81\xbd\xec\x12\x50\x88\x65\x96\x49\x14\x62\x28\x65\x0c\x19\x06\x8c\xa1\xb9\x2d\xcf\x96\xad\x04\x61\xe5\x3f\x57\xec\x33\x1a\x72\xfc\xe9\x64\x69\x1d\xd1\xbe\xd5\x41\x22\x36\xe8\xcf\x08\x1f\x1f\x30\x96\x5d\x6a\x19\x13\x8f\x1e\xa7\x00\xe5\xa7\x72\x79\x70\x8e\x32\x3f\xcb\xb7\x5a\xa6\x63\x35\x8d\x5d\x6d\x3a\xd4\x78\xf0\xfa\x42\x52\x1c\xcc\xd4\xab\x58\xd6\x75\x48\x40\x26\x09\x1d\x6d\x3f\x34\x6f\xf3\x9d\x99\xeb\xb7\x79\x54\xeb\xe3\x32\x5b\xb9\x75\x3e\xf0\x06\x37\x58\x04\x03\x59\x21\xf8\xc3\x3c\x04\x83\x40\x54\x10\x81\xd4\xc0\x10\x01\x5e\x7d\x9a\x95\x19\x63\x93\x5f\x68\xb5\x64\xa7\x40\xf6\x63\x00\x51\xc5\xe3\xe6\xa7\xdb\x58\x92\x86\xec\x21\x9e\xe9\x67\x02\x53\xd5\x22\x93\x4a\x96\x98\x57\x5f\x49\x9a\x56\xe9\x5c\xdc\x4d\xaf\x13\x1e\x4f\x0f\xca\xa3\x4b\x4d\x19\x42\x5a\xcb\x00\x62\x27\xb4\xe1\x6c\x78\x91\xc7\xa7\x21\xaa\xb4\xbb\x87\xe0\xc6\x34\x5c\x46\xcb\x6a\xf6\xcc\x41\xec\x67\xa3\xde\x06\xe5\x8c\xae\x88\x39\xec\xdf\xe7\xf8\x99\xfd\x2a\x73\xff\xde\x2e\x9e\xab\x95\xd1\x8c\xfb\xce\xa1\x2e\x89\x83\x25\x8f\x63\x67\x6d\x59\xbb\x27\x1b\xe4\x2b\x29\x94\x3c\x8e\xf9\x4d\x7c\x04\x93\x2f\x65\x1d\x7d\x5c\x3c\xbc\xd7\x8c\x5a\xf9\x96\x89\x58\x92\x07\x0f\x89\x76\xed\xf2\xeb\x61\x59\xb6\x3c\xa6\x60\x9c\xf9\x6f\x56\xb1\x8c\xd1\x5e\xb6\xfe\x4d\x5f\x93\x96\x6f\x37\xbe\xaf\xc5\x3c\xf6\xb5\x8c\xf4\x0f\xee\xb9\xe7\xf4\x29\x6e\x7b\xd4\xfa\x0b\x2a\x18\xbc\xc0\x1d\x9f\xb4\xfe\x92\x4e\xc8\x30\x86\x4f\xb4\xda\x9a\x25\xcf\x1b\xfa\x0a\xf5\xe5\xd5\x23\x83\x1a\x55\x27\x63\xfb\xe2\xda\x74\x84\xc3\xea\xc2\x40\xbf\xbc\x7b\x83\x07\xc9\xdd\x8b\xed\x4d\xfd\x25\xf3\x36\xf9\x0c\xe5\x6f\xfa\x5c\xe6\x17\x77\x2b\x04\x3b\x57\x3c\xb5\xef\xc1\xae\x11\xdc\x9f\x46\xfc\xb8\x91\x10\x3f\x90\x23\x76\x44\x7c\xa7\x0f\xdf\x0d\x60\xbb\x7f\x7b\x7c\xbc\x23\x06\x7b\xc8\x1e\x23\xd6\x77\x63\x41\x7f\x25\xb9\xea\xf4\xd9\x3f\x51\x06\x3f\x0c\x8f\xd9\x12\x3d\xe8\x9b\x66\xfb\x3e\x2b\xd6\x3c\x24\xfa\x3f\xe3\x1d\xac\x57\x73\xb1\x99\xe9\x67\x26\x9f\xfc\xeb\x1b\xae\xf9\x1b\x0d\xe6\xcb\x0f\x24\x7c\xb3\x43\xc2\xae\xaa\xf9\x0c\xe3\x84\x0d\x12\x36\x1c\x1f\x8f\x3f\x57\xf8\x5c\x15\xb7\xf8\xba\xc1\xd7\x4d\x59\x7e\x90\xc2\x20\xce\x54\xbc\xa9\x49\x48\xe2\x94\x5b\x7c\xdf\xf2\x33\x8d\x78\x7e\x61\x89\xa0\xc1\x78\x0d\xd3\x3e\xf0\xe6\x65\x0d\x4b\x1a\xd2\xed\x83\xd2\xb9\x55\x4d\x95\x9f\x0f\xd9\x3d\xf2\x56\x93\xf0\x8b\x1f\x69\xa3\xe6\x35\x49\x7e\x3e\xc4\x99\xda\x6f\xac\x42\xf9\x4d\xa9\xdc\x0f\x4d\x94\x9f\x94\xd6\x16\x37\xf3\xd8\x2f\xfd\x85\xd4\xd8\x2b\xfd\x45\xd3\xbb\x6a\x9b\x3d\x3f\x88\xf3\x3e\xb3\x87\xea\xe2\x0b\x75\xcf\x28\xcf\x3c\x94\x39\xa6\x15\x6b\xed\xed\xa1\xec\xc3\x9e\x83\xad\xcc\x32\x7b\x98\xb2\xaa\xf7\x87\xa0\x88\x8d\x8f\xa2\x0a\x58\x0c\x19\x2c\xf7\x33\x09\x6a\x96\x41\xcd\xcb\x71\xb4\x16\x60\x98\xa0\xe0\x65\x4d\x4b\xfe\xf8\x1f\xff\x00\x3c\xfd\xfe\xe7\x3f\xf3\xf3\x9f\x9e\xe4\xe5\x27\x8e\xde\xdf\xe5\x3b\x75\x42\x32\x30\xfa\x7e\x9e\x40\x72\x68\x18\x5c\x9b\x53\xaf\x17\xb9\x36\x87\xe6\xb3\xff\x13\x00\x00\xff\xff\xfd\x3b\xf1\x3c\x2f\xd8\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4361,7 +4361,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 55126, mode: os.FileMode(420), modTime: time.Unix(1471215870, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 55343, mode: os.FileMode(420), modTime: time.Unix(1471240680, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/routers/repo/branch.go b/routers/repo/branch.go index 7b8940a943..c8407114a9 100644 --- a/routers/repo/branch.go +++ b/routers/repo/branch.go @@ -40,14 +40,14 @@ func NewBranchPost(ctx *context.Context, form auth.NewBranchForm) { branchName := form.BranchName if ctx.HasError() || !ctx.Repo.IsWriter() || branchName == oldBranchName { - ctx.Redirect(EscapeUrl(ctx.Repo.RepoLink + "/src/" + oldBranchName)) + ctx.Redirect(ctx.Repo.RepoLink + "/src/" + oldBranchName) return } branchName = url.QueryEscape(strings.Replace(strings.Trim(branchName, " "), " ", "-", -1)) if _, err := ctx.Repo.Repository.GetBranch(branchName); err == nil { - ctx.Redirect(EscapeUrl(ctx.Repo.RepoLink + "/src/" + branchName)) + ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName) return } @@ -77,5 +77,5 @@ func NewBranchPost(ctx *context.Context, form auth.NewBranchForm) { models.HookQueue.Add(ctx.Repo.Repository.ID) } - ctx.Redirect(EscapeUrl(ctx.Repo.RepoLink + "/src/" + branchName)) + ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName) } diff --git a/routers/repo/edit.go b/routers/repo/edit.go index 7148510980..19c7c54474 100644 --- a/routers/repo/edit.go +++ b/routers/repo/edit.go @@ -20,28 +20,24 @@ import ( ) const ( - EDIT base.TplName = "repo/edit" - DIFF_PREVIEW base.TplName = "repo/diff_preview" - DIFF_PREVIEW_NEW base.TplName = "repo/diff_preview_new" + EDIT base.TplName = "repo/editor/edit" + DIFF_PREVIEW base.TplName = "repo/editor/diff_preview" + DIFF_PREVIEW_NEW base.TplName = "repo/editor/diff_preview_new" ) -func EditFile(ctx *context.Context) { - editFile(ctx, false) -} - -func NewFile(ctx *context.Context) { - editFile(ctx, true) -} - func editFile(ctx *context.Context, isNewFile bool) { + // Don't allow edit a file in a specific commit. + if ctx.Repo.IsViewCommit { + ctx.Handle(404, "", nil) + return + } + ctx.Data["PageIsEdit"] = true ctx.Data["IsNewFile"] = isNewFile ctx.Data["RequireHighlightJS"] = true + ctx.Data["RequireSimpleMDE"] = true - userName := ctx.Repo.Owner.Name - repoName := ctx.Repo.Repository.Name - branchName := ctx.Repo.BranchName - branchLink := ctx.Repo.RepoLink + "/src/" + branchName + branchLink := ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchName treeName := ctx.Repo.TreeName var treeNames []string @@ -51,19 +47,22 @@ func editFile(ctx *context.Context, isNewFile bool) { if !isNewFile { entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treeName) - - if err != nil && git.IsErrNotExist(err) { - ctx.Handle(404, "GetTreeEntryByPath", err) + if err != nil { + if git.IsErrNotExist(err) { + ctx.Handle(404, "GetTreeEntryByPath", err) + } else { + ctx.Handle(500, "GetTreeEntryByPath", err) + } return } - if (ctx.Repo.IsViewCommit) || entry == nil || entry.IsDir() { - ctx.Handle(404, "repo.Home", nil) + // No way to edit a directory online. + if entry.IsDir() { + ctx.Handle(404, "", nil) return } blob := entry.Blob() - dataRc, err := blob.Data() if err != nil { ctx.Handle(404, "blob.Data", err) @@ -79,16 +78,15 @@ func editFile(ctx *context.Context, isNewFile bool) { buf = buf[:n] } + // Only text file are editable online. _, isTextFile := base.IsTextFile(buf) - if !isTextFile { - ctx.Handle(404, "repo.Home", nil) + ctx.Handle(404, "", nil) return } d, _ := ioutil.ReadAll(dataRc) buf = append(buf, d...) - if err, content := template.ToUTF8WithErr(buf); err != nil { if err != nil { log.Error(4, "Convert content encoding: %s", err) @@ -98,47 +96,38 @@ func editFile(ctx *context.Context, isNewFile bool) { ctx.Data["FileContent"] = content } } else { - treeNames = append(treeNames, "") + treeNames = append(treeNames, "") // Append empty string to allow user name the new file. } - ctx.Data["RequireSimpleMDE"] = true - - ctx.Data["UserName"] = userName - ctx.Data["RepoName"] = repoName - ctx.Data["BranchName"] = branchName ctx.Data["TreeName"] = treeName ctx.Data["TreeNames"] = treeNames ctx.Data["BranchLink"] = branchLink - ctx.Data["CommitSummary"] = "" - ctx.Data["CommitMessage"] = "" - ctx.Data["CommitChoice"] = "direct" - ctx.Data["NewBranchName"] = "" - ctx.Data["CommitDirectlyToThisBranch"] = ctx.Tr("repo.commit_directly_to_this_branch", ""+branchName+"") - ctx.Data["CreateNewBranch"] = ctx.Tr("repo.create_new_branch", ""+ctx.Tr("repo.new_branch")+"") - ctx.Data["LastCommit"] = ctx.Repo.Commit.ID + ctx.Data["commit_summary"] = "" + ctx.Data["commit_message"] = "" + ctx.Data["commit_choice"] = "direct" + ctx.Data["new_branch_name"] = "" + ctx.Data["last_commit"] = ctx.Repo.Commit.ID ctx.Data["MarkdownFileExts"] = strings.Join(setting.Markdown.FileExtensions, ",") ctx.Data["LineWrapExtensions"] = strings.Join(setting.Repository.Editor.LineWrapExtensions, ",") ctx.Data["PreviewableFileModes"] = strings.Join(setting.Repository.Editor.PreviewableFileModes, ",") - ctx.Data["PreviewDiffURL"] = ctx.Repo.RepoLink + "/preview/" + branchName + "/" + treeName ctx.HTML(200, EDIT) } -func EditFilePost(ctx *context.Context, form auth.EditRepoFileForm) { - editFilePost(ctx, form, false) +func EditFile(ctx *context.Context) { + editFile(ctx, false) } -func NewFilePost(ctx *context.Context, form auth.EditRepoFileForm) { - editFilePost(ctx, form, true) +func NewFile(ctx *context.Context) { + editFile(ctx, true) } func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bool) { ctx.Data["PageIsEdit"] = true ctx.Data["IsNewFile"] = isNewFile ctx.Data["RequireHighlightJS"] = true + ctx.Data["RequireSimpleMDE"] = true - userName := ctx.Repo.Owner.Name - repoName := ctx.Repo.Repository.Name oldBranchName := ctx.Repo.BranchName branchName := oldBranchName branchLink := ctx.Repo.RepoLink + "/src/" + branchName @@ -160,26 +149,18 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo treeNames = strings.Split(treeName, "/") } - ctx.Data["RequireSimpleMDE"] = true - - ctx.Data["UserName"] = userName - ctx.Data["RepoName"] = repoName - ctx.Data["BranchName"] = branchName ctx.Data["TreeName"] = treeName ctx.Data["TreeNames"] = treeNames ctx.Data["BranchLink"] = branchLink ctx.Data["FileContent"] = content - ctx.Data["CommitSummary"] = form.CommitSummary - ctx.Data["CommitMessage"] = form.CommitMessage - ctx.Data["CommitChoice"] = commitChoice - ctx.Data["NewBranchName"] = branchName - ctx.Data["CommitDirectlyToThisBranch"] = ctx.Tr("repo.commit_directly_to_this_branch", ""+oldBranchName+"") - ctx.Data["CreateNewBranch"] = ctx.Tr("repo.create_new_branch", ""+ctx.Tr("repo.new_branch")+"") - ctx.Data["LastCommit"] = ctx.Repo.Commit.ID + ctx.Data["commit_summary"] = form.CommitSummary + ctx.Data["commit_message"] = form.CommitMessage + ctx.Data["commit_choice"] = commitChoice + ctx.Data["new_branch_name"] = branchName + ctx.Data["last_commit"] = ctx.Repo.Commit.ID ctx.Data["MarkdownFileExts"] = strings.Join(setting.Markdown.FileExtensions, ",") ctx.Data["LineWrapExtensions"] = strings.Join(setting.Repository.Editor.LineWrapExtensions, ",") ctx.Data["PreviewableFileModes"] = strings.Join(setting.Repository.Editor.PreviewableFileModes, ",") - ctx.Data["PreviewDiffURL"] = ctx.Repo.RepoLink + "/preview/" + branchName + "/" + treeName if ctx.HasError() { ctx.HTML(200, EDIT) @@ -188,41 +169,41 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo if len(treeName) == 0 { ctx.Data["Err_Filename"] = true - ctx.RenderWithErr(ctx.Tr("repo.filename_cannot_be_empty"), EDIT, &form) - log.Error(4, "%s: %s", "EditFile", "Filename can't be empty") + ctx.RenderWithErr(ctx.Tr("repo.editor.filename_cannot_be_empty"), EDIT, &form) return } if oldBranchName != branchName { if _, err := ctx.Repo.Repository.GetBranch(branchName); err == nil { ctx.Data["Err_Branchname"] = true - ctx.RenderWithErr(ctx.Tr("repo.branch_already_exists"), EDIT, &form) - log.Error(4, "%s: %s - %s", "BranchName", branchName, "Branch already exists") + ctx.RenderWithErr(ctx.Tr("repo.editor.branch_already_exists", branchName), EDIT, &form) return } - } - treepath := "" + var treepath string for index, part := range treeNames { treepath = path.Join(treepath, part) entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treepath) if err != nil { - // Means there is no item with that name, so we're good - break + if git.IsErrNotExist(err) { + // Means there is no item with that name, so we're good + break + } + + ctx.Handle(500, "GetTreeEntryByPath", err) + return } if index != len(treeNames)-1 { if !entry.IsDir() { ctx.Data["Err_Filename"] = true - ctx.RenderWithErr(ctx.Tr("repo.directory_is_a_file"), EDIT, &form) - log.Error(4, "%s: %s - %s", "EditFile", treeName, "Directory given is a file") + ctx.RenderWithErr(ctx.Tr("repo.editor.directory_is_a_file", part), EDIT, &form) return } } else { if entry.IsDir() { ctx.Data["Err_Filename"] = true - ctx.RenderWithErr(ctx.Tr("repo.filename_is_a_directory"), EDIT, &form) - log.Error(4, "%s: %s - %s", "EditFile", treeName, "Filename given is a dirctory") + ctx.RenderWithErr(ctx.Tr("repo.editor.filename_is_a_directory", part), EDIT, &form) return } } @@ -230,125 +211,119 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo if !isNewFile { _, err := ctx.Repo.Commit.GetTreeEntryByPath(oldTreeName) - if err != nil && git.IsErrNotExist(err) { - ctx.Data["Err_Filename"] = true - ctx.RenderWithErr(ctx.Tr("repo.file_editing_no_longer_exists"), EDIT, &form) - log.Error(4, "%s: %s / %s - %s", "EditFile", branchName, oldTreeName, "File doesn't exist for editing") + if err != nil { + if git.IsErrNotExist(err) { + ctx.Data["Err_Filename"] = true + ctx.RenderWithErr(ctx.Tr("repo.editor.file_editing_no_longer_exists", oldTreeName), EDIT, &form) + } else { + ctx.Handle(500, "GetTreeEntryByPath", err) + } return } if lastCommit != ctx.Repo.CommitID { - if files, err := ctx.Repo.Commit.GetFilesChangedSinceCommit(lastCommit); err == nil { - for _, file := range files { - if file == treeName { - name := ctx.Repo.Commit.Author.Name - if u, err := models.GetUserByEmail(ctx.Repo.Commit.Author.Email); err == nil { - name = `` + u.Name + `` - } - message := ctx.Tr("repo.user_has_committed_since_you_started_editing", name) + - ` ` + ctx.Tr("repo.see_what_changed") + `` + - " " + ctx.Tr("repo.pressing_commit_again_will_overwrite_those_changes", ""+ctx.Tr("repo.commit_changes")+"") - log.Error(4, "%s: %s / %s - %s", "EditFile", branchName, oldTreeName, "File updated by another user") - ctx.RenderWithErr(message, EDIT, &form) - return - } + files, err := ctx.Repo.Commit.GetFilesChangedSinceCommit(lastCommit) + if err != nil { + ctx.Handle(500, "GetFilesChangedSinceCommit", err) + return + } + + for _, file := range files { + if file == treeName { + ctx.RenderWithErr(ctx.Tr("repo.editor.file_changed_while_editing", ctx.Repo.RepoLink+"/compare/"+lastCommit+"..."+ctx.Repo.CommitID), EDIT, &form) + return } } } } + if oldTreeName != treeName { - // We have a new filename (rename or completely new file) so we need to make sure it doesn't already exist, can't clobber - _, err := ctx.Repo.Commit.GetTreeEntryByPath(treeName) - if err == nil { + // We have a new filename (rename or completely new file) so we need to make sure it doesn't already exist, can't clobber. + entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treeName) + if err != nil { + if !git.IsErrNotExist(err) { + ctx.Handle(500, "GetTreeEntryByPath", err) + return + } + } + if entry != nil { ctx.Data["Err_Filename"] = true - ctx.RenderWithErr(ctx.Tr("repo.file_already_exists"), EDIT, &form) - log.Error(4, "%s: %s - %s", "NewFile", treeName, "File already exists, can't create new") + ctx.RenderWithErr(ctx.Tr("repo.editor.file_already_exists", treeName), EDIT, &form) return } } - message := "" - if form.CommitSummary != "" { - message = strings.Trim(form.CommitSummary, " ") + var message string + if len(form.CommitSummary) > 0 { + message = strings.TrimSpace(form.CommitSummary) } else { if isNewFile { - message = ctx.Tr("repo.add") + " '" + treeName + "'" + message = ctx.Tr("repo.editor.add", treeName) } else { - message = ctx.Tr("repo.update") + " '" + treeName + "'" + message = ctx.Tr("repo.editor.update", treeName) } } - if strings.Trim(form.CommitMessage, " ") != "" { - message += "\n\n" + strings.Trim(form.CommitMessage, " ") + + form.CommitMessage = strings.TrimSpace(form.CommitMessage) + if len(form.CommitMessage) > 0 { + message += "\n\n" + form.CommitMessage } - if err := ctx.Repo.Repository.UpdateRepoFile(ctx.User, oldBranchName, branchName, oldTreeName, treeName, content, message, isNewFile); err != nil { + if err := ctx.Repo.Repository.UpdateRepoFile(ctx.User, &models.UpdateRepoFileOptions{ + LastCommitID: lastCommit, + OldBranch: oldBranchName, + NewBranch: branchName, + OldTreeName: oldTreeName, + NewTreeName: treeName, + Message: message, + Content: content, + IsNewFile: isNewFile, + }); err != nil { ctx.Data["Err_Filename"] = true - ctx.RenderWithErr(ctx.Tr("repo.unable_to_update_file"), EDIT, &form) - log.Error(4, "%s: %v", "EditFile", err) + ctx.RenderWithErr(ctx.Tr("repo.editor.failed_to_update_file", err), EDIT, &form) return } - if branch, err := ctx.Repo.Repository.GetBranch(branchName); err != nil { - log.Error(4, "repo.Repository.GetBranch(%s): %v", branchName, err) - } else if commit, err := branch.GetCommit(); err != nil { - log.Error(4, "branch.GetCommit(): %v", err) - } else { - pc := &models.PushCommits{ - Len: 1, - Commits: []*models.PushCommit{models.CommitToPushCommit(commit)}, - } - oldCommitID := ctx.Repo.CommitID - newCommitID := commit.ID.String() - if branchName != oldBranchName { - oldCommitID = "0000000000000000000000000000000000000000" // New Branch so we use all 0s - } - if err := models.CommitRepoAction(ctx.User.ID, ctx.Repo.Owner.ID, ctx.User.LowerName, ctx.Repo.Owner.Email, - ctx.Repo.Repository.ID, ctx.Repo.Owner.LowerName, ctx.Repo.Repository.Name, "refs/heads/"+branchName, pc, - oldCommitID, newCommitID); err != nil { - log.Error(4, "models.CommitRepoAction(branch = %s): %v", branchName, err) - } - models.HookQueue.Add(ctx.Repo.Repository.ID) - } + ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName + "/" + treeName) +} - // Leaving this off until forked repos that get a branch can compare with forks master and not upstream - //if oldBranchName != branchName { - // ctx.Redirect(EscapeUrl(ctx.Repo.RepoLink + "/compare/" + oldBranchName + "..." + branchName)) - //} else { - ctx.Redirect(EscapeUrl(ctx.Repo.RepoLink + "/src/" + branchName + "/" + treeName)) - //} +func EditFilePost(ctx *context.Context, form auth.EditRepoFileForm) { + editFilePost(ctx, form, false) +} + +func NewFilePost(ctx *context.Context, form auth.EditRepoFileForm) { + editFilePost(ctx, form, true) } func DiffPreviewPost(ctx *context.Context, form auth.EditPreviewDiffForm) { - userName := ctx.Repo.Owner.Name - repoName := ctx.Repo.Repository.Name - branchName := ctx.Repo.BranchName treeName := ctx.Repo.TreeName content := form.Content entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treeName) - if (err != nil && git.IsErrNotExist(err)) || entry.IsDir() { - ctx.Data["FileContent"] = content - ctx.HTML(200, DIFF_PREVIEW_NEW) + if err != nil { + if git.IsErrNotExist(err) { + ctx.Data["FileContent"] = content + ctx.HTML(200, DIFF_PREVIEW_NEW) + } else { + ctx.Error(500, "GetTreeEntryByPath: "+err.Error()) + } + return + } + if entry.IsDir() { + ctx.Error(422) return } - diff, err := ctx.Repo.Repository.GetPreviewDiff(models.RepoPath(userName, repoName), branchName, treeName, content, setting.Git.MaxGitDiffLines, setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles) + diff, err := ctx.Repo.Repository.GetDiffPreview(ctx.Repo.BranchName, treeName, content) if err != nil { - ctx.Error(404, err.Error()) - log.Error(4, "%s: %v", "GetPreviewDiff", err) + ctx.Error(500, "GetDiffPreview: "+err.Error()) return } if diff.NumFiles() == 0 { - ctx.Error(200, ctx.Tr("repo.no_changes_to_show")) + ctx.PlainText(200, []byte(ctx.Tr("repo.editor.no_changes_to_show"))) return } - - ctx.Data["IsSplitStyle"] = ctx.Query("style") == "split" ctx.Data["File"] = diff.Files[0] ctx.HTML(200, DIFF_PREVIEW) } - -func EscapeUrl(str string) string { - return strings.NewReplacer("?", "%3F", "%", "%25", "#", "%23", " ", "%20", "^", "%5E", "\\", "%5C", "{", "%7B", "}", "%7D", "|", "%7C").Replace(str) -} diff --git a/routers/repo/upload.go b/routers/repo/upload.go index efecc208fd..a7402cfc5d 100644 --- a/routers/repo/upload.go +++ b/routers/repo/upload.go @@ -170,12 +170,7 @@ func UploadFilePost(ctx *context.Context, form auth.UploadRepoFileForm) { models.HookQueue.Add(ctx.Repo.Repository.ID) } - // Leaving this off until forked repos that get a branch can compare with forks master and not upstream - //if oldBranchName != branchName { - // ctx.Redirect(EscapeUrl(ctx.Repo.RepoLink + "/compare/" + oldBranchName + "..." + branchName)) - //} else { - ctx.Redirect(EscapeUrl(ctx.Repo.RepoLink + "/src/" + branchName + "/" + treeName)) - //} + ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName + "/" + treeName) } func UploadFileToServer(ctx *context.Context) { diff --git a/routers/repo/view.go b/routers/repo/view.go index bbb5e96a4a..1572bb6150 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -75,110 +75,112 @@ func Home(ctx *context.Context) { } entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treename) - if err != nil && git.IsErrNotExist(err) { - ctx.Handle(404, "GetTreeEntryByPath", err) + if err != nil { + if git.IsErrNotExist(err) { + ctx.Handle(404, "GetTreeEntryByPath", err) + } else { + ctx.Handle(500, "GetTreeEntryByPath", err) + } return } - if len(treename) != 0 && entry == nil { - ctx.Handle(404, "repo.Home", nil) - return - } - if entry != nil && !entry.IsDir() { + if !entry.IsDir() { blob := entry.Blob() - - if dataRc, err := blob.Data(); err != nil { + dataRc, err := blob.Data() + if err != nil { ctx.Handle(404, "blob.Data", err) return - } else { - ctx.Data["FileSize"] = blob.Size() - ctx.Data["IsFile"] = true - ctx.Data["FileName"] = blob.Name() - ctx.Data["HighlightClass"] = highlight.FileNameToHighlightClass(blob.Name()) - ctx.Data["FileLink"] = rawLink + "/" + treename + } - buf := make([]byte, 1024) - n, _ := dataRc.Read(buf) - if n > 0 { - buf = buf[:n] - } + ctx.Data["FileSize"] = blob.Size() + ctx.Data["IsFile"] = true + ctx.Data["FileName"] = blob.Name() + ctx.Data["HighlightClass"] = highlight.FileNameToHighlightClass(blob.Name()) + ctx.Data["FileLink"] = rawLink + "/" + treename - _, isTextFile := base.IsTextFile(buf) - _, isImageFile := base.IsImageFile(buf) - _, isPDFFile := base.IsPDFFile(buf) - ctx.Data["IsFileText"] = isTextFile + buf := make([]byte, 1024) + n, _ := dataRc.Read(buf) + if n > 0 { + buf = buf[:n] + } - switch { - case isPDFFile: - ctx.Data["IsPDFFile"] = true - ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.cannot_edit_binary_files") - case isImageFile: - ctx.Data["IsImageFile"] = true - ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.cannot_edit_binary_files") - case isTextFile: - if blob.Size() >= setting.UI.MaxDisplayFileSize { - ctx.Data["IsFileTooLarge"] = true + _, isTextFile := base.IsTextFile(buf) + _, isImageFile := base.IsImageFile(buf) + _, isPDFFile := base.IsPDFFile(buf) + ctx.Data["IsFileText"] = isTextFile + + switch { + case isPDFFile: + ctx.Data["IsPDFFile"] = true + ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.cannot_edit_binary_files") + case isImageFile: + ctx.Data["IsImageFile"] = true + ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.cannot_edit_binary_files") + case isTextFile: + if blob.Size() >= setting.UI.MaxDisplayFileSize { + ctx.Data["IsFileTooLarge"] = true + } else { + ctx.Data["IsFileTooLarge"] = false + d, _ := ioutil.ReadAll(dataRc) + buf = append(buf, d...) + readmeExist := markdown.IsMarkdownFile(blob.Name()) || markdown.IsReadmeFile(blob.Name()) + isMarkdown := readmeExist || markdown.IsMarkdownFile(blob.Name()) + ctx.Data["ReadmeExist"] = readmeExist + ctx.Data["IsMarkdown"] = isMarkdown + if isMarkdown { + ctx.Data["FileContent"] = string(markdown.Render(buf, path.Dir(treeLink), ctx.Repo.Repository.ComposeMetas())) } else { - ctx.Data["IsFileTooLarge"] = false - d, _ := ioutil.ReadAll(dataRc) - buf = append(buf, d...) - readmeExist := markdown.IsMarkdownFile(blob.Name()) || markdown.IsReadmeFile(blob.Name()) - isMarkdown := readmeExist || markdown.IsMarkdownFile(blob.Name()) - ctx.Data["ReadmeExist"] = readmeExist - ctx.Data["IsMarkdown"] = isMarkdown - if isMarkdown { - ctx.Data["FileContent"] = string(markdown.Render(buf, path.Dir(treeLink), ctx.Repo.Repository.ComposeMetas())) + // Building code view blocks with line number on server side. + var filecontent string + if err, content := template.ToUTF8WithErr(buf); err != nil { + if err != nil { + log.Error(4, "ToUTF8WithErr: %s", err) + } + filecontent = string(buf) } else { - // Building code view blocks with line number on server side. - var filecontent string - if err, content := template.ToUTF8WithErr(buf); err != nil { - if err != nil { - log.Error(4, "ToUTF8WithErr: %s", err) - } - filecontent = string(buf) - } else { - filecontent = content - } - - var output bytes.Buffer - lines := strings.Split(filecontent, "\n") - for index, line := range lines { - output.WriteString(fmt.Sprintf(`
  • %s
  • `, index+1, index+1, gotemplate.HTMLEscapeString(line)) + "\n") - } - ctx.Data["FileContent"] = gotemplate.HTML(output.String()) - - output.Reset() - for i := 0; i < len(lines); i++ { - output.WriteString(fmt.Sprintf(`%d`, i+1, i+1)) - } - ctx.Data["LineNums"] = gotemplate.HTML(output.String()) + filecontent = content } - } - if ctx.Repo.IsWriter() && ctx.Repo.IsViewBranch { - ctx.Data["FileEditLink"] = editLink + "/" + treename - ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.edit_this_file") - } else { - if !ctx.Repo.IsViewBranch { - ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.must_be_on_branch") - } else if !ctx.Repo.IsWriter() { - ctx.Data["FileEditLink"] = forkLink - ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.fork_before_edit") + + var output bytes.Buffer + lines := strings.Split(filecontent, "\n") + for index, line := range lines { + output.WriteString(fmt.Sprintf(`
  • %s
  • `, index+1, index+1, gotemplate.HTMLEscapeString(line)) + "\n") } + ctx.Data["FileContent"] = gotemplate.HTML(output.String()) + + output.Reset() + for i := 0; i < len(lines); i++ { + output.WriteString(fmt.Sprintf(`%d`, i+1, i+1)) + } + ctx.Data["LineNums"] = gotemplate.HTML(output.String()) } - default: - ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.cannot_edit_binary_files") } if ctx.Repo.IsWriter() && ctx.Repo.IsViewBranch { - ctx.Data["FileDeleteLink"] = deleteLink + "/" + treename - ctx.Data["FileDeleteLinkTooltip"] = ctx.Tr("repo.delete_this_file") + ctx.Data["FileEditLink"] = editLink + "/" + treename + ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.edit_this_file") } else { if !ctx.Repo.IsViewBranch { - ctx.Data["FileDeleteLinkTooltip"] = ctx.Tr("repo.must_be_on_branch") + ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.must_be_on_branch") } else if !ctx.Repo.IsWriter() { - ctx.Data["FileDeleteLinkTooltip"] = ctx.Tr("repo.must_be_writer") + ctx.Data["FileEditLink"] = forkLink + ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.fork_before_edit") } } + default: + ctx.Data["FileEditLinkTooltip"] = ctx.Tr("repo.cannot_edit_binary_files") } + + if ctx.Repo.IsWriter() && ctx.Repo.IsViewBranch { + ctx.Data["FileDeleteLink"] = deleteLink + "/" + treename + ctx.Data["FileDeleteLinkTooltip"] = ctx.Tr("repo.delete_this_file") + } else { + if !ctx.Repo.IsViewBranch { + ctx.Data["FileDeleteLinkTooltip"] = ctx.Tr("repo.must_be_on_branch") + } else if !ctx.Repo.IsWriter() { + ctx.Data["FileDeleteLinkTooltip"] = ctx.Tr("repo.must_be_writer") + } + } + } else { // Directory and file list. tree, err := ctx.Repo.Commit.SubTree(treename) diff --git a/templates/repo/diff_box.tmpl b/templates/repo/diff_box.tmpl index a048ce6084..35af649b0f 100644 --- a/templates/repo/diff_box.tmpl +++ b/templates/repo/diff_box.tmpl @@ -71,9 +71,9 @@ {{if not $file.IsSubmodule}}
    {{if $file.IsDeleted}} - {{$.i18n.Tr "repo.diff.view_file"}} + {{$.i18n.Tr "repo.diff.view_file"}} {{else}} - {{$.i18n.Tr "repo.diff.view_file"}} + {{$.i18n.Tr "repo.diff.view_file"}} {{end}}
    {{end}} diff --git a/templates/repo/diff_preview.tmpl b/templates/repo/editor/diff_preview.tmpl similarity index 100% rename from templates/repo/diff_preview.tmpl rename to templates/repo/editor/diff_preview.tmpl diff --git a/templates/repo/diff_preview_new.tmpl b/templates/repo/editor/diff_preview_new.tmpl similarity index 100% rename from templates/repo/diff_preview_new.tmpl rename to templates/repo/editor/diff_preview_new.tmpl diff --git a/templates/repo/edit.tmpl b/templates/repo/editor/edit.tmpl similarity index 81% rename from templates/repo/edit.tmpl rename to templates/repo/editor/edit.tmpl index 49a3df7842..5e3349eaab 100644 --- a/templates/repo/edit.tmpl +++ b/templates/repo/editor/edit.tmpl @@ -2,11 +2,10 @@
    {{template "repo/header" .}}
    - {{.branchName}} {{template "base/alert" .}}
    {{.CsrfTokenHtml}} - +