diff --git a/cmd/web.go b/cmd/web.go index bf027958b7..a39da572ef 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -497,6 +497,20 @@ func runWeb(ctx *cli.Context) error { m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest). Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost) + + m.Group("", func() { + m.Combo("/_edit/*").Get(repo.EditFile). + Post(bindIgnErr(auth.EditRepoFileForm{}), repo.EditFilePost) + m.Combo("/_new/*").Get(repo.NewFile). + Post(bindIgnErr(auth.EditRepoFileForm{}), repo.NewFilePost) + m.Post("/preview/*", bindIgnErr(auth.EditPreviewDiffForm{}), repo.DiffPreviewPost) + m.Combo("/upload/*").Get(repo.UploadFile). + Post(bindIgnErr(auth.UploadRepoFileForm{}), repo.UploadFilePost) + m.Post("/delete/*", bindIgnErr(auth.DeleteRepoFileForm{}), repo.DeleteFilePost) + m.Post("/branches", bindIgnErr(auth.NewBranchForm{}), repo.NewBranchPost) + m.Post("/upload-file", repo.UploadFileToServer) + m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer) + }, context.RepoRef(), context.RepoAssignment(), reqRepoWriter) }, reqSignIn, context.RepoAssignment(), repo.MustBeNotBare) m.Group("/:username/:reponame", func() { diff --git a/conf/app.ini b/conf/app.ini index ea0ca16295..515269a764 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -20,6 +20,26 @@ MAX_CREATION_LIMIT = -1 ; Patch test queue length, make it as large as possible PULL_REQUEST_QUEUE_LENGTH = 10000 +[editor] +; List of file extensions that should have line wraps in the CodeMirror editor +; Separate extensions with a comma. To line wrap files w/o extension, just put a comma +LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd, +; Valid file modes that have a preview API associated with them, such as api/v1/markdown +; Separate values by commas. Preview tab in edit mode won't show if the file extension doesn't match +PREVIEW_TAB_APIS = markdown + +[upload] +; Whether repository file uploads are enabled. Defaults to `true` +ENABLE_UPLOADS = true +; Path for uploads. Defaults to `data/tmp/uploads` (tmp gets deleted on gogs restart) +TEMP_PATH = data/tmp/uploads +; One or more allowed types, e.g. image/jpeg|image/png. Nothing means any file type +ALLOWED_TYPES = +; Max size of each file in MB. Defaults to 32MB +FILE_MAX_SIZE = 32 +; Max number of files per upload. Defaults to 10 +MAX_FILES = 10 + [ui] ; Number of repositories that are showed in one explore page EXPLORE_PAGING_NUM = 20 @@ -54,6 +74,9 @@ ENABLE_HARD_LINE_BREAK = false ; List of custom URL-Schemes that are allowed as links when rendering Markdown ; for example git,magnet CUSTOM_URL_SCHEMES = +; List of file extensions that should be rendered/edited as Markdown +; Separate extensions with a comma. To render files w/o extension as markdown, just put a comma +MD_FILE_EXTENSIONS = .md,.markdown,.mdown,.mkd [server] PROTOCOL = http diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index ceb9779769..9dbb71f183 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -189,6 +189,13 @@ TeamName = Team name AuthName = Authorization name AdminEmail = Admin email +NewBranchName = New branch name +CommitSummary = Commit summary +CommitMessage = Commit message +CommitChoice = Commit choice +TreeName = File path +Content = Content + require_error = ` cannot be empty.` alpha_dash_error = ` must be valid alpha or numeric or dash(-_) characters.` alpha_dash_dot_error = ` must be valid alpha or numeric or dash(-_) or dot characters.` @@ -419,6 +426,51 @@ file_view_raw = View Raw file_permalink = Permalink file_too_large = This file is too large to be shown +cancel = Cancel +cancel_lower = cancel +or = or +new_file = New file +upload_files = Upload files +find_file = Find file +commit_changes = Commit Changes +default_commit_message = Add an optional extended description... +last_commit_info = %s edited this file %s +delete_this_file = Delete this file +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. +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 commits.find = Find diff --git a/models/error.go b/models/error.go index 1778701ef6..e608677028 100644 --- a/models/error.go +++ b/models/error.go @@ -417,6 +417,19 @@ func (err ErrInvalidTagName) Error() string { return fmt.Sprintf("release tag name is not valid [tag_name: %s]", err.TagName) } +type ErrRepoFileAlreadyExist struct { + FileName string +} + +func IsErrRepoFileAlreadyExist(err error) bool { + _, ok := err.(ErrRepoFileAlreadyExist) + return ok +} + +func (err ErrRepoFileAlreadyExist) Error() string { + return fmt.Sprintf("repository file already exists [file name: %s]", err.FileName) +} + // __________ .__ // \______ \____________ ____ ____ | |__ // | | _/\_ __ \__ \ / \_/ ___\| | \ @@ -628,3 +641,27 @@ func IsErrTeamAlreadyExist(err error) bool { func (err ErrTeamAlreadyExist) Error() string { return fmt.Sprintf("team already exists [org_id: %d, name: %s]", err.OrgID, err.Name) } + +// ____ ___ .__ .___ +// | | \______ | | _________ __| _/ +// | | /\____ \| | / _ \__ \ / __ | +// | | / | |_> > |_( <_> ) __ \_/ /_/ | +// |______/ | __/|____/\____(____ /\____ | +// |__| \/ \/ +// + +type ErrUploadNotExist struct { + ID int64 + UUID string + UserID int64 + RepoID int64 +} + +func IsErrUploadNotExist(err error) bool { + _, ok := err.(ErrAttachmentNotExist) + return ok +} + +func (err ErrUploadNotExist) Error() string { + return fmt.Sprintf("attachment does not exist [id: %d, uuid: %s]", err.ID, err.UUID) +} diff --git a/models/issue.go b/models/issue.go index 9d9d3db0a3..e0b72952eb 100644 --- a/models/issue.go +++ b/models/issue.go @@ -639,23 +639,18 @@ func newIssue(e *xorm.Session, repo *Repository, issue *Issue, labelIDs []int64, } // Check attachments. - attachments := make([]*Attachment, 0, len(uuids)) for _, uuid := range uuids { - attach, err := getAttachmentByUUID(e, uuid) + attachment, err := getAttachmentByUUID(e, uuid) if err != nil { if IsErrAttachmentNotExist(err) { continue } return fmt.Errorf("getAttachmentByUUID[%s]: %v", uuid, err) } - attachments = append(attachments, attach) - } - - for i := range attachments { - attachments[i].IssueID = issue.ID + attachment.IssueID = issue.ID // No assign value could be 0, so ignore AllCols(). - if _, err = e.Id(attachments[i].ID).Update(attachments[i]); err != nil { - return fmt.Errorf("update attachment[%d]: %v", attachments[i].ID, err) + if _, err = e.Id(attachment.ID).Update(attachment); err != nil { + return fmt.Errorf("update attachment[%d]: %v", attachment.ID, err) } } @@ -1728,7 +1723,7 @@ func DeleteAttachments(attachments []*Attachment, remove bool) (int, error) { } } - if _, err := x.Delete(a.ID); err != nil { + if _, err := x.Delete(a); err != nil { return i, err } } diff --git a/models/pull.go b/models/pull.go index d6df00dc7f..1dde7608f6 100644 --- a/models/pull.go +++ b/models/pull.go @@ -354,7 +354,7 @@ func (pr *PullRequest) testPatch() (err error) { log.Trace("PullRequest[%d].testPatch (patchPath): %s", pr.ID, patchPath) - if err := pr.BaseRepo.UpdateLocalCopy(); err != nil { + if err := pr.BaseRepo.UpdateLocalCopy(pr.BaseRepo.DefaultBranch); err != nil { return fmt.Errorf("UpdateLocalCopy: %v", err) } diff --git a/models/repo.go b/models/repo.go index f3eb439cac..c2ed6e012e 100644 --- a/models/repo.go +++ b/models/repo.go @@ -9,7 +9,9 @@ import ( "errors" "fmt" "html/template" + "io" "io/ioutil" + "mime/multipart" "os" "os/exec" "path" @@ -28,6 +30,7 @@ import ( git "github.com/gogits/git-module" api "github.com/gogits/go-gogs-client" + gouuid "github.com/satori/go.uuid" "github.com/gogits/gogs/modules/bindata" "github.com/gogits/gogs/modules/log" @@ -435,16 +438,25 @@ func (repo *Repository) LocalCopyPath() string { return path.Join(setting.AppDataPath, "tmp/local", com.ToStr(repo.ID)) } -func updateLocalCopy(repoPath, localPath string) error { +func updateLocalCopy(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, + Branch: branch, }); err != nil { return fmt.Errorf("Clone: %v", err) } } else { + if err := git.Checkout(localPath, git.CheckoutOptions{ + Branch: branch, + Timeout: time.Duration(setting.Git.Timeout.Pull) * time.Second, + }); err != nil { + return fmt.Errorf("Checkout: %v", err) + } if err := git.Pull(localPath, git.PullRemoteOptions{ - All: true, + All: false, + Remote: "origin", + Branch: branch, Timeout: time.Duration(setting.Git.Timeout.Pull) * time.Second, }); err != nil { return fmt.Errorf("Pull: %v", err) @@ -454,8 +466,8 @@ func updateLocalCopy(repoPath, localPath string) error { } // UpdateLocalCopy makes sure the local copy of repository is up-to-date. -func (repo *Repository) UpdateLocalCopy() error { - return updateLocalCopy(repo.RepoPath(), repo.LocalCopyPath()) +func (repo *Repository) UpdateLocalCopy(branch string) error { + return updateLocalCopy(repo.RepoPath(), repo.LocalCopyPath(), branch) } // PatchPath returns corresponding patch file path of repository by given issue ID. @@ -2255,3 +2267,426 @@ func (repo *Repository) GetForks() ([]*Repository, error) { forks := make([]*Repository, 0, repo.NumForks) return forks, x.Find(&forks, &Repository{ForkID: repo.ID}) } + +// ___________ .___.__ __ ___________.__.__ +// \_ _____/ __| _/|__|/ |_ \_ _____/|__| | ____ +// | __)_ / __ | | \ __\ | __) | | | _/ __ \ +// | \/ /_/ | | || | | \ | | |_\ ___/ +// /_______ /\____ | |__||__| \___ / |__|____/\___ > +// \/ \/ \/ \/ + +var repoWorkingPool = &workingPool{ + pool: make(map[string]*sync.Mutex), + count: make(map[string]int), +} + +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 +} + +// ________ .__ __ ___________.__.__ +// \______ \ ____ | | _____/ |_ ____ \_ _____/|__| | ____ +// | | \_/ __ \| | _/ __ \ __\/ __ \ | __) | | | _/ __ \ +// | ` \ ___/| |_\ ___/| | \ ___/ | \ | | |_\ ___/ +// /_______ /\___ >____/\___ >__| \___ > \___ / |__|____/\___ > +// \/ \/ \/ \/ \/ \/ +// + +func (repo *Repository) DeleteRepoFile(doer *User, branch, treeName, message string) (err error) { + repoWorkingPool.CheckIn(com.ToStr(repo.ID)) + defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) + + localPath := repo.LocalRepoPath() + if err = discardLocalRepoChanges(localPath, branch); err != nil { + return fmt.Errorf("discardLocalRepoChanges: %v", err) + } else if err = repo.UpdateLocalRepo(branch); err != nil { + return fmt.Errorf("UpdateLocalRepo: %v", err) + } + + filePath := path.Join(localPath, treeName) + os.Remove(filePath) + + if len(message) == 0 { + message = "Delete file '" + treeName + "'" + } + + 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", branch); err != nil { + return fmt.Errorf("Push: %v", err) + } + + return nil +} + +// ____ ___ .__ .___ ___________.___.__ +// | | \______ | | _________ __| _/ \_ _____/| | | ____ ______ +// | | /\____ \| | / _ \__ \ / __ | | __) | | | _/ __ \ / ___/ +// | | / | |_> > |_( <_> ) __ \_/ /_/ | | \ | | |_\ ___/ \___ \ +// |______/ | __/|____/\____(____ /\____ | \___ / |___|____/\___ >____ > +// |__| \/ \/ \/ \/ \/ +// + +// uploadRepoFiles uploads new files to repository. +func (repo *Repository) UploadRepoFiles(doer *User, oldBranchName, branchName, treeName, message string, uuids []string) (err error) { + repoWorkingPool.CheckIn(com.ToStr(repo.ID)) + defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) + + localPath := repo.LocalRepoPath() + + if err = discardLocalRepoChanges(localPath, oldBranchName); err != nil { + return fmt.Errorf("discardLocalRepoChanges: %v", err) + } else if err = repo.UpdateLocalRepo(oldBranchName); err != nil { + return fmt.Errorf("UpdateLocalRepo: %v", err) + } + + if oldBranchName != branchName { + repo.CheckoutNewBranch(oldBranchName, branchName) + } + + dirPath := path.Join(localPath, treeName) + os.MkdirAll(dirPath, os.ModePerm) + + // Copy uploaded files into repository. + for _, uuid := range uuids { + upload, err := getUpload(uuid, doer.ID, repo.ID) + if err != nil { + if IsErrUploadNotExist(err) { + continue + } + return fmt.Errorf("getUpload[%s]: %v", uuid, err) + } + uuidPath := upload.LocalPath() + filePath := dirPath + "/" + upload.Name + if err := os.Rename(uuidPath, filePath); err != nil { + DeleteUpload(upload, true) + return fmt.Errorf("Rename[%s -> %s]: %v", uuidPath, filePath, err) + } + DeleteUpload(upload, false) // false because we have moved the file + } + + if len(message) == 0 { + message = "Add files to '" + treeName + "'" + } + + 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 +} + +// Upload represent a uploaded file to a repo to be deleted when moved +type Upload struct { + ID int64 `xorm:"pk autoincr"` + UUID string `xorm:"uuid UNIQUE"` + UID int64 `xorm:"INDEX"` + RepoID int64 `xorm:"INDEX"` + Name string + Created time.Time `xorm:"-"` + CreatedUnix int64 +} + +func (u *Upload) BeforeInsert() { + u.CreatedUnix = time.Now().UTC().Unix() +} + +func (u *Upload) AfterSet(colName string, _ xorm.Cell) { + switch colName { + case "created_unix": + u.Created = time.Unix(u.CreatedUnix, 0).Local() + } +} + +// UploadLocalPath returns where uploads is stored in local file system based on given UUID. +func UploadLocalPath(uuid string) string { + return path.Join(setting.UploadTempPath, uuid[0:1], uuid[1:2], uuid) +} + +// LocalPath returns where uploads are temporarily stored in local file system. +func (upload *Upload) LocalPath() string { + return UploadLocalPath(upload.UUID) +} + +// NewUpload creates a new upload object. +func NewUpload(name string, buf []byte, file multipart.File, userId, repoId int64) (_ *Upload, err error) { + up := &Upload{ + UUID: gouuid.NewV4().String(), + Name: name, + UID: userId, + RepoID: repoId, + } + + if err = os.MkdirAll(path.Dir(up.LocalPath()), os.ModePerm); err != nil { + return nil, fmt.Errorf("MkdirAll: %v", err) + } + + fw, err := os.Create(up.LocalPath()) + if err != nil { + return nil, fmt.Errorf("Create: %v", err) + } + defer fw.Close() + + if _, err = fw.Write(buf); err != nil { + return nil, fmt.Errorf("Write: %v", err) + } else if _, err = io.Copy(fw, file); err != nil { + return nil, fmt.Errorf("Copy: %v", err) + } + + sess := x.NewSession() + defer sessionRelease(sess) + if err := sess.Begin(); err != nil { + return nil, err + } + if _, err := sess.Insert(up); err != nil { + return nil, err + } + + return up, sess.Commit() +} + +// RemoveUpload removes the file by UUID +func RemoveUpload(uuid string, userId, repoId int64) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err := sess.Begin(); err != nil { + return err + } + upload, err := getUpload(uuid, userId, repoId) + if err != nil { + return fmt.Errorf("getUpload[%s]: %v", uuid, err) + } + + if err := DeleteUpload(upload, true); err != nil { + return fmt.Errorf("DeleteUpload[%s]: %v", uuid, err) + } + + return nil +} + +func getUpload(uuid string, userID, repoID int64) (*Upload, error) { + up := &Upload{UUID: uuid, UID: userID, RepoID: repoID} + has, err := x.Get(up) + if err != nil { + return nil, err + } else if !has { + return nil, ErrUploadNotExist{0, uuid, userID, repoID} + } + return up, nil +} + +// GetUpload returns Upload by given UUID. +func GetUpload(uuid string, userId, repoId int64) (*Upload, error) { + return getUpload(uuid, userId, repoId) +} + +// DeleteUpload deletes the given upload +func DeleteUpload(u *Upload, remove bool) error { + _, err := DeleteUploads([]*Upload{u}, remove) + return err +} + +// DeleteUploads deletes the given uploads +func DeleteUploads(uploads []*Upload, remove bool) (int, error) { + for i, u := range uploads { + if remove { + if err := os.Remove(u.LocalPath()); err != nil { + return i, err + } + } + + if _, err := x.Delete(u); err != nil { + return i, err + } + } + + return len(uploads), nil +} + +// __________ .__ +// \______ \____________ ____ ____ | |__ +// | | _/\_ __ \__ \ / \_/ ___\| | \ +// | | \ | | \// __ \| | \ \___| Y \ +// |______ / |__| (____ /___| /\___ >___| / +// \/ \/ \/ \/ \/ +// + +func (repo *Repository) CreateNewBranch(doer *User, oldBranchName, branchName string) (err error) { + repoWorkingPool.CheckIn(com.ToStr(repo.ID)) + defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) + + localPath := repo.LocalRepoPath() + + if err = discardLocalRepoChanges(localPath, oldBranchName); err != nil { + return fmt.Errorf("discardLocalRepoChanges: %v", err) + } else if err = repo.UpdateLocalRepo(oldBranchName); err != nil { + return fmt.Errorf("UpdateLocalRepo: %v", err) + } + + if err = repo.CheckoutNewBranch(oldBranchName, branchName); err != nil { + return fmt.Errorf("CreateNewBranch: %v", err) + } + + if err = git.Push(localPath, "origin", branchName); err != nil { + return fmt.Errorf("Push: %v", err) + } + + return nil +} diff --git a/models/wiki.go b/models/wiki.go index 6809c28821..89e9fdaa39 100644 --- a/models/wiki.go +++ b/models/wiki.go @@ -21,44 +21,6 @@ import ( "github.com/gogits/gogs/modules/setting" ) -// workingPool represents a pool of working status which makes sure -// that only one instance of same task is performing at a time. -// However, different type of tasks can performing at the same time. -type workingPool struct { - lock sync.Mutex - pool map[string]*sync.Mutex - count map[string]int -} - -// CheckIn checks in a task and waits if others are running. -func (p *workingPool) CheckIn(name string) { - p.lock.Lock() - - lock, has := p.pool[name] - if !has { - lock = &sync.Mutex{} - p.pool[name] = lock - } - p.count[name]++ - - p.lock.Unlock() - lock.Lock() -} - -// CheckOut checks out a task to let other tasks run. -func (p *workingPool) CheckOut(name string) { - p.lock.Lock() - defer p.lock.Unlock() - - p.pool[name].Unlock() - if p.count[name] == 1 { - delete(p.pool, name) - delete(p.count, name) - } else { - p.count[name]-- - } -} - var wikiWorkingPool = &workingPool{ pool: make(map[string]*sync.Mutex), count: make(map[string]int), @@ -117,7 +79,7 @@ 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 updateLocalCopy(repo.WikiPath(), repo.LocalWikiPath(), "") } // discardLocalWikiChanges discards local commits make sure diff --git a/models/working_pool.go b/models/working_pool.go new file mode 100644 index 0000000000..c522de56a0 --- /dev/null +++ b/models/working_pool.go @@ -0,0 +1,47 @@ +// Copyright 2015 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 ( + "sync" +) + +// workingPool represents a pool of working status which makes sure +// that only one instance of same task is performing at a time. +// However, different type of tasks can performing at the same time. +type workingPool struct { + lock sync.Mutex + pool map[string]*sync.Mutex + count map[string]int +} + +// CheckIn checks in a task and waits if others are running. +func (p *workingPool) CheckIn(name string) { + p.lock.Lock() + + lock, has := p.pool[name] + if !has { + lock = &sync.Mutex{} + p.pool[name] = lock + } + p.count[name]++ + + p.lock.Unlock() + lock.Lock() +} + +// CheckOut checks out a task to let other tasks run. +func (p *workingPool) CheckOut(name string) { + p.lock.Lock() + defer p.lock.Unlock() + + p.pool[name].Unlock() + if p.count[name] == 1 { + delete(p.pool, name) + delete(p.count, name) + } else { + p.count[name]-- + } +} diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 179bc89169..985fe24582 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -169,7 +169,7 @@ type CreateIssueForm struct { MilestoneID int64 AssigneeID int64 Content string - Attachments []string + Files []string } func (f *CreateIssueForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { @@ -177,9 +177,9 @@ func (f *CreateIssueForm) Validate(ctx *macaron.Context, errs binding.Errors) bi } type CreateCommentForm struct { - Content string - Status string `binding:"OmitEmpty;In(reopen,close)"` - Attachments []string + Content string + Status string `binding:"OmitEmpty;In(reopen,close)"` + Files []string } func (f *CreateCommentForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { @@ -269,3 +269,91 @@ type NewWikiForm struct { func (f *NewWikiForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { return validate(errs, ctx.Data, f, ctx.Locale) } + +// ___________ .___.__ __ +// \_ _____/ __| _/|__|/ |_ +// | __)_ / __ | | \ __\ +// | \/ /_/ | | || | +// /_______ /\____ | |__||__| +// \/ \/ + +type EditRepoFileForm struct { + TreeName string `binding:"Required;MaxSize(500)"` + Content string `binding:"Required"` + CommitSummary string `binding:"MaxSize(100)` + CommitMessage string + CommitChoice string `binding:"Required;MaxSize(50)"` + NewBranchName string `binding:"AlphaDashDot;MaxSize(100)"` + LastCommit string +} + +func (f *EditRepoFileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + +type EditPreviewDiffForm struct { + Content string +} + +func (f *EditPreviewDiffForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + +// ____ ___ .__ .___ +// | | \______ | | _________ __| _/ +// | | /\____ \| | / _ \__ \ / __ | +// | | / | |_> > |_( <_> ) __ \_/ /_/ | +// |______/ | __/|____/\____(____ /\____ | +// |__| \/ \/ +// + +type UploadRepoFileForm struct { + TreeName string `binding:MaxSize(500)"` + CommitSummary string `binding:"MaxSize(100)` + CommitMessage string + CommitChoice string `binding:"Required;MaxSize(50)"` + NewBranchName string `binding:"AlphaDashDot;MaxSize(100)"` + Files []string +} + +func (f *UploadRepoFileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + +type RemoveUploadFileForm struct { + File string `binding:"Required;MaxSize(50)"` +} + +func (f *RemoveUploadFileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + +// ________ .__ __ +// \______ \ ____ | | _____/ |_ ____ +// | | \_/ __ \| | _/ __ \ __\/ __ \ +// | ` \ ___/| |_\ ___/| | \ ___/ +// /_______ /\___ >____/\___ >__| \___ > +// \/ \/ \/ \/ + +type DeleteRepoFileForm struct { + CommitSummary string `binding:"MaxSize(100)` +} + +func (f *DeleteRepoFileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + +// __________ .__ +// \______ \____________ ____ ____ | |__ +// | | _/\_ __ \__ \ / \_/ ___\| | \ +// | | \ | | \// __ \| | \ \___| Y \ +// |______ / |__| (____ /___| /\___ >___| / +// \/ \/ \/ \/ \/ +type NewBranchForm struct { + OldBranchName string `binding:"Required;MaxSize(100)"` + BranchName string `binding:"Required;MaxSize(100)"` +} + +func (f *NewBranchForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 38e9823961..d72efd102a 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -286,7 +286,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x5b\x6f\x23\xc9\x75\x7e\xef\x5f\x51\xab\xcd\x66\x34\x41\x93\xba\x8d\x34\x5a\xd9\x72\x96\x22\x9b\x14\x3d\xbc\xb9\x9b\x9a\xd9\xd9\x81\xd0\x6a\xb1\x8b\x64\xaf\x9a\xdd\xdc\xae\xa6\x34\x5a\x04\x81\x8d\x3c\xe4\x02\x04\x79\x48\x90\x20\x40\x10\x24\x0f\x89\x01\xe7\x66\x23\x2f\xde\x64\x93\x97\x4d\xde\x67\xff\x83\xb3\x8e\x9f\xfc\x17\xf2\x9d\x53\xd5\x64\x53\xa3\x55\xbc\x40\x62\xef\x88\x7d\xa9\x3a\x75\xea\x5c\xbf\x73\xaa\xdf\x15\x3d\xe7\xb9\xe3\x0a\xfe\xd3\xed\x37\xda\xcd\x97\x62\x78\xda\xf6\x44\xb3\xdd\x71\xac\x77\xc5\xa0\xe3\xd4\x3c\x47\x74\x6b\xcf\x1c\x51\x3f\xad\xf5\x5a\x8e\x27\xfa\x3d\x51\xef\xbb\xae\xe3\x0d\xfa\xbd\x46\xbb\xd7\x12\xf5\x33\x6f\xd8\xef\xe2\x61\xaf\xd9\x6e\xe9\x99\xd6\xb7\x44\x6d\x3e\x17\x49\x30\x93\x22\x9f\x06\xb9\x50\xd3\xf4\x46\x89\x34\x11\xf2\x5a\x66\xb7\x62\x1e\x4c\xf0\x22\xca\x63\x69\xd5\x06\x03\xbf\x57\xeb\x3a\xe2\x58\xb4\xd2\x89\x3a\xc2\x5f\xd1\x8a\x72\xe1\xc9\xec\x3a\x1a\x49\x50\xaa\x4f\x83\x04\xc3\xf1\x2c\x1a\x8b\xdb\x74\x21\xb2\x45\x22\xe2\x74\x14\xc4\xf1\xad\xe5\x9e\xf5\xfc\x33\x0f\xdc\x1f\x8b\x49\x94\x63\xb4\x13\xe5\x53\x99\x89\x8d\x50\x5e\x6f\xd8\x62\x63\x9e\xa5\xe1\x86\x48\xf1\x20\x97\x2a\xc7\x93\x50\x8e\x83\x45\x0c\x5a\x4a\x8f\x61\x0a\xd8\x3a\x31\x80\x7b\xcb\x7a\x95\xc9\x79\xaa\xa2\x3c\xcd\x6e\xcf\x2d\xb7\xdf\x1f\x8a\x63\xcb\xab\xbb\xed\xc1\xd0\x1f\xbe\x1c\xd0\xb0\xcb\x40\x4d\xb1\x52\xc3\x50\xaa\xf5\xbc\xb6\x18\x4d\x83\x4c\xc9\xdc\xa2\x1b\x1f\xa2\x72\x3d\x87\x26\x7e\x4b\x34\xd3\x6c\x24\xcd\xb6\x13\x79\x23\x56\xd4\x45\x9e\x8a\x4b\x29\xe6\x59\x74\x1d\xe4\xd2\x6a\xf6\xdd\xba\xe3\x0f\xdc\xf6\xf3\xda\x90\x56\x19\x07\xb1\xa2\xed\xb7\xe2\xf4\x32\x88\xc5\x2c\x78\x1d\xcd\x16\x33\x31\xca\x64\x90\x47\x90\x64\x1c\xcd\x20\x92\x74\x5c\xa6\x38\xc7\xce\x17\x4a\x66\xb6\xa8\xec\x88\x99\x0c\x12\x25\x92\x54\x8f\xb4\xba\xb5\x0f\xfd\xba\xeb\xd4\x86\xed\x7e\xcf\xef\xb4\xbb\x6d\xf0\x87\x61\x58\x61\x10\xe4\xa3\xa9\x20\xf9\x88\x4f\x16\x72\x21\x45\x2c\x93\x49\x3e\xb5\xb1\xe6\x15\xcb\x3d\x50\x22\x0e\x32\xe8\x00\x17\x58\x4b\x45\x97\x50\xdc\xe0\xac\xd3\xf1\x5d\xe7\x7b\x67\x8e\x37\xf4\xf1\xf7\xcc\xf1\x3b\x4e\xaf\x35\x3c\x05\xd9\x9d\x6d\xfc\x0f\xa2\x5c\x44\xe7\xa0\xdf\x5b\xcc\x2e\xc1\x58\x99\xd5\x48\x2a\x6d\x18\x41\x26\xd9\x38\x64\x28\xa2\x04\x06\x02\x51\xbd\x9e\xc7\x29\x9e\x92\x8d\x58\xce\x87\x83\x4e\xdf\x85\x58\x6a\x2d\x98\x9a\xdf\x3b\xeb\x82\xfa\xee\xf6\x1a\xd1\x48\xa9\xc5\xd7\x93\x63\x32\x6d\xcf\x3b\xbb\x43\x64\x67\x9d\xc8\x52\xbc\xe9\x0c\xc2\x52\x77\x88\x04\xa3\x3c\xba\x8e\xf2\x5b\x31\x96\x32\xb4\x9a\x8e\xd3\xf0\x59\x9c\xfd\x2e\xc4\x68\x08\xee\x83\xde\xf3\x20\x86\xf8\x40\xee\x02\x46\x38\x93\x95\x51\x8a\xad\x5c\x40\x13\x79\x20\xf2\x60\x62\x93\x72\x42\x71\x79\x2b\x6a\x49\x98\xa5\x51\x28\xbe\x83\x79\x55\xe2\xa4\x96\x60\xad\xeb\x20\xc6\x33\x9e\x04\xa5\x41\xf6\x1b\x09\x56\xd7\xe6\x1b\x46\x2a\x80\xd8\x37\xc4\x4d\x14\xc7\x62\x1a\x5c\x93\x67\xc9\xa5\x39\xab\xfc\x36\x26\x6b\xe9\x92\xe8\xa2\x64\x9c\x1e\x89\x69\x9e\xcf\xd5\xd1\xd6\x16\xac\x5a\xc6\x29\x4c\x43\x55\x27\x69\x3a\x89\x65\x15\x9b\xdc\xba\x91\x97\x5b\x8b\x79\x08\xcb\x53\x5b\xbb\xdb\x3b\x4f\xb6\x76\x76\xb6\xbc\xc5\x7c\x9e\x66\x79\x65\x9c\x66\x95\xd2\x06\x2a\x51\x52\xa9\x4f\xb3\x14\xf7\x7b\xef\xf3\x4b\xc3\xbe\x35\x3c\x75\xba\x0e\xc4\x00\x1d\xf9\x5d\x67\x58\xf3\x87\xb5\x16\x44\x71\xf1\xee\x78\xbc\xbf\xf7\x64\xef\x82\x18\x0a\x5e\x0b\x15\x7d\xca\x52\x19\x47\x31\x29\x8a\xcd\x1e\xfb\x99\xc7\xc1\x2d\xc4\xb1\x69\xf6\xa0\xc8\x27\x0f\xbb\xd1\xc9\x63\xb6\xd5\x46\xdb\x1b\x74\x6a\x2f\x7d\x0a\x28\xbe\xd7\xfe\x88\x7c\xe2\x70\xef\xf0\xf0\x60\xfb\x90\x2d\xab\x1a\x84\xb3\x28\x59\xb7\x2f\xb2\xfd\x87\x2d\x81\x62\xc5\xba\x21\xec\x6f\xbf\x6d\xa2\x0f\x92\x70\x9d\x41\xff\x41\x12\x49\x9a\x23\x72\x3d\x4c\xa4\xd7\x1f\xb6\xeb\x77\xed\x7a\x7f\x8d\x4c\x9a\x4d\x82\x24\xfa\x54\x7b\xfb\x43\xb4\xfa\x6e\xeb\x2d\x7e\x58\x42\x24\x8e\x7b\x1c\xf0\x1b\xee\x6e\x67\x1f\xd4\x66\x41\x76\x15\xa6\x37\x2c\x6f\x27\x21\x4b\x84\x0d\x66\x21\xcc\x14\x13\x2f\x11\x93\xae\xe0\xb8\xb9\x4c\x14\x98\xb5\x9c\x5e\xed\x04\x4a\x43\x14\x6c\x20\xd2\xf4\x1c\xff\x04\x71\xe7\x59\x29\xa6\x75\x22\xc5\xa1\x6b\xb4\x50\x79\x3a\x13\x67\x6e\xa7\xe2\x8d\xc8\xe0\x4a\xbc\x21\xbc\x33\x73\x14\x7c\xa2\xe4\x4a\x89\x9b\xa9\x4c\xb0\x81\x24\x94\x59\x94\x4c\x60\x58\x9a\x23\x90\x83\x49\x62\xf5\x60\x36\x07\x57\xc8\x02\xf6\x2c\x98\x24\x88\xc5\x3a\x31\xf9\xa0\xee\x7b\x75\xb2\x54\x0f\x11\xd9\x7a\x05\xa1\x5c\x93\x5c\x06\x6e\x7f\xd8\x87\xed\x82\x2f\x72\x15\xab\xd1\xef\xd6\xda\x3d\xdc\x71\x6e\x99\xa6\x2a\xe7\xf0\x4f\xf3\xf1\xf0\xbd\xcd\x62\xfc\x63\x72\xaa\xf7\x36\xf5\x70\xdc\xbc\xb7\x79\x3a\x1c\x0e\xfc\x41\xdf\x1d\x3e\x56\x5b\x16\xdf\xd4\x1a\x0d\x4a\x49\xdb\x55\xfe\xbf\xb5\x1c\x80\x67\x7b\x14\x1a\x11\x74\x65\x36\x43\xe4\x22\xdd\x12\xfb\x8b\x24\x82\x9f\xa4\xa3\x2b\xf0\x7d\xd6\x6b\x7f\xe8\x7b\xfd\xfa\x33\x67\xe8\x0f\x1c\xb7\x8b\xe8\x85\x98\x8d\xa9\x07\x07\x07\x24\x3c\x62\x4f\x6c\x36\xba\x1f\x3d\x26\xc9\xf1\x74\x4a\x9d\xe2\x26\xcd\xae\xc8\xfe\x37\xd5\x02\xf1\x1c\x72\xf3\xbc\x53\xa1\x7d\xfc\x31\x42\x18\x4c\x52\x91\xe0\xe0\xf9\x42\xe9\xec\x5a\x05\xb9\x76\x22\x66\xd8\xab\x18\x05\x0a\xe2\xa7\xfc\x1a\xa6\x64\xc2\xc8\x56\x90\x3e\x9c\x75\xa4\xf3\x6f\x39\xda\x5c\x53\x9c\xa3\xc9\xb5\x38\x87\x61\x51\x1e\x4a\xe2\x5b\x93\x9f\x33\x5e\x57\x4b\x19\x84\x42\x49\x7e\x4d\x04\x89\x82\x22\x48\x00\xd6\x48\x22\xfc\xb2\x6a\x75\xfa\xf5\x1a\x32\xc9\x03\xa2\x5e\x8a\xf4\x6d\x69\x23\x0d\xeb\xc0\xc8\x8b\x8e\x91\x1b\x17\xb0\x1d\x36\x15\x5a\x32\xb8\x0e\xa2\x98\x5e\x5b\x08\x27\x6c\x94\x34\x6c\x65\x88\x2f\xa6\x92\xe1\x02\x3c\x45\x5c\x2e\xa2\x38\x87\x2b\x94\xb8\x4f\x69\x03\x79\xd5\xf2\x86\x35\x77\x48\x53\x7d\x84\x8f\xe7\x8c\x36\x0a\x0a\x8d\x74\x16\x60\x92\x86\x3a\x1c\xd9\x90\xc0\x52\xa5\xbd\x6a\x14\x93\x5f\x61\x57\x16\xcd\x5d\x1a\xd8\xca\x78\xc8\x10\x10\x71\x45\xa2\x3d\xf4\x7f\x21\x60\x2c\x68\x77\xf7\xce\xb4\x7b\x38\x8f\xe1\x61\xf0\x46\xe8\x85\x67\x76\xda\xde\xd0\xe9\x15\x04\xde\xdb\x2c\xa8\x31\x07\x6e\x0a\x49\xcd\x83\x7c\x4a\x2e\x49\x34\xc2\x28\x93\x23\x02\x14\x6b\x70\xe9\xd1\x6f\x6f\x55\x95\x9a\x3e\xb2\xb1\x5e\xce\x86\xa2\xb3\x50\xca\xd2\x7b\xb4\x35\x45\x82\xd8\x82\xfb\xe9\x51\x55\x5e\x97\xb5\x3a\xa8\x11\x28\x60\x55\x19\xba\x6c\x56\x04\x64\x30\x5d\xce\x90\x73\x02\x3c\xd3\xd9\x81\x55\xc7\x58\x64\xbe\xb8\x8c\xa3\xd1\x95\xb8\x92\xb7\x58\x81\x2c\x17\x74\x2b\xb8\x9b\xc8\xc4\x06\xb5\x12\x6b\xea\x16\xbb\x9d\x95\x68\x2d\x77\xa0\xd9\x78\xe6\xbc\xf4\x87\x84\x53\x96\xac\x0c\x68\xbb\xe0\xa2\x44\x72\x6d\xaf\xab\xe7\x8f\x44\x90\x20\xce\x49\x02\xb1\x12\xa9\x77\x1c\xe1\x36\x85\x04\x6e\xa6\x11\xdc\x8c\xf4\x43\xbb\x41\xb8\x5a\xae\xd5\x22\x51\xf3\x4a\x25\xfa\xec\x6a\x61\x34\xa2\x4d\xdf\x18\xb3\x63\xef\x92\xd8\x23\x32\x19\xc3\x0f\xda\x2b\x67\xcb\x1b\xc0\x58\x20\x81\x2c\x93\x6a\x9e\x62\x1a\x76\x9f\xdf\xce\xa5\xd5\x6d\xf7\xda\xdd\xb3\x2e\xef\x88\x92\x22\xb0\xa6\x53\x2f\x87\xd6\xc2\x1d\xea\x8d\x1e\xa1\x4e\x82\x15\x05\x0a\x9e\xc1\xdd\xac\x7e\xb3\xc9\x21\xd9\x40\x5e\x3d\xad\x70\x0e\xb7\x7f\x36\x44\x7e\xec\xf4\x5b\x65\x00\x2a\x13\x99\x11\xd7\x90\x31\x00\x05\x9e\xfc\x9a\xa8\x6e\x4d\x28\xe2\x8c\x24\x8c\xb0\x32\x0a\x8e\xf3\x0c\xb8\xa7\x12\x2e\x32\xce\x56\xc7\x87\x4f\x0f\xb6\xa7\xdb\xb3\x6d\x25\x2a\x14\x47\x8f\x67\xb7\xf4\x53\x35\x31\x9a\xf0\x87\xf5\x2d\xd0\xe9\x67\x62\x0c\x58\x21\x02\x51\x9d\x8f\x5f\xb3\x01\xb0\xf1\x67\x39\xac\x9f\xdf\x50\xc8\x78\x01\x81\x53\xf5\x40\x8b\x45\x63\x2d\x40\xa4\x0d\xb8\xf9\x66\x98\x82\x0a\xf9\x39\x62\xe0\x04\x1a\x82\x3c\xf5\x7c\x9e\x68\x90\x35\x09\xf5\xb1\x66\x1b\x28\x28\x51\x2a\x16\xf3\xab\x91\xda\xd9\x15\x15\xf2\x30\x50\xe5\xd5\x2b\xa4\x53\x7d\x07\x53\xaa\x24\x29\xa6\xa9\x5f\x6d\x16\x46\x16\x93\xe8\x85\xa2\x8b\x50\x2a\xab\xee\x20\x6a\x10\x7e\x81\x34\x75\xaa\xdb\x62\x50\xb6\x55\x2c\x63\x91\x1a\xef\x1b\x60\x28\x62\xf9\xb3\x39\x81\xfa\x98\x30\x1c\xb9\x27\x99\x78\x4c\x9b\x22\xa3\x54\x39\xc4\x3d\xd2\x72\x23\xff\x5d\x77\x0a\x16\x01\x99\x39\xac\x0d\xc2\xe2\x14\x81\xc7\xf2\xb5\x1c\x2d\x20\x60\x0a\x6a\xc0\x20\x77\x5d\xd4\xcc\xe7\x89\x94\x59\xa8\x8e\x43\x06\x09\xb8\x50\x6b\xd4\x80\xf1\x8c\x65\xf3\x43\xae\xf3\x62\xd2\x09\x97\x24\xcc\x65\xeb\xa3\xf6\x40\x28\x0d\x25\x0b\x28\xc0\xcf\x4a\xf9\x3f\xd0\x26\xcd\x75\xe0\x98\xa3\x6c\x52\x89\xd3\xc9\x04\x7a\x67\x0c\x67\xc3\xa1\x12\x8a\x85\x1b\x14\x55\x34\x02\x36\x85\xc1\x86\xd5\xa9\x71\xe1\x49\x28\x85\x04\x47\x23\x2c\xcd\x3a\x81\x91\x25\x6e\x88\x27\xa8\x33\xf2\xe9\x4c\xb1\xac\x20\x8d\x28\x5b\xf3\x33\x5d\xe5\x88\x4d\x8a\x5e\x28\x97\x60\x3b\x06\x63\xc3\x1e\xc9\xd7\x1e\x03\x2a\xa8\x69\xd5\x4c\xf1\x31\xc5\x27\xd7\x54\xe7\x96\xd3\xd8\xdd\xdf\xdf\x79\x9f\x21\xdb\x81\xe5\xd4\x1b\x5e\x4d\x08\x73\xe7\xf2\x35\xdf\x6d\x3f\x39\xb4\x1a\xcb\xdb\x9d\xed\xdd\x27\x40\x1f\x24\x36\x14\x90\xf2\xbc\x54\xab\xce\x6e\xd5\x27\x31\x57\xab\xf0\x92\x09\x5c\x5e\x6f\x18\x0f\xa3\x5c\xee\xe1\x45\x94\x3f\x52\x3a\xb5\x8e\xa6\x29\x55\xc5\x8d\x93\xa2\x18\xe5\xb9\xd6\x69\xdf\xa3\xc0\xbe\xb3\xfb\x94\x11\xc7\xce\xd1\xde\xde\xf6\x81\x65\xea\x6a\x72\x55\xcb\x14\xc9\x19\x62\xbd\x35\xa8\x79\xde\x8b\x46\x51\x9e\xae\x2d\x8b\x34\x6e\x0b\x59\xd4\xd0\xa6\xe6\x00\x67\x99\xfc\x64\x81\x98\xaa\x19\x43\x82\x89\xc6\xb7\x95\xf1\x22\x8e\x37\x10\xf3\x3a\xcb\xfa\x59\x8f\x2f\xc8\x16\xfc\xb3\xfc\x37\xf2\x28\xbc\xdc\xe0\x0a\x48\x04\x97\x2a\x8d\x61\x83\x4b\xf3\x4c\x38\x9d\xc0\x9c\x33\x2e\x36\x0d\x3a\xb1\x4a\x96\xc6\xf1\xa6\x1a\x5e\x42\x82\x06\xf7\x13\x90\x1b\x2d\xa0\x61\x94\xe9\xed\x1e\x8c\x19\xe5\x28\xa0\x44\x39\x16\xbe\xf3\x8e\x6e\x5a\xe8\x9e\xc6\xb0\x2f\x9e\x39\xce\x40\xbc\xec\x9f\xb9\x82\xc5\x41\xe6\x2c\xbc\x5a\xd3\x79\xe7\x1d\xcb\x73\x50\x1c\x0f\x29\xae\x82\xc0\x3b\xef\x7e\xd0\x6c\x38\x2f\x5c\xfc\xf7\xeb\xbf\xb1\x49\x56\xbe\xc8\x53\x32\xd0\x88\x10\xe8\x4c\x72\xd6\x0d\x03\xc4\x07\x84\xca\x76\x0f\x65\x70\xd7\xe9\x9e\x20\x72\x36\x6a\x2f\x01\x32\xc5\x53\xab\xde\xef\x3f\x6b\x3b\xdc\x9a\x28\x69\xc1\x0f\x6e\xa4\x22\x73\x35\xaf\x97\xf3\xca\x63\xa2\x04\xa9\x31\x8c\xb4\x20\x5d\xea\x1c\x28\x8a\x65\xe9\xeb\x5b\x11\x2c\xa0\x98\x24\x2f\xfc\x6d\x2a\x83\x90\x30\x16\x61\x0f\x53\xfd\xf0\x0d\x40\x3c\x40\x8a\x47\xdd\x84\xfe\x87\x2f\xfd\xda\x19\xea\xb4\x1e\x7c\x5d\xd7\xfe\xc6\x12\x3e\xac\xbc\x70\x4e\xe8\x55\x85\x1e\x18\x5c\x0c\xa9\x9f\x5b\xb5\xfa\xb0\xfd\x9c\xca\xba\x06\x4a\x7a\xba\x42\xd2\x41\x5e\xa0\x8d\xed\x1c\x6e\x83\xb8\x47\xc0\x94\x6d\xe8\x6b\x07\x21\x70\x31\x37\x05\x86\x4c\x93\x71\x94\xcd\x84\xac\x00\x2d\xc5\xec\xf2\x99\x9c\x00\xa3\xe8\x84\x01\x9a\x2d\x42\x28\xae\xef\x00\x17\x75\x7c\xee\x25\xb9\xdd\x35\x98\x25\x35\x88\x64\xf7\x36\x93\xb1\x00\x99\x16\x1b\x44\x81\x27\x80\x73\xd3\x45\xa2\x01\xe9\x2a\xaf\x31\x79\x97\xf7\x5f\x22\xca\x2c\xce\x10\x77\x91\x73\x27\x9c\x29\xc1\xea\x75\x24\x6f\x40\xf6\x36\x9f\x22\x42\x55\x2d\xea\x70\xb4\x5d\xaa\x40\x5b\x3d\x68\xfa\x79\xdb\x79\x51\xa2\xd0\xa5\xdd\x50\xbd\x37\x36\x3a\x29\x02\x1e\xd5\x77\xcd\x97\x3e\xed\xa6\x3c\x9c\xb2\x56\x28\x73\xcc\x5a\xd5\xe7\x80\x4c\xd3\xc5\x25\x17\xe5\xd0\x7f\x94\x2b\xb6\xf5\x2d\xdd\xd6\xd8\xda\x39\xd8\x2f\x68\x3e\xa4\xd5\xe5\x22\x5f\x37\xb6\xff\x75\x42\x30\xd5\xdc\x28\x98\xe7\x40\xfa\x82\x7b\x10\xda\xbc\xde\xd2\x92\xa1\x5d\xaf\x0d\x86\x70\x2c\xd0\xa0\xb4\x0f\xcb\x41\x45\x31\x4d\xd3\x2b\x0a\x69\xa7\xf8\x15\x79\xa0\xae\xd6\x5a\x49\xd6\x3d\xfd\x21\x8e\xd8\x71\x44\x60\x35\x8f\x66\x92\xf2\x28\x14\x00\x9f\x06\xdc\x51\x56\xc3\x21\xa3\x72\xfd\x61\xbb\xeb\x00\x94\x98\xfe\x4a\x8d\x95\x1f\x25\xec\xf9\xb2\x84\x08\x88\x3b\xef\x59\x7b\xe0\x0f\x3b\x9e\x8f\x79\xd4\xc8\x5c\x6d\x71\x55\xff\x4e\x23\xc5\xf8\x93\x3a\x24\xd9\x4c\x6f\x13\xab\xca\x00\x48\x8e\xcb\xdf\xbb\x3d\x22\xaa\x7c\x91\x5e\x51\x2e\xea\xcd\x37\x4a\x64\x4f\x16\xe3\x31\xe7\x66\xce\x23\x54\xce\xa2\x52\x4a\x64\x6c\x23\xbd\xc8\xb9\x69\x9c\x45\x9c\x8b\x4d\xe7\x32\x4c\x93\x47\x80\x0b\x09\x36\x71\x43\x75\x2e\xbf\x04\x6c\x74\x7a\x0d\xff\xe4\xac\xd9\x24\xec\xe5\xf4\xb4\x80\x88\x6f\x72\xec\x55\xa3\x04\x8c\xb2\xf7\xe8\xc6\xa9\x77\x76\xf2\x5d\xa7\xae\xe1\x7c\xd1\x44\x65\x38\xcf\x36\xa9\xcb\x00\x42\x6f\x33\x36\x36\x35\xcb\xe7\xd5\x09\x5d\x93\xa1\x1d\xed\x1f\x3e\xc5\xbb\xef\x7d\xcf\xbc\xf8\xe4\x13\x7e\xfa\xe4\x80\x3b\x10\x69\x2e\x6d\xe2\x98\x01\x04\x81\x29\xd4\xdc\x4a\x23\xd2\x0d\x0c\x41\x10\xf7\xba\xc3\x81\xa7\x3b\x51\xc8\xd1\xd4\xd4\xaa\xc2\x99\x28\xa3\x73\xa5\x04\x25\x50\xaf\x97\xe7\x62\x25\x12\x00\xe0\x78\x3a\x9b\x51\xf1\x1e\x72\x97\xd2\x6d\xd6\xc5\xc1\x93\xed\xf7\xab\xa2\xad\x17\x32\x75\x8b\xc1\x0d\x6a\x45\x08\x32\xe2\x85\x82\xf8\x06\x01\x77\xb9\x9e\x49\x79\x25\xc4\x7b\xea\x74\xfa\x84\xd5\xb4\xb1\xea\xb4\x42\xb0\x93\xc3\x23\x75\x14\xc2\x88\xf4\x85\xf8\x59\x5d\x06\x06\x9e\x43\x44\xea\xba\x13\xb1\x1c\x4f\xb6\xbf\x4e\x70\xad\x3e\x60\x70\xaa\xab\x0e\x70\x82\x71\x3e\xb1\xa3\xa3\x38\x47\x2b\x8e\x55\x3a\x4f\xf2\xf6\xca\xe0\x35\x2d\xef\xb8\x2a\xfa\x54\x3a\x53\x5a\x44\xc4\x51\xbc\xb0\x92\xf1\xb8\x42\x21\x09\xc2\x2a\x4d\x54\xda\xc4\x0b\xf3\xd6\x01\x0c\x25\x62\x84\x2d\x95\xc7\x51\xae\xf7\x09\x7b\xb6\x9b\x14\x1d\x56\x30\xff\x1e\x3c\xaa\xad\xfb\x21\x40\x6a\x46\xac\x10\x29\xdb\x97\xc6\xed\x61\x08\xd4\x00\xb0\x46\xda\xdc\xdf\xdb\xdd\xad\x8a\x21\xed\xc1\x60\xb7\x8f\x29\xb2\xe2\x52\xb2\xd5\x2e\x07\x63\x83\xb4\xfd\x8b\x0d\x32\xef\x0d\xf1\x6d\x7e\xfd\x41\xa9\x36\xf8\xce\x85\xd0\xde\x69\x35\xdd\x7e\x97\x37\xda\x65\x26\x56\x19\x8e\xe3\xfe\x3c\x50\xea\x26\xcd\x42\x83\x6d\xca\xb0\x86\x04\x93\xcb\xd7\x39\xe0\xf4\x2c\x26\x37\x0c\xa8\x51\x91\x40\x91\xd7\xd2\x10\x67\x87\x4d\x13\x54\xc9\x4b\x94\x7a\x3a\xec\x76\xfc\x5a\x67\x48\x39\x9b\x52\xe0\x52\x70\xd6\xab\x11\x22\xc4\x3a\x66\x93\x33\x04\x12\x0d\x8d\xe0\xa2\x1b\xbc\x2f\x7a\xca\x23\xef\x1c\x34\x98\xc1\x56\xad\x81\xd0\xc9\xd9\x57\x3f\x29\x90\x92\x79\x6f\xe0\x57\xab\x0e\x57\x07\xbb\x08\xc5\xa5\x90\xb8\x46\xf1\x60\x1b\x98\x07\x94\x9e\xd7\x28\xbd\x1c\x6c\x17\x84\x34\x2f\x1a\x70\x95\x78\x01\x81\x04\xf5\x30\x63\x06\xea\xf5\x18\x5d\x60\x16\x4f\x38\x42\x9e\xce\xa9\x7b\x74\x9c\x8f\xe6\x36\xbd\x3c\x3e\x3a\xd8\x7b\xfa\xbe\x5d\x48\xf8\x78\x16\x8c\x82\x0c\x3e\x10\x5e\x1e\x6f\xdb\xf3\x34\x8d\x19\x0a\x1f\x23\x4c\xd9\x51\x18\x4b\xdf\x44\xf0\x63\x9d\xfa\x8b\x95\x8f\xc4\xc5\x0a\x91\xee\xec\xec\xee\xec\x5c\x14\x6e\x4b\x70\x83\xbb\x5f\xf7\xcb\x94\x4a\x1a\x23\xd2\x42\xbc\xf7\xc9\x13\xd9\xed\x79\xbb\xb1\x2e\xd0\x41\x96\x5e\x47\x04\x8b\x18\x73\x4c\xe0\xc0\xb4\x6f\xa5\xd9\xc2\x90\x23\x76\x4d\x6e\x5d\x20\xcb\x17\xa3\x6e\x25\x1d\x1e\xd1\xb2\x08\x89\xd2\xf4\xe5\x8a\xba\x0a\x88\xb8\x3a\xa9\x8a\x0b\x06\xa2\xe6\xad\xba\xf8\x7f\x93\x1e\x21\xfa\x23\x60\xc1\x0a\x7e\x2b\x61\x46\x29\x72\x8b\x1f\x8a\x50\x25\x05\xc3\x48\xca\x88\xb7\x05\x67\x04\xeb\x8f\x8a\xf5\x3e\x28\x78\xf4\x73\x0a\x8c\x17\x4b\x31\xf9\xe6\x8c\xce\x40\xea\x62\x27\x58\xd3\x33\x5b\x1e\x21\x7d\x47\x52\x83\x48\x83\x51\x0d\x34\x8d\x7c\x3a\x91\xf0\x35\x42\xa1\x5e\x86\xce\x68\x14\xb7\x0a\x79\xc1\x56\x19\xd3\x18\x33\x2e\x87\x4b\x1d\x7e\x34\x41\x20\xed\x33\xd7\x79\x1b\x81\x28\x14\xf0\x7a\xfd\xb5\xb9\x8c\x31\x8c\x83\x12\xf0\xd4\x54\x0a\xf0\xb1\x62\x1d\x5e\x43\x72\x5c\xba\xce\x1a\x91\x43\xe4\x9a\x6d\xab\x55\xf7\x0b\xaf\x61\x60\x41\x27\x0a\xfc\x62\x45\x25\x8e\xc6\x92\xe9\xdc\x33\xdd\x73\xb8\x11\x0b\xb8\xdb\x74\xd6\xe7\x5b\xaf\xe6\xd1\x88\x3a\x8f\x00\xcf\xcf\x51\x54\xb8\xfe\xd9\xa0\xd3\xaf\x35\xca\xb5\xf2\x56\x70\x8d\xbf\x99\xe2\x13\x4d\x14\xaa\x4a\x9a\xe3\x0a\x8a\x96\x28\xeb\x52\x3c\xd8\x08\x17\xa9\x9a\x2e\xd2\x0d\x0c\x82\xed\x07\x45\x83\x5c\x4f\x15\x0a\x15\xe0\x08\x9c\x91\x26\x34\x7e\x04\x7c\x1c\x25\xd5\x49\xa6\x07\x30\x86\xd4\x97\x5b\x56\xcb\x35\xac\x78\xa8\x77\xea\x5c\x5d\x98\x61\x20\xce\x61\x9a\xbb\xb8\xcb\x2c\x3e\xa6\x83\xca\xd0\xb4\x20\xb9\x9f\x43\xc7\x02\xe3\x31\x77\xf8\x67\xdc\xa9\x2d\xb2\x66\x41\xba\xa4\xc3\xa6\x0c\xb9\x49\x14\x16\xbc\xc6\xd0\xe4\x62\x4e\x5b\x54\xa2\xd1\xf3\x4c\x79\x3d\x4a\x29\xc9\x9b\x21\x30\xd7\x74\x14\xd1\x24\x10\x60\x78\xc1\xa9\x00\x91\x4e\x49\x59\x6c\xef\xe6\xe6\xa6\x1a\x47\x97\xc5\x0e\xd3\x6c\xf2\x2b\xb0\xcf\x5c\xdd\xe5\x9f\x24\xda\x32\x74\x48\xa9\x60\xe7\x32\x88\x09\x4a\x18\xeb\x6a\x3a\xf0\x11\xe4\xcb\x86\x7f\x67\x7b\xa8\x39\xf3\x1c\x01\x0d\xf8\x25\x3f\x2f\x75\x8d\x57\x4f\x15\x03\x0c\xc9\x86\x0c\x2c\xd4\x28\x4e\xb4\xc0\xce\x05\xc9\xf2\xc2\xac\xb1\x32\xdb\x41\xd1\x60\x29\x11\xb9\x33\x51\x5b\xcd\xea\xf5\xc5\x5a\x41\x5c\x7a\x41\xad\xb4\x84\xf7\x37\x4b\x4b\x27\x27\xd4\xc4\x50\x26\x42\x44\x33\xa0\xdb\xad\x8f\xe7\x72\xf2\x5b\xfa\x72\x9e\x4c\x2c\x94\xcc\xfd\x17\xd8\x2e\xb5\x12\xa8\x70\xbb\x77\xd0\xfa\x11\x1e\x23\x65\x0a\x8c\xeb\xbc\xee\xed\x76\x4f\xf8\xd4\xce\x1c\xd4\x3d\x31\xd3\x92\x25\xf2\xd6\xdd\x5d\x3e\xa0\x9e\xc7\x69\x70\x47\x48\x40\xda\x34\x9b\x90\x87\xc7\x58\xdf\x7a\x45\x4e\x48\xc2\xf6\xe6\x72\x04\x60\x23\x75\x43\xcb\xe4\x6e\x12\x1c\xb5\x1f\x6e\xa9\x13\x3b\xa7\x76\x96\xe0\xa3\xcc\x75\xaa\x80\x25\xc8\x3a\x7b\x05\x11\xa4\x53\x03\x2f\x31\x9c\xad\x47\xab\x8d\xce\xec\xeb\xb6\x38\x4b\xa2\xd7\x8d\x80\xb0\xaf\xbb\xb8\xbc\x35\x57\xcd\xfa\xe1\xee\x6e\xf1\xfb\x91\xbe\xd8\xdf\xb6\x0b\xd2\xcb\x0b\xfd\x6a\x6f\x6f\xef\xfd\xe5\x45\x2f\x48\x52\x5b\x3c\x8b\x50\x56\x51\x77\xd9\xcb\x01\x70\xcc\x4f\x17\x46\x1b\x2d\xaf\x47\x59\xca\x19\x9b\x6f\x69\x96\xc9\xe6\xb3\xe2\x2c\xb7\xa8\x54\x82\x4b\xaa\x92\x4a\x62\x28\xf9\xc9\x24\x8d\x03\xd4\xab\xf0\x8f\xad\xf9\xd5\x64\x8b\xa4\xb7\xf5\x2e\xae\x2a\xc8\x17\x2a\x0f\xc8\x4a\x9a\x7d\xb7\x5b\xd3\xc9\x37\x4e\x27\xfa\xe3\x86\x55\xe7\xaf\x48\xc2\x34\x3e\xd5\x4d\x1f\x93\x85\xe9\x51\x42\xbf\x54\x2b\x98\xd3\x68\xd3\xc5\xba\x93\x97\x8b\xb9\x05\x34\x05\xe4\x0f\xb8\xcb\x2e\xe7\x01\xb7\x90\x67\x18\x19\xd1\x31\x1d\x39\x64\x61\x9b\xc5\x34\x9b\x8d\x64\xc3\x32\xdd\x24\xf3\xf4\xff\xb2\xd0\xba\x5b\x63\x71\xe8\x2f\x36\x3e\xcc\x82\x11\x6f\xb7\x21\x2f\x17\x13\xba\x68\x43\xf6\xf4\xfb\x22\xc8\x78\xff\x4e\x96\xa5\x19\x5d\xd4\xb3\x88\x9a\x30\xf1\x9d\xed\x6b\x0a\x56\x07\xb5\x37\xc1\x32\xbe\xb5\x0a\x68\x56\xc8\xc6\xc4\x22\x6a\x4f\x90\x1a\xaa\xe6\xf9\x79\x31\x6d\x39\x81\x85\x71\x77\x34\x3d\x5c\x0d\x35\x91\x50\xc7\x1d\x45\xed\xa1\x74\xc6\x41\x18\x43\x45\x96\xe6\xb8\xde\x54\x37\x64\x81\xec\x82\x29\x05\x06\xaa\xd2\x0c\x26\x7a\xfc\x76\xa2\xed\xf4\x5b\xbe\xdb\x1f\xea\xaa\xc1\x84\x2a\x72\x64\x8e\xa2\x2b\x6f\xa6\x5a\x0f\x5a\x24\x6e\xd6\x68\xb0\x4c\xb7\xb5\x33\xd3\x31\x83\x57\xc8\x99\x25\xbd\x0c\x24\x6a\x1a\x8d\xf3\x87\xe8\xec\x1e\x9a\xcf\x57\x76\xc4\xb7\xbf\x8d\x3b\x9b\x7a\xab\xa5\x10\xe3\x7b\xa7\xed\x26\x9f\x85\x1d\x72\xf2\x9e\x50\x1c\xe4\x5d\x87\xc8\x20\xb7\x6f\xef\xab\x51\x6b\x77\x5e\xbe\xb5\x33\xe7\xf5\x3c\xca\x38\x76\xa0\xb2\x04\x3b\x44\x80\x78\xd9\x0c\x65\x2c\xa9\x99\x34\xa6\x1e\xd3\x0c\x6c\xd3\x88\x75\x71\x3d\xd5\x5f\x29\x14\x0d\xbf\x92\x9a\x93\xfb\x74\x9c\x94\xb5\xe6\x4a\x83\xc8\x35\x1c\xe7\xf3\x6b\xfe\x42\xc8\xc8\x63\x06\x34\x82\xf8\x7b\x0f\x86\x72\x1d\x60\xb8\x1e\xea\x7e\x1f\x40\xa4\xeb\x95\xcf\x69\x86\xfa\x5c\x2d\x5b\xd2\xe6\x0a\xb8\x04\xfd\x41\x24\xc6\x72\x0f\x51\x2d\xa3\x32\xe3\x16\x00\xb5\x64\xf2\x74\x40\xad\x7d\x7f\x11\xce\xef\xd8\x3d\x0d\x29\x1f\xa7\xe3\x9e\x5b\x41\xa5\x4a\x43\x1f\x88\x2f\xa5\xa4\x23\xc9\x1d\x29\xd1\xc3\xb2\x94\x1e\x6a\x7f\xac\x33\xd0\x88\x82\x49\x82\xe5\xa2\x51\x21\x3a\x53\xa1\x73\x89\xbd\x51\xea\x95\x3c\x3c\xf2\x4e\xf7\x64\xd9\x62\xf8\xa6\xe5\x27\xf4\x2b\x09\xb6\xaf\xce\x31\xd2\x55\x7e\x36\x51\xef\xd5\xc6\x4e\xb9\xe8\xdd\xb0\x37\x76\xd7\xee\xcf\x49\x2b\x0e\x35\xc1\xbc\x92\xe0\x96\x81\xf7\xae\xf0\x56\xe7\x0a\x2b\x01\xae\x9f\x2f\x88\xb5\x56\xbf\xd5\x70\xdb\x7c\x92\x4d\xf1\x35\xa0\xe3\x66\x58\xc8\x6b\xa4\x15\xcd\xde\x11\x9f\x14\x1c\xd1\x9f\x0f\x96\xdf\x43\x70\x63\xf2\x37\xcd\xa7\x6e\xc7\x8b\x7c\x7c\x68\x91\xdd\x70\x46\x41\x12\x2b\x7f\x1c\x92\x2d\x92\x84\x22\x0d\x3d\xe6\x7e\x20\xe7\xfe\x28\xa5\x03\x50\xa4\xed\x6a\xa9\x9d\x66\x7c\xd1\x5d\x24\xe5\xd1\x6c\xbc\x7c\x66\xc5\xc7\x02\x08\xde\xf4\xa1\x5e\x6d\xe8\x73\x63\x68\x05\xcd\xe8\x84\x2c\xe4\xd4\x12\x51\x74\x56\x9a\x93\xaa\xfe\xec\xc1\x37\x0f\xcf\x2d\xfa\x00\xa4\x71\xc6\x00\xec\x03\xed\x6a\x3b\xdb\x33\x8b\x55\xb5\xfc\x7a\x6e\x2a\x83\x98\x4e\x5d\xe9\x44\xd6\x90\xa1\xef\x65\x7c\xfd\xdc\xe7\xe7\xf7\x51\xda\x7d\x32\xb5\x56\x7d\xca\x83\x6d\xc2\x63\xb5\x6c\xb2\xd0\xc0\x90\x9c\x9b\x13\x21\x4c\xe6\x11\x8a\x27\x31\x56\xa3\xab\x47\x45\xea\xab\x54\x16\x49\x46\xa0\x8a\xa5\x56\xa9\xe4\xc1\x44\x51\xfa\xa4\xcc\xce\xf9\x3f\x4d\x96\x19\x3e\xca\x2b\x6a\x34\x63\x90\x1f\xa6\x23\xc5\x0f\x88\xd8\xd6\x4e\xf5\x69\x75\xdf\xaa\xb9\x2d\x63\x29\x75\x3e\x53\x2e\x7d\x17\xc8\x07\x85\x64\xf4\x85\x78\x78\x2f\x3e\xef\x8e\xde\x41\x40\x77\xa4\xcb\x4a\xb9\x7f\xab\xd6\x2b\x2c\x7c\xbe\x6a\xbc\x29\x31\x8d\x26\xd3\x18\xff\x38\xa4\xc3\xe3\xa9\x0a\xc0\x6e\x33\xd4\xdb\xd7\xd4\xc2\xe2\x0f\x48\xd4\xb2\x7c\x68\xb4\x9b\x4d\xff\xb4\xdd\x3a\xed\xe0\xdf\x70\xad\x9b\x5e\x46\x8c\x94\x72\xd4\x12\xcc\x12\xe5\x72\xba\xa0\x70\x40\x0d\x3d\xee\xd7\x73\x28\x6e\xb5\x87\x9a\x74\x39\xf1\xbc\x45\x95\xac\x37\x18\xe5\x54\x78\x31\xc9\xb8\x7c\x66\xf8\x30\x4d\xfe\xae\xb3\x56\x1f\xb2\x47\x8a\xfd\x7b\x88\x6b\x90\x4b\x5f\x55\x25\x0f\xd0\x2a\x50\xae\x6e\xf2\x3e\x60\x29\x93\x51\xc9\x4e\x82\x09\xf9\xad\xa2\x06\x16\x6e\x90\xe9\xbf\x89\x99\x4c\x46\xc6\x48\x50\x02\xaf\xec\xa4\xbf\x6c\x96\xde\xd3\x81\x27\x2d\x57\xcd\xf3\x73\xab\xdb\x6e\xb9\x3a\x75\x1e\x50\x7a\x6f\xbb\x6e\xdf\xd5\x1f\x33\x59\xf5\x4e\xbf\xe7\x98\x6b\xfa\x28\xd4\x5c\xa2\x1e\xe7\xce\x94\xf5\x4a\x3b\xe1\x79\xe9\x74\xb9\xdc\xde\x9a\xa2\xa8\xa5\xb6\x6e\x7e\x23\xa5\xe9\xc4\x6b\x0f\x6c\x38\xcd\xda\x59\x67\xe8\x97\x1a\x5d\x7c\x82\x1a\xcc\xf9\xab\xd2\x75\xc9\x47\xb9\x9c\x29\x5d\x0c\xea\x4f\x26\x74\xfd\x17\xe8\xae\x3e\x89\x5f\x7f\xb1\xec\x39\x7e\x7b\xe8\x74\xbd\xe2\x2b\xb9\x68\xe7\x90\x32\x73\xad\x47\x32\x01\x90\xaa\x9c\x79\xf6\xa7\xd3\x4a\xbd\x47\x7f\x4f\x9f\xd1\xdf\xe1\x0b\x3b\x94\x95\x86\x63\x8f\xb3\x4a\xd3\xb5\x93\xb8\xd2\xeb\xd8\xf1\x75\xa5\xf3\xdc\xce\x16\x15\xf7\xcc\xfe\x38\xa8\x7c\x77\x60\x4b\x55\x71\x3c\x7b\x9e\x57\x4e\x5c\x7b\x1e\x57\x06\x1d\xfb\x72\x52\x39\x69\xd9\x90\x7e\x7b\x68\x8f\xa3\x4a\xb3\x6d\xe7\x59\x65\xe8\xda\x23\x55\xa9\x7f\xc4\x87\xb3\xb4\xa6\x03\x93\x8e\xd4\xd4\xfe\xf9\x3f\x7e\xff\x67\xff\xf6\xc7\x3f\xfb\xe9\x3f\x7c\xf5\xa7\xbf\x6b\xff\xfc\xb3\x1f\xfc\xe2\xef\xfe\x44\xdf\xfc\xf2\xf3\xdf\xfb\xc5\xdf\xfe\xf9\x57\x3f\xfd\xa7\x5f\x7e\xfe\xfb\x77\x5f\xfc\xd7\x1f\xfd\xf8\xab\xcf\xfe\x9d\x5e\x34\xe4\x22\x57\xa3\xa9\xdd\xcc\x82\xe4\x8b\x1f\x06\x91\xb2\x7b\x54\x92\xa3\x28\x08\x95\xdd\x09\x72\x98\xe1\x7f\xfe\xf5\xc2\x7e\xf3\x57\x5f\xfe\xce\x97\x3f\xf8\xf2\x07\x6f\xfe\xe5\xcd\x4f\xdf\x7c\x66\x7f\xf5\x67\x7f\xf3\xd5\x5f\xfc\xfd\x7f\xff\xe8\x2f\x6d\x47\xcd\x83\x2f\x7e\x92\xc6\x36\x7d\x58\xb4\x98\x2c\xbe\xf8\x91\xa2\x0f\xc1\x4e\xb2\x40\x45\xf4\x30\x56\x57\x91\xfd\xe6\x27\x5f\xfe\xc1\x9b\x7f\x7d\xf3\xcf\x6f\x7e\xfc\xe5\xf7\x35\x0d\xbb\x9d\x07\x71\x44\x95\x8e\xb7\x00\xf6\x8c\x03\xb8\x53\x62\x0f\xbf\xf8\x3c\xbb\xfa\xe2\x87\xd2\xfe\x8f\x3f\xc4\xaa\x79\x94\x04\x96\x2e\x09\x42\x36\x72\x0a\xcd\x64\x59\xf3\x68\x74\x85\x34\xcb\x4a\xa0\x04\x26\xa9\x84\x39\xb7\x58\x0b\xac\x0d\x8b\x55\x81\xcb\x4f\xa7\x16\xeb\x83\x2f\xa1\x11\x8b\xff\x2e\xef\x58\x3f\xfc\x01\xb7\xc5\x4a\xa2\x98\x92\x59\xac\x29\x5c\x26\xb1\xc5\xea\xa2\x4f\xfb\xae\x2d\xd6\x19\x9d\x84\x2f\x2c\x56\x1c\x2e\x3f\x0e\x2c\xd6\x1e\xad\xa9\x2c\x56\x21\x2e\xf9\xd7\x62\x55\xd2\x5d\x6c\xb1\x3e\x71\x79\x39\xb1\x58\xa9\x54\x31\xe7\x16\x6b\x96\x16\x8c\x2c\x56\x2f\x07\x4f\x8b\x75\x4c\x45\x0c\xeb\x9a\xa1\xa6\xf9\x3a\x12\x20\x66\x3e\xe7\xef\x79\xd2\x52\xe0\x1c\xc5\x01\xf7\x63\xd9\xdb\xab\x80\xf1\xf1\x71\x94\x44\xd6\xab\xe5\x88\xaa\x99\x46\x07\xdf\x29\xa5\x75\x64\xa2\xd3\xfe\x0b\xbf\x89\x22\x0e\x25\xcd\x89\xab\x3f\x8a\x28\x45\x53\x0f\x61\x88\x8e\x20\x4c\x6f\xee\x6e\x19\xc9\x1f\xf0\x50\xa8\x99\xa4\x7c\xf2\xc9\x55\x65\x0a\xbf\x5c\xa3\x4b\xf0\x43\x9f\x17\x72\x46\xf8\x9f\x00\x00\x00\xff\xff\x8c\x7b\xdd\x42\x31\x30\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5b\x5b\x6f\x23\xc9\x75\x7e\xef\x5f\x51\xab\xcd\x66\x34\x41\x93\xd4\x65\xa4\xd1\xca\x96\xb3\x14\xd9\x94\xe8\xe1\xcd\xdd\xd4\xcc\xce\x0e\x84\x56\x8b\x5d\x24\x7b\xd5\xec\xe6\x76\x35\xa5\xd1\x22\x08\x6c\xe4\x21\x17\x20\xc8\x43\x82\x04\x01\x82\x20\x79\x48\x0c\x38\x37\x1b\x79\xb1\x13\x27\x2f\x9b\xbc\xcf\xfe\x07\x67\x1d\x3f\xf9\x2f\xe4\x3b\xa7\xaa\xc9\xa6\x46\xab\xec\xe6\xea\x15\xfb\x52\x75\xaa\xce\xfd\x3b\xa7\x7a\xde\x15\x3d\xe7\xb9\xe3\x0a\xfe\xd3\xed\x37\xdb\xad\x97\x62\x78\xda\xf6\x44\xab\xdd\x71\xac\x77\xc5\xa0\xe3\xd4\x3d\x47\x74\xeb\xcf\x1c\xd1\x38\xad\xf7\x4e\x1c\x4f\xf4\x7b\xa2\xd1\x77\x5d\xc7\x1b\xf4\x7b\xcd\x76\xef\x44\x34\xce\xbc\x61\xbf\x8b\x87\xbd\x56\xfb\x44\xcf\xb4\xbe\x21\xea\xf3\xb9\x48\x82\x99\x14\xf9\x34\xc8\x85\x9a\xa6\x37\x4a\xa4\x89\x90\xd7\x32\xbb\x15\xf3\x60\x82\x17\x51\x1e\x4b\xab\x3e\x18\xf8\xbd\x7a\xd7\x11\x47\xe2\x24\x9d\xa8\x43\xfc\x15\x27\x51\x2e\x3c\x99\x5d\x47\x23\x09\x4a\x8d\x69\x90\x60\x38\x9e\x45\x63\x71\x9b\x2e\x44\xb6\x48\x44\x9c\x8e\x82\x38\xbe\xb5\xdc\xb3\x9e\x7f\xe6\x61\xf7\x47\x62\x12\xe5\x18\xed\x44\xf9\x54\x66\x62\x23\x94\xd7\x1b\xb6\xd8\x98\x67\x69\xb8\x21\x52\x3c\xc8\xa5\xca\xf1\x24\x94\xe3\x60\x11\x83\x96\xd2\x63\x98\x02\x58\xa7\x0d\xe0\xde\xb2\x5e\x65\x72\x9e\xaa\x28\x4f\xb3\xdb\x73\xcb\xed\xf7\x87\xe2\xc8\xf2\x1a\x6e\x7b\x30\xf4\x87\x2f\x07\x34\xec\x32\x50\x53\xac\xd4\x34\x94\xea\x3d\xaf\x2d\x46\xd3\x20\x53\x32\xb7\xe8\xc6\x87\xa8\x5c\xcf\xa1\x89\xdf\x10\xad\x34\x1b\x49\xc3\x76\x22\x6f\xc4\x8a\xba\xc8\x53\x71\x29\xc5\x3c\x8b\xae\x83\x5c\x5a\xad\xbe\xdb\x70\xfc\x81\xdb\x7e\x5e\x1f\xd2\x2a\xe3\x20\x56\xc4\xfe\x49\x9c\x5e\x06\xb1\x98\x05\xaf\xa3\xd9\x62\x26\x46\x99\x0c\xf2\x08\x92\x8c\xa3\x19\x44\x92\x8e\xcb\x14\xe7\xe0\x7c\xa1\x64\x66\x8b\xca\xb6\x98\xc9\x20\x51\x22\x49\xf5\x48\xab\x5b\xff\xd0\x6f\xb8\x4e\x7d\xd8\xee\xf7\xfc\x4e\xbb\xdb\xc6\xfe\x30\x0c\x2b\x0c\x82\x7c\x34\x15\x24\x1f\xf1\xc9\x42\x2e\xa4\x88\x65\x32\xc9\xa7\x36\xd6\xbc\x62\xb9\x07\x4a\xc4\x41\x06\x1d\xe0\x02\x6b\xa9\xe8\x12\x8a\x1b\x9c\x75\x3a\xbe\xeb\x7c\xe7\xcc\xf1\x86\x3e\xfe\x9e\x39\x7e\xc7\xe9\x9d\x0c\x4f\x41\x76\x7b\x0b\xff\x07\x51\xca\x90\xf6\x75\x8e\x35\x3a\x91\xe2\xcd\x8e\xa3\x18\xd2\x78\x9d\xcb\x44\x81\x09\xb5\xb4\x8e\x45\x1c\x8a\x69\x70\x8d\xb5\xa3\x44\x8a\x9b\x2c\x98\x2b\x11\x25\x78\x2d\x45\x23\x0d\x65\x37\xca\x32\x28\x51\xd3\x03\x39\x4f\xce\x83\x0c\x52\x2b\x93\xba\x81\xe6\x45\x20\x46\xe9\x6c\x16\x54\xc5\x30\x5d\x91\xe2\x55\x31\xa0\x96\xae\xc6\xdb\xe2\xe3\x05\xb6\x34\x5f\xe4\xc5\x1c\xab\xd3\xee\x39\xfe\x0b\xb7\x3e\xf0\x9d\x0f\x87\x0e\x14\xd9\xef\x79\x60\xa6\x9a\xbf\xce\xed\xea\x2c\xc4\x7f\x41\x76\x15\xa6\x37\x09\xdd\xe9\x9f\xab\xd0\xc6\x6e\x9e\x07\x71\x14\x6a\xd6\x66\xd8\xac\xe1\x8a\xd9\x09\xa0\x5f\x79\x1d\x41\xf1\xf5\x41\x1b\xf2\x53\xe9\x28\xc2\xbe\x43\xbd\x5b\xb0\x37\xb3\x85\x5a\x40\xfc\x10\x6d\x30\x8f\x6a\xd7\xdb\xb5\x62\x95\x32\x9b\xd7\x41\xbc\x00\xdd\xcb\x5b\xbd\x55\x55\x15\x03\x43\x36\x0f\x2e\x49\x50\x24\x19\x5e\x5c\xdc\xa4\xc9\x23\xed\x70\xe4\x2f\x24\xc0\x75\x99\x8b\x30\x95\x8a\x86\xcc\x48\xed\xd6\xc0\x75\x9e\xb7\x9d\x17\xfe\xb0\x7e\xec\x63\x8b\xc4\xf0\x72\x03\xd6\xab\xc5\x3c\x4e\x83\x90\x14\xf8\x62\x2a\xd9\xb1\x4a\xd6\xc6\x74\xf5\x08\x6c\x3e\xc3\x1a\x49\x00\xcb\x08\xab\x85\x6b\x28\x32\xf1\x8b\x3c\x5b\xc8\x0b\xcb\xe9\xd5\x8f\x3b\x8e\x7f\x36\xe8\xf4\xeb\x4d\x5a\x85\x1e\x6b\xe3\x9b\x8a\x31\x74\x6b\x08\xdd\x99\x1c\x06\x79\x50\xcb\x67\xf3\x9a\x79\x7d\x21\x36\x71\x27\x26\x12\xef\x43\x19\x4b\x12\x25\x78\x9a\x20\x74\x60\x6b\x2a\x0f\xb2\xfc\xb1\x35\x74\xba\x03\x7f\x50\x67\x53\xbc\x4b\x00\x4b\xf6\x61\x16\x58\x70\x96\x62\xcb\x08\x22\xe9\x0d\x68\xe4\xb7\x73\xa9\x6c\x21\xab\x93\xaa\x88\x66\x08\x4f\xb5\x8f\xe7\x72\xf2\x1b\xfa\x72\x9e\xe0\x69\x2f\xcd\xa7\x51\x32\x31\x6e\x15\x24\x86\x7f\x9a\x68\xd5\x3b\x9d\xfe\x0b\xa7\xc9\x01\xc2\x63\xb7\xef\x06\xaf\x85\x8a\x3e\x95\x64\xf3\x32\x80\x7e\x79\x30\x14\xd5\x3d\x5e\xe7\x70\x77\xa7\x7b\x6c\x51\xd0\xf4\xc9\x41\xbd\xf6\x47\xe4\xfb\xbb\x3b\x86\x44\xb2\x98\x5d\x42\xe8\xc6\x71\x94\x76\x70\x66\x64\x9d\xca\xf6\x16\xfb\x37\xd1\xf1\xd8\xff\x48\x77\x11\xe9\xad\xb7\xa4\xb0\xd4\x5c\x54\x58\x28\xe9\x8c\x0c\x05\xfc\x63\x67\x69\x42\x56\x02\xe2\x78\x4a\x01\xda\x72\x3e\x84\xb2\x5c\xc4\xa4\xfa\x09\xe2\xbc\xdf\x3b\xeb\x82\xf4\xce\xd6\x1a\xd1\x48\xa9\xc5\x97\x93\x63\x32\x6d\xcf\x3b\xbb\x43\x64\x7b\x9d\xc8\x32\xb6\xc1\xb6\x23\x30\xb4\x4e\x24\x18\xe5\xd1\x75\x94\x43\xde\x52\x86\x56\xcb\x81\x9c\x39\x96\xf5\xbb\x88\x61\x86\xe0\x9e\xf6\xc2\x05\xcb\xfb\x82\xdc\x4a\x56\x46\x29\x58\xb9\x80\xbe\xf2\x00\x5e\x32\xb1\x29\x32\x86\xe4\x42\xf5\x24\xcc\x52\x38\xec\xb7\x30\xaf\x4a\x3b\xa9\x27\x58\xeb\x9a\x9d\x98\x27\x21\x72\x20\xf0\x6d\x24\x58\x5d\xe7\x8e\x30\x52\x64\xd9\x1b\xf0\xda\x38\xd6\x8e\x4d\x8e\x55\xe4\x12\x95\xdf\xc6\x64\xcb\x5d\x12\x5d\x94\x8c\xd3\x43\x31\xcd\xf3\xb9\x3a\xac\xd5\x90\x52\x64\x9c\x42\x6d\xaa\x3a\x49\xd3\x49\x2c\xab\x60\xb2\x76\x23\x2f\x61\x8f\x30\x4d\xa9\x6a\x3b\x5b\xdb\x4f\x6a\xdb\xdb\x35\x6f\x31\x9f\xa7\x59\x5e\x81\x2f\x54\x4a\x0c\x54\xa2\xa4\xd2\x98\x66\x29\xee\x77\xdf\xe7\x97\x66\xfb\xd6\xf0\xd4\xe9\x3a\x10\x03\x74\xe4\x77\x9d\x61\x1d\x2e\x7c\x02\x51\x5c\xbc\x3b\x1e\xef\xed\x3e\xd9\xbd\xb8\x63\x85\xda\x80\x74\xce\x01\x3f\xf3\x38\xb8\x85\x38\x36\xc3\xc2\x8a\x90\x10\x0f\xba\xd1\xf1\x63\x36\xa4\x66\xdb\x1b\x74\xea\x2f\xd9\xa0\x0a\xa3\x3c\xd8\x3d\x38\xd8\xdf\x3a\x60\xcb\xaa\x06\xe1\x2c\x4a\xd6\xed\x8b\x12\xcf\xc3\x96\x40\x89\x7a\xdd\x10\xf6\xb6\xde\x36\xd1\x07\x49\xb8\xce\xa0\xff\x20\x89\x24\xcd\x01\x1b\x1e\x26\xd2\xeb\x0f\xdb\x8d\xbb\x76\xbd\xb7\x46\x26\xcd\x26\x41\x12\x7d\xaa\x53\xed\x43\xb4\xfa\xee\xc9\x5b\xfb\x61\x09\x91\x38\xee\x71\xc0\xaf\xc9\xdd\xf6\x1e\xa8\x15\x01\x99\xc8\x39\x1c\x63\x61\x83\x59\xa8\x13\xdc\x25\x00\xc1\xd5\x2a\xbc\x17\x81\x16\x10\xa4\xe9\x73\x46\x3b\x46\xd2\x7f\x56\x02\x14\x45\x2a\x1e\x21\xff\xa5\x33\x71\xe6\x76\x2a\xde\x88\x0c\xae\xb4\xb7\x22\x2c\x52\xe6\x8f\x92\x2b\xe4\xce\xa9\x4c\xc0\x40\x12\xca\x8c\x82\x60\x77\x95\xa3\x28\x76\xcb\xd7\xc1\x6c\x8e\x5d\x01\x82\xd9\x88\x98\x09\x80\x90\x46\x85\x3e\xa8\xfb\x5e\x83\x2c\x55\xc7\xc5\xaf\x82\x03\x60\xa0\x7a\x25\x19\xd6\x28\xaf\xe9\x7d\x74\xef\x49\x8b\x0f\x65\x7f\x4d\xe2\xbe\xd4\x4f\xd4\x96\xa9\xfc\x6d\x18\xd0\x6d\x6a\xb3\x5f\x07\x01\x5f\x96\xff\xa1\x1e\x28\xfa\x9a\x74\x3d\x70\xfb\xc3\x3e\xfc\x11\xc3\xc9\xfd\xad\x66\xbf\x5b\x6f\xf7\x70\xc7\x60\x75\x9a\xaa\x9c\xf1\x24\xc9\x04\x0f\xdf\xdb\x2c\xc6\x3f\xa6\x40\xf1\xde\xa6\x1e\x8e\x9b\xf7\x36\x4f\x87\x43\x24\xb0\xbe\x3b\x7c\xac\x6a\x16\xdf\xd4\x9b\x4d\xc2\xb8\x5b\x55\xfe\x7f\x6b\x39\x80\x92\x05\x61\x2d\x24\x52\x99\xcd\x10\x8d\x89\x3f\x4e\xa7\x49\x04\xdf\x4f\x47\x57\xd0\xc5\x59\xaf\x8d\xd4\xd2\x6f\x3c\x73\x86\xfe\xc0\x71\xbb\x88\xc8\x60\x0b\x53\xf7\xf7\xf7\x49\x27\xb4\x3d\xb1\xd9\xec\x7e\xf4\x98\xac\x81\xa7\x13\x16\x07\x94\xc8\xae\xc8\xa7\x37\x0b\x84\xe2\x79\xa7\x42\xc7\xad\xc7\x08\xcb\x70\x33\x45\xc6\x80\x68\x26\x94\x86\xeb\x55\x90\x6b\x27\x48\xad\x90\xe9\x28\x50\x90\x3c\x01\xf6\x30\x25\xb7\x04\xfc\xa5\x44\x9b\x12\x56\x26\x40\x5f\x8e\xa0\x8c\x6f\x68\x72\x3d\xce\xa1\x34\x02\xb6\x49\x7c\x6b\x00\x7f\xc6\xeb\x6a\x29\x83\x10\x30\x4e\xa4\x98\x20\x51\x50\x54\x63\x60\x6b\x24\x11\x7e\x59\xb5\x3a\xfd\x46\x1d\xd0\xf4\x01\x51\x2f\x45\xfa\xb6\xb4\x81\xeb\x75\xb0\xe7\x45\xc7\x00\xdb\x0b\xf8\x03\x9b\x3f\x2d\x19\x5c\x07\x51\x4c\xaf\x2d\x84\x48\x76\x34\x1a\xb6\x72\xae\x02\x26\xc1\xfb\xc5\xe5\x22\x8a\x73\xb8\x77\x69\xf7\x29\x31\x90\x57\x2d\x6f\x58\x77\x87\x34\xd5\x47\x48\x7c\xce\xe5\x4b\x41\xa1\x99\xce\x02\x4c\xd2\xb5\x13\x47\x6b\x24\xe5\x54\xe9\x48\x31\x8a\x29\x56\x80\x2b\x8b\xe6\x2e\x0d\x6c\x65\x3c\x64\x08\xc8\x22\x05\x70\xf8\x6f\x08\x18\x0b\xda\xd9\xb9\x33\xed\x9e\x9d\xc7\x70\x5c\xb8\x0f\xf4\xc2\x33\x3b\x6d\x0f\xde\x51\x10\x78\x6f\xb3\xa0\xc6\x3b\x70\x53\x48\x6a\x4e\xc0\x0e\x9e\x4e\x34\xc2\x28\x93\x23\xc2\x8c\x6b\xf5\xd7\xa3\xdf\xac\x55\x95\x9a\x3e\xb2\xb1\x5e\xce\x86\xa2\x33\x6b\xca\xd2\x7b\x54\x9b\x22\xe9\xd5\x10\x52\xf4\xa8\x2a\xaf\xcb\x5a\xd5\xd0\x8e\x55\x65\xe8\xb2\x59\x51\x65\x84\xe9\x72\x86\x3c\x1a\x18\x7c\x6a\x22\x17\x17\x37\xf3\xc5\x65\x1c\x8d\xae\xc4\x95\xbc\xc5\x0a\x64\xb9\xa0\x5b\xc1\xdd\x44\x26\x04\xe3\x4b\x5b\x53\xb7\xe0\x76\x56\xa2\xb5\xe4\x40\x6f\xe3\x99\xf3\xd2\x1f\x52\xe1\xb3\xdc\x0a\xe3\x58\xec\xa2\x44\x72\x8d\xd7\xd5\xf3\x47\x00\x8f\x88\xdd\x92\xe2\x9d\x04\x9c\x18\x47\xb8\x4d\x21\x81\x9b\x69\x04\x37\x23\xfd\x10\x37\x08\xc1\xcb\xb5\x4e\x48\xd4\x1a\xcf\xae\xe8\xb0\xab\x85\xd1\x88\x98\xbe\x31\x66\xc7\xde\x25\xc1\x23\xb2\x33\x43\x2a\xe2\x95\x11\x00\xc7\xc7\x51\x9a\x01\x24\xcf\x53\x4c\x03\xf7\x0c\x5d\xbb\xed\x5e\xbb\x7b\xd6\x65\x8e\x28\xd1\xa3\x78\x75\x1a\xe5\x74\x51\xb8\x43\xa3\xd9\xa3\x32\x96\xa0\x52\x51\x56\x53\xbd\x61\xf5\x5b\x2d\x4e\x33\xa6\x86\xd6\xd3\x0a\xe7\x70\xfb\x67\x43\xe4\xfc\x4e\xff\xa4\x5c\xd1\xca\x44\x72\xf8\x86\x8c\x01\x92\xf0\xe4\x57\x44\xb5\xc6\x10\x7e\x24\x61\x84\x95\x51\x70\x44\xd5\x81\xa8\x84\x8b\x8c\x33\xf0\xd1\xc1\xd3\xfd\xad\xe9\xd6\x6c\x4b\x89\x0a\xc5\xd1\xa3\xd9\x2d\xfd\x54\x4d\xde\x21\x4c\x65\x7d\x83\x90\x3d\xe2\x3d\xa0\x12\x42\x79\x75\x3e\x7e\x5d\x24\x19\x82\x55\xb0\x7e\x7e\x43\x21\xe3\x05\x04\x4e\xed\x08\x5a\x2c\x1a\x6b\x01\x22\x15\xc2\xcd\x37\xc3\x14\x54\xc8\xcf\x11\x03\x51\x63\x90\x3c\xf5\x7c\x9e\x68\x4a\x75\x12\xea\x63\xbd\x6d\x20\xbb\x44\xa9\x58\xcc\xaf\x46\x6a\x7b\x47\x54\xc8\xc3\x40\x95\x57\xaf\x90\x4e\xf5\x1d\x4c\xa9\x92\xa4\x98\xa6\xbe\xda\x2c\x8c\x2c\x26\xd1\x0b\x45\x17\xa8\x2b\xad\x86\x83\xa8\x41\xc9\x09\xd2\xd4\xe9\xbb\xc6\x40\xb3\x56\x2c\x63\x91\x1a\xef\x1b\x60\x28\x62\xf9\xb3\x39\x15\x11\x31\xe1\x52\x72\x4f\x32\xf1\x98\x98\x22\xa3\x44\xfd\x04\xf4\xa4\xe5\x46\xfe\xbb\xee\x14\x2c\x02\x32\x73\x58\x1b\x84\xc5\x29\x02\x8f\xe5\x6b\x39\x5a\x40\xc0\x14\xd4\x80\xab\xee\xba\xa8\x99\x3f\x2f\xea\x3c\x6a\x0c\x51\x51\xc6\x9d\x9f\x66\x1d\xb8\xb5\x54\xa9\xe9\xc6\x51\x4c\x3a\xe1\x1e\x07\xef\xf2\xe4\xa3\xf6\x00\x45\x32\xc3\xe3\x02\xde\xf0\xb3\x12\xa6\x09\xb4\x49\x73\x63\x69\xcc\x51\x36\xa9\xc4\xe9\x64\x02\xbd\x33\x2e\xb5\xe1\x50\x09\xc5\xc2\x0d\x8a\x2a\x1a\xd5\x9b\x62\x67\xc3\xea\xd4\xb9\x93\x45\xc8\x8b\x04\x47\x23\x2c\xbd\x75\x02\x58\x4b\x2c\x14\x4f\x50\x3b\xe5\xd3\x99\x62\x59\x41\x1a\x51\xb6\xe6\x67\xba\x6d\x22\x36\x29\x7a\x55\xb6\xc9\x76\x4c\xdd\x00\x7b\x24\x5f\x7b\x0c\xa8\xa0\xa6\x55\x33\xc5\xc7\x14\x9f\x5c\x53\x9d\x5b\x4e\x73\x67\x6f\x6f\xfb\x7d\x86\xa1\xfb\x96\xd3\x68\x7a\x75\x21\xcc\x9d\xcb\xd7\x7c\xb7\xf5\xe4\xc0\x6a\x2e\x6f\xb7\xb7\x76\x9e\x00\x7d\x90\xd8\x2e\x91\x6a\xcf\x4b\xcd\xaf\xd9\xad\xfa\x24\xe6\xf6\x17\xbc\x64\x02\x97\xd7\x0c\xe3\x21\xd0\xd4\x2e\x5e\x44\xf9\x23\xa5\x53\xeb\x68\x9a\x52\x9b\xad\x79\x5c\x74\xb7\x78\xae\x75\xda\xf7\x28\xb0\x6f\xef\x3c\x65\xc4\xb1\x7d\xb8\xbb\xbb\xb5\x6f\x99\x46\x1d\xb9\xaa\x65\xba\x6e\x19\x62\xbd\x35\xa8\x7b\xde\x8b\x66\xd1\xef\x5a\x5b\x16\x69\x1c\x65\x75\xd1\x94\x33\x75\x14\x76\x96\xc9\x4f\x16\x88\xa9\x7a\x63\x48\x30\xd1\xf8\xb6\x32\x5e\xc4\xf1\x06\x62\x5e\x67\xd9\x90\xd3\xe3\x0b\xb2\xc5\xfe\x59\xfe\x1b\x79\x14\x5e\x6e\x70\x55\x27\x82\x4b\x95\xc6\xb0\xc1\xa5\x79\x26\x9c\x4e\xb8\x1d\x40\xe0\xc0\xa0\x13\xab\xdc\x13\x20\x26\xaa\xe1\x25\x24\x68\x6a\x19\x02\x72\xa3\x05\x34\x7c\x7b\x6e\xb5\x7b\x30\xe6\x4e\x07\x81\x6b\x2d\x16\xbe\xf3\x8e\xee\x82\xea\x26\xe9\xb0\x2f\x9e\x39\xce\x40\xbc\xec\x9f\xb9\x82\xc5\x41\xe6\x2c\xbc\x7a\xcb\x79\xe7\x1d\xcb\x73\x1a\x2e\xf0\x16\x1c\x12\x04\xde\x79\xf7\x83\x56\xd3\x79\xe1\xe2\x7f\xbf\xfa\x6b\x9b\x64\xe5\x8b\x3c\x25\x03\x8d\x08\x55\xcf\x24\x67\xdd\x30\x40\x7c\x40\xa8\x6c\xf7\x7c\x17\x80\xb9\x7b\x8c\xc8\xd9\xac\xbf\x24\xf8\xf9\xd4\x6a\xf4\xfb\xcf\xda\x0e\xf7\x3a\x4b\x5a\xf0\x83\x1b\xa9\xc8\x5c\xcd\xeb\xe5\xbc\xf2\x98\x28\x41\x6a\x0c\x23\x2d\x48\x97\x5a\x91\x8a\x62\x59\xfa\xfa\x56\x04\x0b\x28\x26\xc9\x0b\x7f\x9b\xca\x80\x30\x33\x63\x0f\x53\xd1\xf1\x0d\x0a\x13\x80\x14\x8f\xda\x93\xfd\x0f\x5f\xfa\xf5\x33\xd4\x9e\x3d\xf8\xba\x6e\x26\x1a\x4b\xf8\xb0\xf2\xc2\x39\xa6\x57\x15\x7a\x60\x70\x31\xa4\x7e\x6e\xd5\x1b\xc3\xf6\x73\x2a\x55\x9b\x0e\x80\x03\xae\x90\x74\x90\x17\xb8\x53\x71\xb0\x05\xe2\x1e\x01\x53\xb6\xa1\x2f\x1d\x84\xc0\xc5\xbb\x29\x30\x64\x9a\x8c\xa3\x6c\x26\x64\x05\x68\x29\x66\x97\xcf\xe4\x04\x18\x45\x27\x0c\xd0\x3c\x21\x84\xe2\xfa\x0e\x70\x51\xc7\xe7\xe6\xb4\xdb\x5d\x83\x59\x52\x83\x48\x76\x6f\x33\x19\x0b\x90\x69\xb1\x41\x14\x78\x02\x38\x37\x5d\x24\x1a\x90\xae\xf2\x1a\x93\x77\x99\xff\x12\x51\xde\xe2\x8c\x0a\x0a\x15\x4d\x38\x53\x62\xab\xdc\xa6\x0b\x92\x5b\x6e\x1f\x55\x2d\x6a\x99\xb6\x5d\xaa\xaa\x4f\x7a\xd0\x34\x35\xdf\x4a\x14\xba\xc4\x0d\xd5\xb0\x63\xa3\x93\x22\xe0\x51\xcd\xda\x7a\xe9\x13\x37\xe5\xe1\x94\xb5\x42\x99\x63\xd6\xaa\xe7\x00\xc8\x34\x5d\x5c\x72\xa3\x01\xfa\x8f\x72\xc5\xb6\x5e\xd3\xad\x9a\xda\xf6\xfe\x5e\x41\xf3\x21\xad\x2e\x17\xf9\xb2\xb1\xfd\x2f\x13\x82\xa9\x50\x47\xc1\x3c\x07\xd2\x17\xdc\x57\xd1\xe6\xf5\x96\x96\x0c\xed\x46\x7d\x30\x84\x63\x15\x4d\x41\xeb\x15\x2a\x8a\x69\x9a\x5e\x51\x48\x3b\xc5\xaf\xc8\x03\x75\xb5\xd6\x9b\xb6\xee\x69\x38\x73\xc4\x8e\x23\x02\xab\x79\x34\x93\x94\x47\xa1\x00\xf8\x34\xe0\x8e\xb2\x9a\x0e\x19\x95\xeb\x0f\xdb\x5d\x07\xa0\xc4\xf4\x8c\xea\xac\xfc\x28\x61\xcf\x97\x25\x44\x40\xbb\xf3\x9e\xb5\x07\xfe\xb0\xe3\xf9\x98\x47\x27\x23\x2b\x16\x57\x35\xfd\x34\x52\x8c\x3f\xa9\xeb\x93\xcd\x34\x9b\xd4\x8e\xa5\x96\x1f\x97\xf4\x77\xfb\x5e\x54\xcd\x23\xbd\xa2\x5c\xd4\xcc\x37\x4b\x64\x8f\x17\xe3\x31\xe7\x66\xce\x23\x54\xa2\xa3\x52\x4a\x64\x6c\x23\xbd\xc8\xb9\xe9\xc4\x47\x9c\x8b\xcd\x51\x48\xc8\xcd\xde\xab\x04\x4c\xdc\x50\x05\xcd\x2f\x01\x1b\x9d\x5e\xd3\x3f\x3e\x6b\xb5\x08\x7b\x39\x3d\x2d\x20\xda\x37\x39\xf6\xaa\xf9\x83\x8d\xb2\xf7\xe8\x93\x18\xef\xec\xf8\xdb\x4e\x43\xc3\xf9\xe2\x54\x86\xe1\x3c\xdb\xa4\x2e\x03\x08\xbd\xcd\xd8\xd8\xd4\x2c\x9f\x57\x27\x74\x4d\x86\x76\xb8\x77\xf0\x14\xef\xbe\xf3\x1d\xf3\xe2\x93\x4f\xf8\xe9\x93\x7d\xee\xaa\xa4\xb9\xb4\x8b\x66\x34\x83\x29\x94\xe6\xa6\x62\xdf\xc0\x10\x04\x71\xaf\x3b\x1c\x78\xba\xbb\x86\x1c\x4d\x8d\xba\x2a\x9c\x89\x32\x3a\x57\x4a\x50\x02\x75\x79\x79\x2e\x56\x22\x01\x00\x8e\xa3\x5a\xa7\x1a\x3f\xe4\xae\xa8\xdb\x6a\x88\xfd\x27\x5b\xef\x57\x45\x5b\x2f\x64\xea\x16\x83\x1b\xd4\x8a\x10\x64\xc4\x0b\x05\xf1\x0d\x02\xee\x72\x3d\x93\xf2\x4a\x88\xf7\xd4\xe9\xf4\x09\xab\x69\x63\xd5\x69\x85\x60\x27\x87\x47\xea\x92\x84\x11\xe9\x0b\xf1\xb3\xba\x0c\x0c\x3c\x87\x88\x34\x74\x77\x65\x39\x9e\x6c\x7f\x9d\xe0\x5a\x7d\xc0\xe0\x54\x57\x1d\xd8\x09\xc6\xf9\xb4\x1d\x1d\xc5\x39\x5a\x71\xac\xd2\x79\x92\xd9\x2b\x83\xd7\xb4\xcc\x71\x55\xf4\xa9\x74\xa6\xb4\x88\x88\xa3\x78\x61\x25\xe3\x71\x85\x42\x12\x84\x55\x9a\xa8\xb4\x89\x17\xe6\xad\x03\x18\x4a\xc4\x08\x2c\x95\xc7\x51\xae\xf7\x09\x7b\xb6\x5b\x14\x1d\x56\x30\xff\x1e\x3c\xaa\xad\xfb\x21\x40\x6a\x46\xac\x10\x29\xdb\x97\xc6\xed\x61\x08\xd4\x00\xb0\x46\xda\xdc\xdb\xdd\xd9\xa9\x8a\x21\xf1\x60\xb0\x1b\xb7\x6a\x70\x29\xd9\x6a\x97\x83\xc1\x20\xb1\x7f\xb1\x41\xe6\xbd\x21\xbe\xc9\xaf\x3f\x28\xd5\x06\xdf\xba\x10\xda\x3b\xad\x96\xdb\xef\x9a\xfe\x3c\x6d\x62\x95\xe1\x38\xee\xcf\x03\xa5\x6e\xd2\x2c\x34\xd8\xa6\x0c\x6b\x48\x30\xb9\x7c\x9d\x03\x4e\xcf\x62\x3e\xac\xa1\x46\x45\x02\x45\x5e\x4b\x43\x9c\x1d\x36\x4d\x50\x25\x2f\x51\xea\xe9\xb0\xdb\xf1\xeb\x9d\x21\xe5\x6c\x4a\x81\x4b\xc1\x59\xaf\x46\x88\x10\xeb\x98\x4d\xce\x10\x48\x34\x34\x82\x8b\x6e\x30\x5f\xf4\x94\x47\xde\x39\xb9\x34\x83\xad\x7a\x13\xa1\x93\xb3\xaf\x7e\x52\x20\x25\xf3\xde\xc0\xaf\x93\x06\x5c\x1d\xdb\x45\x28\x2e\x85\xc4\x35\x8a\xfb\x5b\xc0\x3c\xa0\xf4\xbc\x4e\xe9\x65\x7f\xab\x20\xa4\xf7\xa2\x01\x57\x69\x2f\x20\x90\xa0\x1e\x66\xcc\x40\xbd\x1e\xa3\x0b\xcc\xe2\x09\x87\xc8\xd3\x39\x75\x8f\x8e\xf2\xd1\xdc\xa6\x97\x47\x87\xfb\xbb\x4f\xdf\xb7\x0b\x09\x1f\xcd\x82\x51\x90\xc1\x07\xc2\xcb\xa3\x2d\x7b\x9e\xa6\x31\x43\xe1\x23\x84\x29\x3b\x0a\x63\xe9\x9b\x08\x7e\xa4\x53\x7f\xb1\xf2\xa1\xb8\x58\x21\xd2\xed\xed\x9d\xed\xed\x8b\xc2\x6d\x09\x6e\x70\xf7\xeb\x7e\x99\x52\x49\x63\x44\x5a\x88\xf7\x3e\x79\x22\xbb\x3d\x6f\x37\xd7\x05\x3a\xc8\xd2\xeb\x88\x60\x11\x63\x8e\x09\x1c\x98\xf8\x56\x7a\x5b\x18\x72\xc8\xae\xa9\x4f\xfb\x92\xdb\x62\xd4\xad\xa4\xd3\x68\x5a\x16\x21\x51\x9a\xbe\x5c\x51\x57\x99\x83\x26\x7d\xba\x65\xde\xaa\x8b\xff\x37\xe9\x11\xa2\x3f\x04\x16\xac\xe0\xb7\x12\x66\x94\x22\x6b\xfc\x50\x84\x2a\x29\x36\x8c\xa4\x8c\x78\x5b\xec\x8c\x60\xfd\x61\xb1\xde\x07\xc5\x1e\xfd\x9c\x02\xe3\xc5\x52\x4c\xbe\x39\xf4\x37\x90\xba\xe0\x84\x5b\xb4\x9a\xe5\x11\xd2\x77\x24\x35\x88\x34\x18\xd5\x40\xd3\xc8\xa7\x53\x16\x5f\x23\x14\xea\x65\xe8\x8c\x46\x71\xab\x90\x17\x6c\x95\x31\x8d\x31\xe3\x72\xb8\xd4\xe1\x47\x13\x04\xd2\x3e\x73\x9d\xb7\x11\x88\x42\x01\xaf\xd7\x5f\x9b\xcb\x18\xc3\x38\x28\x01\x4f\x4d\x65\x75\x22\x59\x6c\x1d\x5e\x43\x72\x5c\xba\xce\x1a\x91\x03\xe4\x9a\x2d\xeb\xa4\xe1\x17\x5e\xc3\xc0\x82\x4e\x49\xf8\xc5\x8a\x4a\x1c\x8d\x25\xd3\xb9\x67\xba\xe7\x70\x23\x16\x70\xb7\xe5\xac\xcf\xb7\x5e\xcd\xa3\x11\x75\x1e\x01\x9e\x9f\xa3\xa8\x70\xcd\xc1\xe9\xda\xa9\x66\x70\x8d\xbf\x99\xe2\x4f\x24\x50\xa8\x2a\x69\x8e\x60\x28\x5a\xa2\xac\x4b\xf1\x60\x23\x5c\xa4\x6a\xba\x48\x37\x30\x08\xb6\x1f\x14\x4d\x7f\x3d\x55\x28\x54\x80\x23\xec\x8c\x34\xa1\xf1\x23\xe0\xe3\x28\xa9\x4e\x32\x3d\x80\x31\xa4\xbe\xac\x59\x27\xae\xd9\x8a\x87\x7a\xa7\xc1\xd5\x85\x19\x06\xe2\x1c\xa6\xb9\x8b\xbb\xcc\xe2\x63\xfa\xf2\x21\x34\x2d\x48\xee\xe7\xd0\x51\xc7\x78\xcc\xa7\x16\x33\xee\xd4\x16\x59\xb3\x20\x5d\xd2\x61\x4b\x86\xdc\x24\x0a\x8b\xbd\xc6\xd0\xe4\x62\x4e\x2c\x2a\xd1\xec\x79\xa6\xbc\x1e\xa5\x94\xe4\xcd\x90\xd5\xf1\x3a\x08\x30\xbc\xe0\x54\x80\x48\xa7\xa4\x2c\xd8\xbb\xb9\xb9\xa9\xc6\xd1\x65\xc1\x61\x9a\x4d\xbe\xc2\xf6\x79\x57\x77\xf7\x4f\x12\x3d\x31\x74\x48\xa9\xd8\xce\x65\x40\xe7\xdf\x85\x75\xb5\x1c\xf8\x08\xf2\x65\xd3\xbf\xc3\x1e\x6a\xce\x3c\x47\x40\x03\x7e\xc9\xcb\x87\xeb\xab\xa7\x5f\xf5\x40\xfd\x9e\x83\xf4\x12\x91\xfb\x0e\xd3\x4b\xaf\x2f\xd6\x0a\xe2\xd2\x8b\xff\xe1\x21\xf9\xdd\x73\xf0\xfb\x07\x7d\xc9\xe1\xf8\x3d\xc7\xe2\xa5\x13\xf1\x27\xff\xbb\x03\x71\x3a\x45\x23\x27\x24\x61\x7b\x73\x39\x02\xb0\x91\xba\xa1\x65\x72\x37\x09\x8e\xda\x0f\xb7\xd4\x89\x9d\x53\x3b\x4b\xf0\xf1\xec\x3a\x55\xc0\x12\x64\x9d\xdd\x82\x08\xd2\xa9\x81\x97\x18\x6e\x3e\xd1\x20\xb5\xd1\x47\x40\x0d\x5b\x9c\x25\xd1\xeb\x66\x40\xd8\xd7\x5d\x5c\xde\x9a\xab\x56\xe3\x60\x67\xa7\xf8\xfd\x48\x5f\xec\x6d\xd9\x05\xe9\xe5\x85\x7e\xb5\xbb\xbb\xfb\xfe\xf2\xa2\x17\x24\xa9\x2d\x9e\x45\x28\xab\xa8\xbb\xec\xe5\x00\x38\xe6\xa7\x0b\xa3\x8d\x96\xd7\xa3\x2c\xe5\x8c\xcd\xb7\x34\xcb\x64\xf3\x59\x71\x3e\x5d\x54\x2a\xc1\x25\x55\x49\x25\x31\x94\xfc\x64\x92\xc6\x01\xea\x55\xf8\x47\x6d\x7e\x35\xa9\x91\xf4\x6a\xef\xe2\xaa\x82\x7c\xa1\xf2\x80\xac\xa4\xd5\x77\xbb\x75\x9d\x7c\xe3\x74\xa2\xbf\x96\x5a\x75\xfe\x8a\x24\x4c\xe3\x53\xdd\xf4\x31\x59\x98\x1e\x25\xf4\x4b\xb5\x82\x39\x61\x37\x5d\xac\x3b\x79\xb9\x98\x5b\x40\x53\x3a\xa0\xe3\x2e\x7b\x71\x02\x38\xc3\xc8\x68\x5e\x7c\x78\x63\x6c\xb3\x98\x66\xb3\x91\x6c\x58\xa6\x9b\x64\x9e\xfe\x5f\x16\x5a\x77\x6b\x2c\x0e\xfd\x05\xe3\xc3\x2c\x18\x31\xbb\x4d\x79\xb9\x98\xd0\x45\x1b\xb2\xa7\xdf\x17\x41\xc6\xfc\x3b\xf4\x55\x13\x5d\x34\xb2\x88\x9a\x30\xf1\x1d\xf6\x35\x05\xab\x83\xda\x9b\x60\x19\xdf\x5a\x05\x34\x2b\x64\x63\x62\x11\xb5\x27\x48\x0d\x55\xf3\xfc\xbc\x98\xb6\x9c\xc0\xc2\xb8\x3b\x9a\x1e\xae\x86\x9a\x48\xa8\xe3\x8e\xa2\xf6\x50\x3a\xe3\x20\x8c\xa1\x22\x4b\x73\x5c\x6f\xaa\x1b\xb2\x40\x76\xc1\x94\x02\x03\x55\x69\x06\x13\x3d\x7e\x3b\xd1\x76\xfa\x27\xbe\xdb\x1f\xea\xaa\xc1\x84\x2a\x72\x64\x8e\xa2\x2b\x6f\xa6\x5a\x2f\xd6\x9f\x2a\xad\xd1\x60\x99\x6e\x69\x67\xa6\x63\x06\xaf\x90\x33\x4b\x7a\x19\x48\xd4\x34\x1a\xe7\x0f\xd1\xd9\x39\x30\x1f\xee\x6c\x8b\x6f\x7e\x13\x77\x36\xf5\x56\x4b\x21\xc6\xf7\x4e\xdb\x2d\x3e\x0b\x3b\xe0\xe4\x3d\xa1\x38\xc8\x5c\x87\xc8\x20\xb7\x6f\xf3\xd5\xac\xb7\x3b\x2f\xdf\xe2\xcc\x79\x3d\x8f\x32\x8e\x1d\xa8\x2c\xb1\x1d\x22\x40\x7b\xd9\xd4\xdf\x2a\x89\x60\x4c\x3d\xa6\x19\xb6\x4d\x23\xd6\xc5\xf5\x54\x7f\x79\x51\x34\xfc\x4a\x6a\x4e\xee\xd3\x71\x52\xd6\x9a\x2b\x0d\x22\xd7\x70\x9c\xcf\xe4\xf9\x93\x43\x23\x8f\x19\xd0\x08\xe2\xef\x3d\x18\xca\x75\x80\xe1\x7a\xa8\xfb\x7d\x00\x91\xae\x57\x3e\xa7\x19\xea\x73\xb5\x6c\x49\x9b\x2b\xe0\x12\xf4\x07\x91\x18\xcb\x3d\x44\xb5\x8c\xca\x8c\x5b\x00\xd4\x92\xc9\xd3\x01\xb5\xf6\xfd\x45\x38\xbf\x63\xf7\x34\xa4\x7c\x9c\x8e\x7b\x6e\x05\x95\x2a\x0d\x7d\x20\xbe\x94\x92\x8e\x24\x77\xa4\x44\x0f\xcb\x52\x7a\xa8\xfd\xb1\xbe\x81\x66\x14\x4c\x12\x2c\x17\x8d\x0a\xd1\x99\x0a\x9d\x4b\xec\x8d\x52\xaf\xe4\xe1\x91\x77\xba\x27\xcb\x16\xc3\xd7\x2d\x3f\xa1\x5f\x49\xb0\x7d\x75\x8e\x91\xae\xf2\xb3\x89\x7a\xaf\x36\xb6\xcb\x45\xef\x86\xbd\xb1\xb3\x76\x7f\x4e\x5a\x71\xa8\x09\xe6\x95\x04\xb7\x0c\xbc\x77\x85\xb7\x3a\x57\x58\x09\x70\xfd\x7c\x41\xac\xb5\xfa\xad\xa6\xdb\xe6\x93\x6c\x8a\xaf\x81\xd2\xdf\xe5\xbd\x46\x5a\xd1\xdb\x3b\xe4\x93\x82\x43\xfa\xf3\xc1\xf2\x7b\x08\x6e\x4c\xfe\xba\xf9\x76\xf6\x68\x91\x8f\x0f\x2c\xb2\x1b\xce\x28\x48\x62\xe5\x0f\x5e\xb2\x45\x92\x50\xa4\xa1\xc7\xdc\x0f\xe4\xdc\x1f\xa5\x74\x00\x8a\xb4\x5d\x2d\xb5\xd3\x8c\x2f\xba\x8b\xa4\x3c\x9a\x8d\x97\xcf\xac\xf8\x58\x00\xc1\x9b\xbe\xfc\xad\x0f\x7d\x6e\x0c\xad\xa0\x19\x9d\x90\x85\x9c\x5a\xf8\x9b\x53\xa5\x77\x52\xd5\x9f\x3d\xf8\xe6\xe1\xb9\x45\x1f\xb5\x34\xcf\x18\x80\x7d\xa0\x5d\x6d\x7b\x6b\x66\xb1\xaa\x96\x1f\x48\x4e\x65\x10\xd3\xa9\x2b\x9d\xc8\x1a\x32\xf4\x0d\x90\xaf\x9f\xfb\xfc\xfc\x3e\x4a\x3b\x4f\xa6\xd6\xaa\x4f\xb9\xbf\x45\x78\xac\x9e\x4d\x16\x1a\x18\x92\x73\x73\x22\x84\xc9\x3c\x42\xf1\x24\xc6\x6a\x74\xf5\xa8\x48\x7d\x95\xca\x22\xc9\x08\x54\xb1\xd4\x2a\x95\x3c\x98\x28\x4a\x9f\x94\xd9\x39\xff\xa7\xc9\x32\xc3\x47\x79\x45\x8d\x66\x0c\xf2\xc3\x74\xa4\xf8\x01\x11\xab\x6d\x57\x9f\x56\xf7\xac\xba\x7b\x62\x2c\xa5\xc1\x67\xca\xa5\x4f\x3f\xf9\xa0\x90\x8c\xbe\x10\x0f\xf3\xe2\x33\x77\xf4\x0e\x02\xba\x23\x5d\x56\xca\xfd\xac\x5a\xaf\xb0\xf0\xf9\xaa\xf1\xa6\xc4\x34\x9a\x4c\x63\xfc\xc7\x21\x1d\x1e\x4f\x55\x00\xb8\xcd\x50\x6f\x5f\x53\x0b\x8b\x3f\x20\x51\xcb\xf2\xa1\xd9\x6e\xb5\xfc\xd3\xf6\xc9\x69\x07\xff\x0d\xd7\xba\xe9\x65\xc4\x48\x29\x47\x2d\xc1\x2c\x51\x2e\xa7\x0b\x0a\x07\xd4\xd0\xe3\x7e\x3d\x87\xe2\x93\xf6\x50\x93\x2e\x27\x9e\xb7\xa8\x92\xf5\x06\xa3\x9c\x0a\x2f\x26\x19\x97\xcf\x0c\x1f\xa6\xc9\x1f\x8a\xd7\x1b\x43\xf6\x48\xb1\x77\x0f\x71\x0d\x72\xe9\x4b\xb1\xe4\x01\x5a\xab\xcf\x3e\xb7\x1e\xb6\x94\xc9\xa8\x64\x27\xc1\x84\xfc\x56\x51\x03\x0b\x37\xc8\xf4\x5f\xc7\x4c\x26\x23\x63\x24\x28\x81\x57\x76\xd2\x5f\x36\x4b\xef\xe9\xc0\x93\x96\xab\xe6\xf9\xb9\xd5\x6d\x9f\xb8\x3a\x75\xee\x53\x7a\x6f\xbb\x6e\xdf\xd5\x1f\x33\x59\x8d\x4e\xbf\xe7\x98\x6b\xfa\xca\xdc\x5c\xa2\x1e\xe7\xce\x94\xf5\x4a\x3b\xe1\x79\xe9\x74\xb9\xdc\xde\x9a\xa2\xa8\xa5\xb6\x6e\x7e\x23\xa5\xe9\xc4\x6b\x0f\x6c\x3a\xad\xfa\x59\x67\xe8\x97\x1a\x5d\x7c\x82\x1a\xcc\xf9\x4b\xd9\x75\xc9\x47\xb9\x9c\x29\x5d\x0c\xea\x4f\x26\x74\xfd\x17\xe8\xae\x3e\x89\x5f\xff\x13\x08\xcf\xf1\xdb\x43\xa7\xeb\x15\x5f\xfe\x45\xdb\x07\x94\x99\xeb\x3d\x92\x09\x80\x54\xe5\xcc\xb3\x3f\x9d\x56\x1a\x3d\xfa\x7b\xfa\x8c\xfe\x0e\x5f\xd8\xa1\xac\x34\x1d\x7b\x9c\x55\x5a\xae\x9d\xc4\x95\x5e\xc7\x8e\xaf\x2b\x9d\xe7\x76\xb6\xa8\xb8\x67\xf6\xc7\x41\xe5\xdb\x03\x5b\xaa\x8a\xe3\xd9\xf3\xbc\x72\xec\xda\xf3\xb8\x32\xe8\xd8\x97\x93\xca\xf1\x89\x0d\xe9\xb7\x87\xf6\x38\xaa\xb4\xda\x76\x9e\x55\x86\xae\x3d\x52\x95\xc6\x47\x7c\x38\x4b\x6b\x3a\x30\xe9\x48\x4d\xed\x9f\xff\xfd\x77\x7f\xf6\x2f\x7f\xf8\xb3\x1f\xff\xdd\x17\x7f\xfc\xdb\xf6\xcf\x7f\xf2\xbd\x5f\xfc\xcd\x1f\xe9\x9b\x5f\xfe\xf4\x77\x7e\xf1\xd7\x7f\xfa\xc5\x8f\xff\xe1\x97\x3f\xfd\xdd\xbb\x2f\xfe\xe3\x0f\x7e\xf8\xc5\x4f\xfe\x95\x5e\x34\xe5\x22\x57\xa3\xa9\xdd\xca\x82\xe4\xb3\xef\x07\x91\xb2\x7b\x54\x92\xa3\x28\x08\x95\xdd\x09\x72\x98\xe1\xbf\xff\xe5\xc2\x7e\xf3\x17\x9f\xff\xd6\xe7\xdf\xfb\xfc\x7b\x6f\xfe\xe9\xcd\x8f\xdf\xfc\xc4\xfe\xe2\x4f\xfe\xea\x8b\x3f\xfb\xdb\xff\xfc\xc1\x9f\xdb\x8e\x9a\x07\x9f\xfd\x28\x8d\x6d\xfa\xb0\x68\x31\x59\x7c\xf6\x03\x45\x1f\x82\x1d\x67\x81\x8a\xe8\x61\xac\xae\x22\xfb\xcd\x8f\x3e\xff\xbd\x37\xff\xfc\xe6\x1f\xdf\xfc\xf0\xf3\xef\x6a\x1a\x76\x3b\x0f\xe2\x88\x2a\x1d\x6f\x01\xec\x19\x07\x70\xa7\xc4\x1e\x7e\xf6\xd3\xec\xea\xb3\xef\x4b\xfb\xdf\x7e\x1f\xab\xe6\x51\x12\x58\xba\x24\x08\xd9\xc8\x29\x34\x93\x65\xcd\xa3\xd1\x15\xd2\x2c\x2b\x81\x12\x98\xa4\x12\xe6\xdc\x62\x2d\xb0\x36\x2c\x56\x05\x2e\x3f\x9d\x5a\xac\x0f\xbe\x84\x46\x2c\xfe\xbb\xbc\x63\xfd\x50\x61\x2c\x2d\x56\x12\xc5\x94\xcc\x62\x4d\xe1\x32\x89\x2d\x56\x17\x7d\xda\x77\x6d\xb1\xce\xe8\x24\x7c\x61\xb1\xe2\x70\xf9\x71\x60\xb1\xf6\x68\x4d\x65\xb1\x0a\x71\xc9\xbf\x16\xab\x92\xee\x62\x8b\xf5\x89\xcb\xcb\x89\xc5\x4a\xa5\x8a\x39\xb7\x58\xb3\xb4\x60\x64\xb1\x7a\x39\x78\x5a\xac\x63\x2a\x62\x58\xd7\x0c\x35\x8b\xcf\x19\x67\xc1\x7c\xce\xdf\xf3\xa4\xa5\xc0\x39\x8a\x03\xee\xc7\xb2\xb7\x57\x01\xe3\xe3\xa3\x28\x89\xac\x57\xcb\x11\x55\x33\x8d\x0e\xbe\x53\x4a\xeb\xc8\x44\xa7\xfd\x17\x7e\x0b\x45\x1c\x4a\x9a\x63\x57\x7f\x14\x51\x8a\xa6\x1e\xfd\x9b\x02\x02\x21\xba\x37\x77\xb7\x8c\xe4\x0f\x78\x28\xd4\x4c\xd2\xe2\x9f\x6e\x8c\x91\xed\xa1\x8f\x32\x5d\x82\x1f\xfa\xbc\x90\x33\xc2\x7f\x05\x00\x00\xff\xff\xec\xff\x04\xc5\x82\x34\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -301,7 +301,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 12337, mode: os.FileMode(420), modTime: time.Unix(1470994320, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 13442, mode: os.FileMode(420), modTime: time.Unix(1471215870, 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\xdc\x46\x92\x2f\xfc\x3f\x9e\x02\xd6\x84\x42\x52\x04\xd5\x0e\x8f\xf7\xbb\x84\xc3\x97\x8f\xa2\xac\xcb\xae\x28\x71\x45\xda\xf3\xcd\x71\x28\xda\x60\x37\xd8\x8d\x55\x37\xd0\x03\xa0\x49\x71\x26\xe6\x0d\xce\x03\x9c\xe7\x3b\x4f\x72\x32\x7f\x99\x59\x95\x05\xa0\x49\xc9\xb3\xfa\x43\x44\x57\x65\xdd\xb3\xb2\xf2\x56\x59\xc5\x6e\x37\x5f\x96\xdd\x22\xff\x21\x3f\xce\x77\x45\x55\x6f\xca\xae\xcb\xbb\x72\x73\xf5\x74\xdd\x74\x7d\xb9\xcc\x5f\x56\x3d\xfd\x6e\xaf\xab\x45\x99\x65\xeb\x66\x5b\x12\xe8\x2b\xfa\x93\x2d\x8b\x6e\x7d\xd9\x14\xed\x92\x12\x9e\xdb\x77\x56\x7e\xda\x6d\x9a\x96\x81\x7e\x96\xaf\x6c\x5d\x6e\x76\x5c\x86\xfe\x64\x5d\xb5\xaa\xe7\x55\x4d\x3f\xcf\xe9\x2b\x7f\x5d\x4b\x4a\xb3\xef\x2d\xe9\xdd\xbe\x97\xb4\xfd\xce\x92\x7e\xd9\x65\x6d\xb9\xaa\xa8\x37\x2d\x25\xbd\xd7\xcf\xec\xa6\xbc\xec\xaa\x9e\x5b\xfa\x8b\x7c\x65\xd7\x65\xdb\x55\x0d\xd7\xfe\xab\x7c\x65\xbb\x62\xc5\x00\x67\xf4\x27\xeb\xcb\xed\x6e\x53\xa0\xc0\x85\x7e\x66\x9b\xa2\x5e\xed\x05\xe6\x8d\x7e\x66\x8b\xb6\xa4\xac\x79\x5d\xde\x50\xea\x09\x7e\xcc\x66\xb3\x6c\x4f\x93\x30\xdf\xb5\xcd\x55\xb5\x29\xe7\x45\xbd\x9c\x6f\x65\x98\xbf\x50\x7a\xae\xe9\x39\xa5\xe7\x9c\x8e\x21\x94\x4b\x1a\xea\xbc\xe8\x74\x1c\x34\x97\x34\xf2\xa2\xcb\x50\x55\x5d\x6c\xad\x34\x7f\x66\xe5\xb6\xa8\x36\x3c\x6b\xfc\x97\xfa\xdd\x75\x37\x0d\xa6\xf6\x4c\x3f\x69\x0e\xe6\xfd\xed\xae\xc4\x14\x3c\xbd\xa0\xaf\x6c\x51\xec\xfa\xc5\xba\xe0\x6e\xca\x57\x46\x40\xbb\x86\xe6\xa2\x69\x6f\x01\x67\x3f\xb2\xa6\x5d\x15\x75\xf5\xf7\xa2\x97\xf9\x79\xe7\x7e\x66\xdb\xaa\x6d\x1b\x9e\xda\x53\x7c\x64\x34\xf2\x39\xd7\x43\x29\x6f\x69\x12\x5c\x2d\x9c\xb3\xad\x56\xad\xcc\x22\x67\x9e\xe2\x17\xd7\x22\x79\x5a\x93\x64\x85\xda\xae\x9a\xf6\xa3\xa6\xbe\xe0\xcf\x41\x95\xd4\x39\xcd\x4d\xfb\x55\xd4\xb4\x1e\x9a\x7b\x8a\x1f\x09\x40\x97\x15\xcb\x2d\xcd\xf0\xae\xa8\x4b\x9e\xba\x63\xfe\x45\xf3\x45\xbf\xb2\x62\xb1\x68\xf6\x75\x3f\xef\xca\xbe\xaf\xea\x15\xaf\xc1\xb1\x24\xe5\xe7\x9a\x94\xb9\xbc\x90\x76\xdb\xec\xc3\x2a\x53\xfa\x5f\xe9\x67\x7e\x26\x3f\x25\xcf\x15\x42\x66\x28\x49\x4d\xf6\xd5\x75\xd5\x57\xa5\x34\x66\x3f\xb2\xdd\x7e\xb3\xa1\xf9\xfc\xdb\xbe\xec\x7a\xce\x3a\xa3\xdf\x34\x03\xf2\x3b\xab\xba\x6e\x8f\x12\xaf\xf1\x91\xd1\xa2\xd6\x0b\x0c\xe7\x04\x1f\x59\xf6\x5b\x55\x77\x7d\xb1\xd9\x7c\xc8\xf4\x83\x81\xe5\x4b\xe6\xa9\xaf\x7a\x74\x56\x13\xf3\xf3\xbe\xdc\x75\x3c\xd1\xf9\x8b\xaa\xed\xfa\xa7\x7d\x45\xa8\xf6\x7e\x5f\x67\xcb\x66\xf1\x91\x90\x98\x37\x24\xb6\xd2\xeb\xab\x9c\xc6\xf4\x88\xd0\xb8\xdd\xd7\x35\x8d\x22\x7f\xd9\xd0\xc8\xa8\x99\x6a\x59\xe6\xcf\x01\x7d\x94\xef\x36\x65\xd1\x11\x48\x59\x2c\xf3\xef\x8b\xbc\x2f\xda\x55\xd9\xff\xf0\x60\x7e\x49\x9b\xe7\xe3\x83\x7c\xdd\x96\x57\x3f\x3c\x78\xd8\x3d\xf8\xf1\xe5\x9e\x8a\x6d\xaa\xba\xec\xbe\xff\xba\xf8\x31\x5f\x14\x94\x43\x63\xbd\xcd\x2f\xcb\x2b\xde\x2b\xd4\x56\x4e\x48\x5a\xaf\x78\x9f\xdc\xf6\x6b\x6e\x90\x16\x8c\x3e\xba\x9c\x37\xea\x57\x19\xcf\x12\x6d\xe4\xf9\xf2\xd2\x88\x12\x3a\x84\xe4\x96\x66\xe9\xf4\xf6\xfc\x3f\xdf\x1c\xe5\x67\x44\x99\x56\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9b\xd3\x68\x2f\xaa\xe7\xcf\x66\x19\x95\xb5\x09\x79\x5e\xf4\xc5\x25\xf7\x3d\x2c\x12\x67\xca\x1e\x0a\x79\xd8\x49\x4c\xeb\x40\xd7\xba\x1e\xbb\x53\x77\xe6\xe4\x3e\xa4\x3a\x74\xf3\x86\x3a\xde\xf2\x0e\xa6\xf4\x30\xb3\x67\x32\x67\x54\x55\xfe\xfa\xed\xdb\x77\xcf\x9f\xe5\x65\xbd\xa2\x99\xc9\x6f\xaa\x7e\x9d\xef\xfb\xab\xff\x77\xbe\x2a\xeb\xb2\x2d\x36\xf3\x45\xc5\x93\xd2\x12\x5e\xe5\x34\x4b\x32\xc4\x59\xd6\x75\x1b\x22\x30\x4b\x6e\xe5\xfc\xfc\x4d\x7e\x4a\x9f\xd4\x19\x2a\xcb\x1d\xe9\xd7\x59\xf7\xb7\x0d\x4f\x54\x68\xf0\x62\x5d\xe6\xc0\x59\x00\x35\x57\xc3\x79\xc9\x97\xda\xd7\x59\xfe\xfd\x65\xfb\xa3\xeb\x5f\x71\xd9\x35\x9b\x7d\xaf\x25\x6f\xd6\x65\x8d\x85\x22\x54\x6a\x7b\xa2\x56\x46\xfb\x67\x59\xd9\xb6\x73\xa2\x9b\xfd\x2d\x2f\x8f\xf6\xe5\x50\x2b\x52\x19\xa1\x72\xdd\xf4\xb4\xfc\x39\xca\x49\x15\x55\x7d\x5d\x6c\xaa\x25\x2d\x52\x9c\xc8\xb4\x2c\x12\x97\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\xb2\xea\x8a\x4b\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\x78\xb7\xdb\x54\x0b\x69\xfa\xa5\xe4\x45\x04\xe5\xf3\x58\x27\xc5\xc3\x01\xc1\x2c\xcf\xa1\x19\xf5\x9a\xa9\x52\x9e\x90\x77\x94\x5f\x97\xb4\xe3\xd6\xfb\x95\x9c\x49\x9b\x66\xbf\xfc\x0a\x87\x83\xad\x5c\x24\xc1\xf9\xfb\x86\x3a\x0c\xac\x0a\x00\xb1\x89\x63\x22\x28\xcc\x02\xb4\xe5\xb6\xe9\x79\xe2\xb4\x18\x93\xb9\x9b\x8a\x32\x69\xa4\x5d\x71\x4d\x87\x5b\xdf\xc8\x56\x5e\xd2\x56\x5d\x70\xc5\xb3\x8c\xc8\xca\x5c\xb7\x13\xd1\x1f\xd9\x52\x96\x96\xe2\x2e\xa0\xb6\x7b\xda\x85\x6b\xaa\x8c\x27\x9e\xf9\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xea\x40\x3b\xbe\xa1\x33\x93\x17\xfa\x39\x3e\xf4\xb7\xaf\x9f\x7a\x55\x5c\x5d\x51\xaf\x3a\xda\x4d\xaf\xf2\xc5\xa6\xa1\xad\xf8\xcb\xfb\x37\x1d\x6f\xb4\xf5\x7c\xd7\xb4\xe0\x3f\x28\xeb\x8c\x3e\x43\x9a\x9b\x68\x86\xa8\xf7\xdb\x4b\xfa\x75\xb3\xae\x16\x6b\x99\x76\x2e\xc1\xfb\x83\x52\xa9\x89\x7d\x47\x4b\x78\x94\xd3\xd6\xa2\x11\xd0\x94\x01\x01\x78\x0c\x86\x75\x0c\x7e\x45\x38\xb6\x6f\x69\x3b\xad\xfb\x7e\x67\x2d\xbf\xba\xb8\x38\x93\xa6\x43\xea\x5d\x6d\x17\x0e\x33\xb0\x06\x1b\xe6\x88\xea\xbc\xa9\x67\x40\x92\x7d\xbb\x19\xe0\x0f\x8d\xd5\x72\x0e\xcc\x0b\x77\xe1\x6b\xfe\xef\x3c\x4e\x0f\xe6\xb9\x23\x5e\xef\x06\xd8\x44\x73\x0c\x2e\x65\x96\x6d\x9a\xd5\xbc\xa5\xd5\x30\x64\x7a\xd3\xac\x04\x81\x92\x8c\xd8\xd2\x73\x43\x09\x9e\x8d\x9b\x96\xb9\x36\x82\x04\xc1\xe2\x45\xa6\x4d\xd2\xec\xb8\x9f\x6e\x97\xbc\xd3\x84\xb8\x35\xd0\x76\xc8\x07\x9f\x44\x99\x20\x4e\xee\x4c\xdf\xd2\xfc\x29\x35\x3f\x3f\xa5\x59\x05\x49\x47\xea\x55\xdb\x6c\x29\xf5\x05\xfd\x89\x09\xb1\x8f\xa7\x5c\x1f\x60\x8a\xe5\x92\x0e\x9b\xee\x28\x7f\xff\xe2\x24\xff\xbf\xbe\xfd\xf3\x9f\x67\xf9\xeb\x9e\x37\x36\xe3\xfa\x7f\x31\x8e\x16\x3a\x13\x11\x94\x08\x60\x4f\x68\xfc\x80\x37\xea\x83\xfc\x7b\xe4\xfe\x7f\xe5\xa7\x82\xf8\xcc\x72\xb6\x68\xb6\x3f\x32\x71\xdf\x16\x44\x4a\x38\x87\xb0\x5f\xb7\xc5\x79\x59\x2f\xe9\x43\xb8\x3e\xcd\x72\xc4\x45\xb3\x1d\x0f\x28\xcc\xef\x7c\xd1\xd4\x57\x55\xcb\xe3\xf9\xb9\x06\x6e\x19\x5b\x9c\x9f\x48\x8e\xb1\x50\x34\x65\x44\x8f\xaa\xab\xdb\x08\x8a\x91\xbe\xe5\x44\x45\x8f\x4c\x70\x78\xae\xa4\x3e\xcc\xf1\xb9\xa0\x36\x63\xc1\x3b\x1a\x5d\x6b\xd3\xdd\xc5\xf9\x6e\xae\xae\xf8\xc4\xb7\xb3\x4a\x5b\x78\x27\xa9\x72\x6c\x79\x10\x42\xed\x1d\x18\xfb\xe7\xba\x25\x4e\x9e\xbf\xcd\xcb\x6b\xc2\x5d\xa6\xa1\x6d\xb3\xdc\x2f\x80\xaf\x0c\x7b\xc4\xa4\x9f\x08\x4e\x47\x3b\x6d\x51\x2a\xb2\x04\x92\xc3\x5d\x63\xba\xb6\x20\x20\xa2\x34\x46\xfa\x89\x1b\xbd\xa6\x73\xa4\x75\x4d\xbc\xb4\x24\xed\xfd\x08\x76\xd4\xa9\x50\x82\x47\xbe\xa0\x05\x27\xa4\x90\x5e\x74\xd2\x29\xc9\xa6\xcd\x43\xbb\x62\x4f\x52\x4e\xb1\xa4\xbe\x5c\xde\x82\x8a\x75\x8c\x0b\xcb\xf2\xaa\xd8\x6f\x68\xb5\xaf\x4a\x5a\x3f\x62\x97\x97\x73\x6d\x6b\xd3\x34\x1f\xd1\x98\x4e\xd5\x0b\x03\xc8\x8f\xb5\xd2\x37\x80\x38\x54\x32\x74\x56\xcb\x07\xb0\xd0\x29\x6d\x81\x76\x1a\x1f\xef\x31\xbf\xd9\xd1\x34\xeb\x64\xea\x4a\xe7\x7c\xde\x52\x4e\x4d\x14\xe4\x52\x07\x1d\xe7\x72\x70\x8c\xda\xec\x9c\xb3\x70\xe8\xf3\x26\x0b\x8c\x26\x15\x08\xdf\x0d\xcb\xd2\xce\xa9\x89\x43\x94\xe3\x96\xb7\x98\x48\x5f\x76\xf2\x12\x81\x2e\x31\xce\x79\x94\x75\x74\xe0\x26\xf2\xa4\xf9\xa1\xd9\xf7\xc2\x33\xe6\x60\x36\xb8\x46\xab\x80\x99\xac\xe9\xbe\xcc\x32\x65\x34\xe7\x2a\xa6\xce\xaf\x2b\x08\x81\x61\x8b\x49\x95\x2a\xba\xf2\x0c\xff\xca\x00\x2c\x5d\x76\x93\x65\x43\x6f\xde\xf1\x20\xbb\x20\x04\x0a\x9e\xf0\x70\xd1\x02\x33\xbf\x84\x59\xd7\x15\x0e\x3a\x45\x72\xcc\xcb\x25\xf3\x67\xd4\x34\x35\xd5\x95\x25\x6a\xa0\xf2\x5f\x53\x9d\x28\x33\x53\x09\x48\x85\x12\x63\x9a\x99\xe1\x59\x36\xe0\x9e\x70\x9a\x52\x69\x9b\xd6\x01\x67\x93\xb7\xd5\x6a\x4d\xa7\x4b\x73\x73\x24\x93\x72\xb3\x6e\x4a\xde\xf3\xaf\x9f\xff\xf0\x8d\xf4\x63\xc5\x67\x6b\x28\xc4\xa7\x72\xb1\xa7\x0d\x41\x33\xa6\x5b\x4f\xba\x10\xb8\x1b\x40\x8e\x64\x2d\x01\x1a\x0a\xbd\x23\x66\x2a\x10\x3a\xa5\x6f\x3e\x4f\x09\x5b\x84\x91\xd2\x26\x38\x4b\xc3\x42\x48\x55\x50\x9a\xaf\x1a\x08\x6a\x26\x18\x31\xbb\x90\xf5\x24\x76\xcd\x57\x55\x3f\xbf\x62\x6a\xcb\x15\xbf\xe0\x0a\x98\x7b\xa1\x9c\xfc\x11\x65\x3d\xca\x89\x62\x93\xf4\xb9\xfc\x2e\x7f\x78\xad\xac\xf6\xb7\x4c\x46\x79\x2b\x56\x1b\xac\x88\x8a\x7f\x6d\x29\x9c\xb4\xa9\x1e\x02\xdb\xda\xed\x77\x38\xdc\x95\x43\x0e\x62\xd4\xb2\xb9\xa9\x99\x60\xe0\xb8\x20\xd2\x58\x2d\x2a\x3a\xe4\x2e\xab\xba\xa0\xd3\xd1\x6a\xc1\x31\xf4\x90\x50\xe2\xed\xbb\x0b\x00\xae\x9a\xcb\x7d\xb5\x59\x1a\xc0\x2c\x33\x2e\x9a\x78\x68\x5d\x7c\x2f\x8f\x58\x52\x25\x7d\x59\x34\x2d\x9f\xbf\x18\x8d\x15\x3c\xc0\x0b\xf2\xe1\x2d\xcc\x7b\xc5\x82\x20\x60\x51\x2e\xb0\x6d\x3c\x0d\xb4\xfa\x8b\xb5\x32\x75\x40\x9b\xaa\xab\x1f\xf5\xe8\xe9\x62\x4f\x6d\xd1\xca\x73\x32\x15\xec\xf2\xa7\x3f\xd2\xff\x19\xb3\x88\x72\x68\xad\xc6\x13\xcf\x99\xb9\x64\xee\x65\x2b\x26\x5d\x4d\x70\x3c\xac\xb4\x61\xb0\x1b\xab\xef\xaf\xa1\x40\xb7\x17\xa4\x65\x2d\xd1\x86\x96\xb5\xfc\x8a\x3e\x58\xe4\x5d\x6d\xb0\x08\x45\xaf\x72\x69\x43\xf3\xc6\x08\x72\x24\x7b\xe6\x8a\x86\xc6\xe4\xbf\x2f\x3e\x96\x10\x65\xe3\x9c\x4f\x71\x3f\x07\xe7\x2d\xfb\x8d\x75\x66\x1f\xb2\xbd\x70\xee\xcd\x66\x19\xa4\x4b\xec\x06\xa2\x46\x65\xa2\xf2\x89\x30\x01\xd1\x3b\x92\x50\x16\xeb\x79\x50\xb8\xf1\x44\xf6\xe5\x27\xf0\x38\xc8\x8a\xfa\x37\xde\x25\x9c\x95\x6d\x6f\xb1\xc4\x3c\xf0\xd3\xdb\xb8\xc2\xac\x90\xe8\xd6\xcd\x0d\xb4\x57\x01\xe2\x9c\x52\xa0\xb7\x4a\xf8\x7b\xd6\x7a\x2d\x9a\x0d\xe1\x7b\xc3\xab\x72\x1d\xe1\x4f\x7c\x6a\x5a\x39\xb5\x4b\xc2\x88\x36\x9b\x6a\x6b\x28\x4b\x14\x44\x9a\x2b\x0a\xa2\x2e\x03\xa5\x54\xcd\x22\x08\x2a\xe1\x8b\xea\x45\x66\xb4\xf0\x50\xbb\x58\xcb\xaf\x6b\xe1\xbc\x7d\x3f\x69\x8e\x55\xeb\xf8\x21\x33\xb8\xa4\x4f\x42\x6e\x65\xd2\x59\xed\x53\xb4\xc0\xde\x73\x7c\x50\x69\x22\x68\xeb\x0f\x4e\xef\x37\x37\xdc\x32\xfd\x1f\x74\x53\x4a\xd3\x22\x0f\xb6\x2e\x77\xcc\xae\x6d\x3b\x20\xe5\x86\x15\x24\xb7\x2a\xbe\x04\xf4\xfc\x49\x4e\x0b\xc2\x57\xa2\xb1\x5f\x65\x5d\xc3\xdb\x7d\xfe\x85\x55\x3c\xab\x08\x11\x51\x3e\x3d\x69\x45\x21\x49\x52\x06\x0f\x86\xf6\xf8\xed\x51\x2a\xd8\xae\x49\x7c\xbf\x2c\xe9\xd4\xd7\x62\xcb\x99\x29\x26\x18\x81\x48\x9c\xc6\x8e\x85\x12\x15\x7b\x4c\x4a\x36\x23\x16\x80\x7b\x28\x44\x56\x5b\x09\xcc\x26\x58\x49\xcf\x71\x4e\xb4\x49\x13\xb6\x2d\x59\x7a\x99\x6f\x45\x79\x29\xbf\xf2\xd3\x32\xa3\xb3\x78\x85\x7d\x24\x88\xfe\x03\x2b\xad\x56\x10\xf2\x14\xf3\x19\xa0\xec\xfd\x29\xa0\x10\x96\xf2\x93\x29\x8b\x89\x2e\xdd\x40\x89\xc8\x9c\xd0\x70\xfa\xe9\xbc\xa4\xec\x99\x9d\x2a\xc2\xa0\x80\x37\xee\x88\x56\xc5\x49\x3c\xce\x59\xeb\xeb\xa1\x94\xcf\x0f\xa3\x62\x78\x26\x59\xdf\x5f\xfe\xf8\xb0\xfb\xfe\xeb\xcb\x1f\x03\x61\x5f\xac\xcb\xc5\x47\x41\xce\xaa\xbe\x6c\x3e\x41\xad\x00\xf5\x56\x49\xb5\xd2\x66\x7d\xb8\xcc\xd7\x94\x0b\xa9\x96\x08\x11\x15\xa3\x79\xe7\xdc\x64\xcd\xa8\x2f\x4c\xaf\x66\xa2\x4e\x2c\x05\xfb\x23\x3e\x42\xaf\xc8\x18\x89\xd3\xc7\x50\x92\x0a\xad\xab\x4b\x3a\xd3\x88\x34\x41\x12\x7e\x83\xbf\x67\x9a\x5c\x2e\x07\x10\x8e\x51\x68\x03\x21\x65\x2d\x5c\x28\xc0\x9d\x04\x68\x1c\x9f\xa2\x4c\x44\x17\x5e\x59\xcc\xdf\xa6\xda\x56\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\x6d\x4e\x6d\xec\x7b\x96\x10\x59\x29\xd5\xd3\xe9\x54\x30\x33\x42\xa2\x73\xd1\xcd\xf7\xb5\x2e\x13\x31\xc8\x8a\x9c\xaf\x2a\x9c\x99\xdc\xae\x6d\x21\x07\x95\x4a\x6c\xf9\xe3\xb0\x82\x4f\x66\xaa\x08\x45\x29\x3e\xc7\xb8\x3f\x15\x8b\x17\xc5\x14\x2e\x10\xc5\xae\x4b\x99\x21\x8c\x9f\xc1\x18\x6d\x48\x68\x8e\x93\x45\x92\xf7\x47\xe6\xab\x79\x7d\x2f\xf7\x7d\xdf\xb0\xf0\xb8\x61\x1c\x94\x32\xd6\xe7\x13\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\x2d\x45\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\x8f\x4c\x51\x99\xdb\x06\xb6\x33\x73\xa1\xba\xcc\x80\x1a\x6d\x3a\xb5\xc8\xe7\x5d\x46\x94\x9c\xb8\xe8\x25\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\xca\x7a\x95\x28\x2a\x61\xfe\x02\xbe\xfd\xdf\xac\x5c\xac\xe7\x90\x30\xdd\x06\x7c\xdb\xd4\x4f\x91\x16\x44\x14\x2b\xad\xaa\x6d\x6b\x90\xab\x69\x9b\xfd\x6a\xad\x5a\xaa\xec\x37\x9e\xb5\x0f\x99\xae\x6b\xe9\xea\x54\xac\xb7\x1c\x5b\x7f\xd9\xdb\x01\xde\x18\xdd\x5f\xcb\x96\xc5\x79\x00\x25\x0b\x7f\x68\x45\xd2\x09\x09\x24\x3d\x72\x46\xef\x3d\x01\xd2\xe4\xab\xfd\xe6\x28\xbf\x11\x96\x29\x96\x09\xaa\x04\x65\xa6\x18\xc5\xc5\xee\x47\xc3\x6b\x96\x05\x8d\xef\x16\xd6\x8c\xbf\xd2\xb1\x5b\xc3\x82\xd4\x64\x94\x21\x85\x4e\xf1\x41\xa0\xac\x0b\xf9\x90\xf1\x71\xfc\x76\x20\x11\xf0\xb9\xad\x69\x8e\x2b\x45\xd6\xcf\xde\x42\x16\xc6\x7c\x36\x21\x3c\xbc\x2f\xa3\xa1\x0c\x5f\x61\xf0\xe7\xe7\xaf\x2e\x4c\xb9\x71\xfe\x2a\xff\x58\x6a\xdd\xaf\xfa\x7e\xd7\xfd\x02\xb5\x99\xe8\xc0\x58\x61\x76\x56\xdc\x32\xa7\x2e\xc9\xfa\x03\x19\x17\x65\xb1\xd5\x4e\xf2\xa7\x54\x71\x4c\x4c\x84\x26\xf2\x27\x71\x1e\x4e\x1d\x9b\x81\x67\xfd\x39\x11\x55\x64\x17\x05\xb9\xb1\x54\xd3\xd9\xef\x23\x15\xf2\xef\x59\xb1\xd9\x91\x68\xcb\xfc\x9f\x03\x83\xb6\xf4\x52\x25\xdc\x1c\x20\xd8\x35\xfb\x2d\x21\xc8\x02\x5a\x08\x2a\xf0\xf8\xe9\xfc\x89\xd3\x9e\xa7\x95\x2d\x89\x98\xfc\xa1\x0a\xf9\x5b\x50\x3e\xd6\xdb\x55\x7f\xb7\x51\x24\xd5\x71\x3a\x11\x66\x82\x00\x1b\x1f\xa1\x02\x10\x8e\x16\x66\xe9\x7b\x56\x9e\x52\x02\x89\x0d\x49\xd5\xdb\xe2\xd3\x7d\x05\xb7\xcd\x44\x39\x21\x99\xb1\x90\x51\x46\x1d\x62\xb2\x7b\x08\x9c\xb5\xa3\x07\x81\x69\xe1\x09\xa4\xaa\x17\x9b\xfd\xf2\x60\x47\xba\xfd\x25\x6d\x24\x16\x47\x1e\x3d\xec\x1e\x71\x95\xf5\x47\xe2\x3c\xea\x00\xff\x8b\xfc\xce\xf1\xfb\x3b\xb3\xe0\xce\xa9\x5a\x91\xd1\xf2\x60\xcb\x25\x06\x6a\xc9\x87\x11\x64\xad\x59\xa4\x63\x5e\xfe\x0a\xc8\x0f\x45\x95\xca\xc7\x61\xff\xb3\x76\x0a\xa2\x28\x21\xe0\x2c\x5a\x9d\xe7\xcc\xc8\xcc\x59\xae\xa9\xbd\x20\xc2\xc4\xd7\x8e\x6b\xb0\x3a\x80\x98\x89\x4d\x60\x5c\x6e\xb0\x3b\x0f\x16\x27\x76\x6d\xa2\xf4\xbb\xb1\xbd\xe2\x40\xf9\x9e\x36\xd8\x44\x05\x61\xdf\x1d\x2c\x28\x6b\x8f\x42\xfb\x0e\xe2\x66\x42\x38\xc6\xe5\x18\x6a\x16\x67\x29\x4c\xb8\x5f\x1b\x2f\xb6\x85\x79\x4e\xa5\x6c\xd6\x58\x11\xfa\xb5\xb0\xfe\x3b\x59\x5b\x75\x1f\x4a\xeb\xb7\x2c\x56\x76\x7b\x3e\xb7\x58\x04\x15\x36\x30\x9d\x51\xe6\x48\x50\x55\x89\x26\x0e\x57\x4f\xf8\xc4\xa4\xf9\xbe\xfa\x01\xf6\x85\x55\x7b\xd5\xcc\xb8\x62\xad\x3c\x00\x1d\xaa\x36\xe8\x0d\xca\x4f\x15\x34\xf3\x2f\xab\xeb\x52\x35\x07\x41\x61\x82\xbc\x59\xb6\xa1\xfd\xcf\x12\xa4\x8c\x4a\xe4\x85\xe6\x9a\x77\x14\xb7\xc7\xb9\x52\x4e\x34\xf5\x3a\x28\x46\x12\xd5\x41\xc0\x5c\x58\x2e\x8f\xd8\x74\xd9\x83\x31\xc0\x06\x2d\x36\x37\xc5\x6d\x07\x7d\x9a\x11\x19\x36\x72\x48\x71\xa6\x20\xc4\x1c\xad\xd0\x2b\x6f\x4a\xa3\x5d\x63\x33\xc1\x36\x21\x3e\x2e\x02\x0f\x73\x03\x2d\x02\x28\x84\x6a\xe8\xae\xdd\xc1\xac\xa7\x0b\x6b\x40\x58\xf4\x67\x59\x4a\xb2\x5d\x45\xb0\x6d\x2b\xb1\x9f\x28\x7b\xc4\x8c\x23\x35\xc3\x8c\x1c\x91\x60\x99\xeb\x0a\x7c\x3a\xba\xe4\x54\x4a\x7b\xaa\xff\xa9\x08\x20\x15\xcd\x21\xcb\xb3\x51\xcb\xc2\xa7\x11\xad\x8a\x99\x82\x24\x5d\x74\x13\x5d\x5f\x6d\x36\x3c\xd3\xe6\xef\x91\x08\x04\xc8\xc5\x3e\xc1\x34\x75\xeb\x6a\x97\x37\x30\x08\xf8\x29\x8c\x68\xeb\x58\x6f\x36\x7a\x95\x10\x70\xd8\x30\xd2\x16\x75\x77\x55\xc2\x42\xb2\xcd\xaf\xd8\x27\x61\xa6\x4d\x33\x27\x2f\xfe\x1d\x07\x5a\x16\x59\x11\x4d\xfb\x03\x02\x6b\xe7\x16\x2a\x6d\x5a\x2c\x70\x50\xc3\xa3\x0f\x98\xd5\x58\x53\x67\x7d\x60\x34\x1b\x4d\x01\x18\xea\xc4\x9e\x3a\x39\x0f\x57\x89\x0a\x42\xda\x07\xa6\xdd\x33\xee\x4c\xfc\x27\xe6\x97\x94\xb9\x58\x27\xbb\xe2\x02\x39\xb9\xe4\x8c\x36\x46\xf6\x1b\xe3\xfd\x87\x4c\xd8\xcc\x79\x30\x73\x9c\x08\xdb\x29\x3c\x23\x12\xb3\xff\x6a\xe8\xa0\x85\xce\xfe\xdf\xe9\x0b\x0a\xfe\x2c\x31\xdc\x0e\xf4\x23\xea\xb9\xc2\x38\x79\x46\xa8\x44\x67\xbd\xba\xaf\xdc\x92\x00\x8e\xfd\x04\xf5\xc9\x0b\xfb\xce\xd8\x39\xa0\x05\x72\x9d\xeb\x57\xa2\x8f\x91\x42\xa2\xac\x7b\x61\xdf\x9a\x1a\x92\x68\x5b\x84\x94\x5f\xf4\x33\x63\x81\x7f\x3b\x03\xfd\x65\x66\x16\x36\x1e\x47\x75\xf9\x50\x65\xfc\xb7\xbc\x99\x83\xdf\x15\x3d\x51\x9e\x5a\x04\x24\x21\x02\xbe\xa8\x66\x87\x2a\x82\x6b\x01\xd7\x92\xfd\x66\x6e\x3d\x1f\xb2\xe8\xfc\x63\x7e\x3f\x53\xfa\xe9\x30\xfd\x62\xb5\xc9\x74\x57\x77\xca\x58\xfe\x07\x7d\xaa\xb2\x07\x14\x03\x1f\x2a\xad\xc3\xc8\x6f\x96\x59\xf8\x0a\xb9\x9f\x99\x2a\xcf\x52\xcd\x99\xe2\xd4\x0f\xf9\x73\xf9\x30\xb9\x7f\x5f\x61\x8c\x15\xb1\xdf\x3b\x2c\x9c\x73\x5d\xd2\x95\x0c\x83\x50\xcf\x35\x2f\xf9\x8f\xc4\x46\xa9\x04\xdc\x84\x19\xda\x70\x76\xb2\xcd\xc4\x89\x8f\xac\xf5\x86\x5c\x59\x3b\x23\x22\x9b\xc6\x58\x16\x26\xb0\x9b\xf2\xd2\x2c\x4b\xbb\xb2\xd5\x71\x6e\x0b\x92\xf0\xae\xab\x22\xe8\x9c\x1c\x4f\x13\x0e\x5d\x53\x1a\x25\x82\x16\x58\x78\xd1\xe1\x19\x4b\x63\x0b\xcc\xaa\x14\xc1\x7f\xaa\xb5\x12\xc3\x4e\x0d\x76\x87\x3d\x8f\xec\x4c\x7c\xc1\x1e\x57\x70\xa1\x18\xfb\x0c\x72\x13\x6a\xe0\x7a\xa3\x9f\xd9\x7e\xc7\x16\x23\x37\x97\xbf\x20\x21\xcc\x65\x9a\xef\x04\x29\xcc\xaa\x15\x0b\x3a\x23\x01\x5f\x3a\xc9\x8a\xcd\x26\xba\x8f\x27\x7c\x01\x75\x4b\x2f\x87\x20\x51\xc3\x02\x1a\xa5\x03\xc7\x42\x89\x15\x1f\x53\x4b\xe7\x5c\xce\xea\xdc\x4d\x55\x7f\xec\x74\xa5\x78\x9e\xbc\x50\x09\x4d\x18\xe1\xfb\xbe\x14\xbb\x0a\x3e\xc7\x9e\x67\x6a\x71\x54\xfb\xe3\xe5\xad\xa9\x0a\xc4\x42\xa9\xa8\xcf\x76\x4f\x48\x32\x87\x4d\x9d\x43\x1b\xa7\x99\x38\xcd\x74\x07\x0b\x6b\xa4\x68\x34\x0f\xf9\x89\x58\x5d\x75\x77\x2d\xd6\x4d\xd3\xa9\x6a\x36\xd2\x3d\x4e\x83\xe6\x45\xc9\x9e\x2e\x4b\xac\x47\x56\xed\xd8\xac\xbf\xd8\xe1\xba\x97\xe6\x6a\xa7\x88\xd0\xba\xb5\x4e\xd4\x7e\x71\x6c\x75\x8a\x75\xd7\xc6\x04\xea\x32\xaf\xb6\xe2\x33\xfa\x8b\xd9\x7e\xb1\xe0\x41\x60\x40\xf6\x2c\xed\xcf\x10\x4b\xb4\x5d\xb3\x5e\xdc\x83\x2c\x86\x0a\xde\x1c\x26\xcb\x1f\x28\x52\xb3\x49\xd8\x35\x1b\x47\xc8\xe7\xc9\x73\xf9\x6f\x61\xb8\x0c\x3a\x01\xde\x63\xf3\x01\x88\x8a\xd1\x09\xe4\x24\x57\x6c\x6d\x1d\xe4\x88\x07\xbd\x1f\xed\x18\x2b\x77\xc3\xfe\x66\x6e\xe0\x8a\xe3\xcb\x99\xf9\x70\xb1\x1a\x57\xac\xa0\x70\xb6\x11\x87\xa3\x1a\x26\x54\xa9\xc2\x11\x15\x6d\xf4\x5f\x25\x29\xb1\x66\x11\x29\xba\x20\x49\x1c\x0b\xe1\x64\xa3\x87\x78\xaa\x86\x7c\x75\x56\x4d\xe8\x6b\x69\x1e\x2c\x9e\x02\xef\x5a\xc2\x15\x62\xf8\x53\x4a\x3c\xa2\xbd\x09\x9d\x05\x99\x6d\xe0\x8f\x11\xc9\x2b\x8d\x5b\xab\xe2\x73\x0b\x5f\x96\x12\x14\x47\xb4\x03\x98\x2b\xd6\x64\xdb\x08\x96\x2b\xf8\x1f\xfa\x48\x3f\x84\x2a\xca\x58\x9f\x6b\xc2\x20\xdf\x06\x23\xd9\xb6\x20\x13\xa3\x61\xf7\xb1\xeb\x32\x1c\x1c\x55\x2d\xee\x30\xc1\xd8\x99\x50\xa7\xfc\x39\xc8\x15\xa1\x83\x28\xdb\x8d\x58\xfd\x34\x6c\x3d\xe2\xd1\xcf\xa9\x9a\x5e\xc6\x96\xee\xa2\xaf\x32\xea\x11\x70\x3c\x9a\x8c\x97\x40\x9e\x54\x8b\xc6\x50\x1e\x42\xf4\x34\x21\x75\x9e\x18\x11\x60\x0f\xf8\x12\xc3\x01\xf3\x1f\xff\x0d\x36\x83\xa4\xa9\x68\x33\x08\x9d\x1c\xec\xb0\xd1\x28\xc7\x5b\x8d\x32\xc0\x0a\x29\x2e\x3b\x86\x46\xb1\x39\xf0\x35\xdc\x8a\x48\x30\x3c\x3d\x94\x04\xee\x47\x31\x01\x47\x13\xfb\x95\xc1\x29\x0d\x9e\xa8\x22\xce\x74\x23\x85\x74\xba\xe6\xc7\x90\xd7\x68\x52\x04\x16\x9c\x21\x31\x13\xcc\xe9\xdb\x5e\x27\x2e\x9a\xe6\x41\x1c\x12\x82\x83\xe0\xc8\x1c\x78\xa4\x42\xd2\xba\x5a\xad\x69\x5c\xd5\x96\xed\xf0\xc0\x24\x33\xf6\x46\x19\x96\x7f\x11\x89\x6a\x56\x35\x2b\xa9\xb8\x05\xf1\x08\x0c\x0a\xe6\xef\xbb\xbe\x6d\xea\xd5\x8f\xcf\x1b\x16\x2e\x59\x77\xc3\x87\xeb\x4f\xdf\x7f\xad\xe9\x44\x86\x79\x09\xd9\x7d\xf4\x65\xd5\xbf\xda\x5f\x3e\xea\xf2\x15\xfb\x41\xc3\x48\x54\x38\xef\x68\xf5\xc0\x10\x77\xcd\x9b\x3a\x4c\x0b\x7c\xa5\x69\x8f\x77\xcd\x86\x36\x48\x5a\xa4\xd9\x6e\x65\x79\x89\x80\x6d\x05\x12\xfd\x87\xd3\x46\x59\x63\xe6\xca\x56\xe7\x87\x2a\x9c\x05\x14\x8f\xeb\xa3\xcb\x66\x1c\x6a\xa2\x11\x51\x1e\x91\x81\x61\x52\xae\x7b\x77\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\xd6\xa2\x70\x20\x25\xab\xba\x05\xb1\x1c\xf2\xf2\xd9\x63\x8a\x5a\x70\xee\xa1\x7b\x40\xd7\xc1\xfe\x56\x8a\x26\x63\x57\x7a\x66\x03\x70\x14\x4d\x67\x24\xd2\xb4\x21\x4c\x42\xd5\x4a\xa1\x69\xd6\x0b\x4f\xcd\xc4\x3f\x4d\x28\x9a\x20\x24\xc9\x56\x4c\xaf\x3f\x93\x9a\x8d\xda\x8d\x03\xb7\xe6\x3e\x83\xa2\x61\x4c\xc7\x98\x0e\x1a\x0b\xf4\x27\xba\x50\x6f\x54\x5b\x82\x0c\xf6\x94\x8e\x72\xde\xdb\x46\xad\x6e\xb9\x25\x62\x4d\x48\xb0\xeb\xcb\x64\x2b\x73\x27\xe0\xdb\x2a\x9e\x4b\x50\xc0\xfc\x3f\xf9\xb2\x20\x3a\xd0\x37\x1f\x09\x95\xc6\x45\x90\x7e\xa8\x50\xa0\x2f\x26\x1c\x29\x75\x39\x8e\xc4\x61\x28\x2e\xa9\xd1\xfc\x20\x81\x71\x74\x45\x6b\x0d\xde\x63\xa2\x3d\xc2\x7d\x03\xf6\xb1\x59\x0a\x1d\x51\x32\xa0\x2e\x52\x61\xff\x13\xc7\x56\x33\x10\x04\x52\xfe\xd0\xdf\x7e\x59\x92\xfa\xdd\x66\x21\xea\xbd\xaf\x1d\xf9\x14\x74\x98\xcb\x54\x84\x41\x9e\x11\xc3\x01\xa7\xd6\x63\xa9\xf0\x82\xb3\x3b\xf5\x10\x57\xdf\x03\x2b\xf2\x52\x13\xb1\x07\x00\x28\x13\xde\x85\x89\xc0\xaf\xa8\xf8\xb0\x5a\xd4\xab\x45\xfd\x55\xb1\x06\x84\x75\x46\x30\xd7\xe2\xe5\x92\x1f\x9f\xbd\xa6\x03\x23\x34\x68\x95\xfe\x5c\x2c\xd6\xba\x80\x37\xa2\xf5\x80\x2f\xcc\x66\x33\xa4\xb8\x41\x92\x90\xe2\xe6\xc8\x8f\x92\xd8\xe2\x61\x50\xa3\x01\xc9\x60\xd2\x7c\x99\xe3\xb2\x73\x9a\x20\x69\x0d\x3d\x19\x9e\x55\x61\xa8\x5f\xd1\xcc\x06\x7d\x24\x6f\xad\xdd\x2d\x53\x7f\xe7\xd5\x56\xc8\x0c\xdd\x80\x7e\x0f\xdc\xe9\x08\x12\x16\xe5\x9c\xb7\x70\x1b\xe8\x87\x75\x58\x29\x88\x5f\x4a\x4f\x46\x26\x17\x33\x12\x95\xc9\x62\x53\x94\x65\x67\xf5\xa4\x63\xbe\x8f\xce\x30\xe2\x47\xc5\xc1\x1d\x54\xc6\x8f\xca\xa1\xf2\xd9\x64\xb3\x01\xa3\xa5\xe9\x01\xbd\xc9\xe5\x18\x14\xaf\x0c\x78\x98\x8a\x88\x25\x18\xe1\xfc\xcd\xa9\x96\x9b\x72\xb3\xa1\xfd\xa0\xad\x47\x63\xa7\x0e\x3d\xf1\x5f\x50\x20\x27\xdf\x96\x91\xb7\x95\xa9\xf0\xaa\x3c\xab\x8c\x20\x68\xbb\xc1\x75\x40\x94\x0f\x76\x5a\x9f\x1c\xbf\x7d\xfb\xee\x22\x1e\xd2\xbc\x0f\xea\x25\xb1\x12\x5f\x05\xc7\xc2\x51\xbf\xcc\xbd\x30\x2c\x60\x0a\x11\x1d\x1c\xb5\xc4\x21\x38\x4f\xa6\x9c\x6b\xc5\xaa\x01\xed\x69\xb8\x2f\x46\xcb\x93\xfe\x2f\x0f\xad\x5f\xf6\x1b\x73\x37\x1f\x32\x53\x88\xbf\xe3\xbf\x99\xb7\x29\x38\x5b\x0c\xb6\x5e\x34\xd9\xc4\x6b\x1c\xd4\x81\x66\x39\xb2\x31\x80\x48\xef\x0b\x88\x5a\x34\xf7\x0d\xce\x8a\xab\x1c\x76\xf2\x23\x56\x99\x36\x2d\x36\x0c\x4f\xee\xbe\xae\xfe\xb6\x07\x7b\x06\xf3\xf6\x2c\x63\x7f\xd5\xcb\x6a\x23\x07\xca\xaf\xe1\x87\xa4\xf3\xd7\xe0\xaa\x81\x6b\x9c\x7e\x7d\xdf\xed\xd8\xdd\x97\xce\x86\xee\x87\x07\xfb\x2a\x67\x2d\x22\x7b\xae\x3d\xf8\x91\xe4\x17\x36\x78\xd3\xf2\x11\xc4\x8f\xa3\xea\xf8\x36\xe1\x42\x94\x8f\xc1\x15\x05\x78\xab\xe9\xbc\x5b\x98\xdf\x4d\x34\x9e\x32\xf1\x7f\xa0\x4d\xbe\xba\x18\xc7\xf1\x58\xa5\x6e\x9a\x23\xec\xdd\xeb\x62\xb3\x4f\x55\x30\xdc\x3a\x97\xe9\x9e\x64\xb8\x47\x11\xcb\xc2\x35\x09\x97\x61\x39\x83\xb0\xe1\x27\x4c\x5a\x7f\xf7\xa5\x3a\xbe\x36\xcb\x8c\xdf\x57\x19\x7a\xa2\x4a\xea\xe1\x2d\x4a\xe4\xd9\x05\x07\xce\xc3\x2d\x07\xa4\x4e\xac\x86\xbb\x10\x55\x6c\x7a\x51\x50\xe7\x6e\x35\x99\xb4\x60\x10\x5e\xb1\x7b\xab\xa6\xc0\x40\xc1\xba\x45\x5b\xe1\x92\x86\xa4\xf3\x55\xda\xdc\x5d\xa3\x45\xe2\xaa\xea\x49\x58\x67\x57\xc3\xd0\xf8\x39\x21\x3f\xcd\xd3\x2c\x64\xe5\x76\x31\xb7\xcb\x88\x7e\xd0\x91\x86\xdb\xb8\xf2\x65\x29\xa3\xe2\x7c\xfa\x0b\x2c\x34\x72\xcc\x72\xea\x56\xe0\x0f\xfd\x3d\x51\x4a\x01\xad\x49\x36\x95\x34\xf3\xaa\xae\x98\x02\xbc\xa6\x3f\x74\xba\x8b\x24\x90\xe2\xab\xf0\xb9\xa8\x44\xb5\x3d\x22\x86\x87\x7a\xd4\x79\x50\x97\x47\xbd\x06\xdd\x02\xe9\x85\x00\x55\xfb\x63\xfe\x90\x90\x3f\x43\x82\xde\xc1\x25\x0a\xb8\xaf\x45\xf5\x4c\x7f\x93\x44\x9b\x77\xc7\xd0\xc8\x95\xac\xa7\x7d\x5b\x2c\x3e\x32\x71\x21\x9c\x29\x5b\x92\x0a\xe0\x31\x55\xf0\xf9\x97\x13\xa2\xad\x68\x02\xc4\xc2\xa0\xee\x48\x52\xcc\x2a\xaf\x58\x82\xb8\x16\x4e\x4c\x6e\xef\xbe\xb6\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\xc9\x36\xa9\x62\xd3\xe5\x2a\xef\x9a\x19\x3e\xbb\x61\xe3\xb6\x58\x1c\xfe\xa2\x9f\x30\x38\xac\x8a\xbf\x4b\xea\x79\xf8\x01\x0c\xef\x14\xe7\x3b\xb5\x1e\xd0\xdc\x2f\xd6\xea\x93\xd6\x5c\xcd\xe5\x56\x1f\x4e\xec\x8b\x60\x05\x65\x72\x01\x38\x5a\xcd\x6d\xf1\xa9\xda\xee\xb7\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\x76\x3e\x9b\xb3\x89\xcf\x68\x4a\xe2\x6e\x92\xe9\xfd\x6c\xbb\xe7\x1a\x2e\x68\xcb\x45\x57\x9f\x7b\x98\x3c\x9b\x02\xaa\x48\x29\x26\x7c\x8e\x2f\x89\xe2\x3d\xf8\x51\x16\xdd\xc8\xa5\xd5\xaa\xe8\x7f\xaa\x57\xc4\x1d\xfe\x2b\xc4\x4c\x68\x62\xc4\xa5\x13\xdc\x35\x8b\xa8\x34\x01\x95\x9c\xa8\xca\xd5\x16\xee\xbe\xda\xd7\x2f\x5f\x5f\xe0\xb6\x1a\xe1\xa4\x68\xf7\xf4\x4a\x1e\xbb\x63\xcf\x42\x9d\x7c\xd8\x56\x5d\x27\x4c\x58\x5d\x61\xe2\x99\x10\x4e\xe8\xff\x44\x65\xa0\x95\xa5\x18\x60\xb5\x45\x5f\x70\x76\x0f\x53\x47\xf0\xd7\x92\xa8\x05\x39\x11\xba\x88\xd4\x92\x67\x9e\x6d\x85\xbf\x28\x69\xd5\x06\xa3\x6d\x5c\x36\x6f\xaf\xd5\xad\xa6\x84\x5e\x6f\xdb\x37\x57\x99\xd0\x6a\x4b\x57\xca\x7d\x15\x8e\x00\x5c\x74\xe3\xeb\x2e\x29\xed\xc7\xad\xfc\xc2\xaf\xbb\x77\xd9\xa4\x8d\xc2\xdc\xd2\xee\x76\xce\x96\x04\x30\x48\xbb\xdb\x98\xe0\x38\x49\xca\xa0\xe9\x74\xc0\xc1\xdb\xe5\x0c\xab\xfc\xbf\xff\xe7\xff\x7a\x7a\xc2\xc3\x3e\xe9\xdb\x0d\x7d\x29\xa3\xce\xf0\xb2\x0c\x52\x41\xfe\xee\x3f\x48\xe0\xba\x51\xd7\x96\x5f\xe4\x2b\xb3\xdf\x20\x05\x94\xdf\xa9\x6e\x1f\x1f\x99\xfe\x62\x8a\x90\x69\x90\x01\x26\x05\x19\x4b\xbb\x8a\x36\x24\xe9\xfa\xb3\xea\x6f\xfb\x6a\xf1\x71\x2e\x2a\x9a\x1f\xf2\xff\xe4\x5f\x39\x2e\xae\xeb\x71\xcd\x94\x3f\x90\x71\x20\xe7\xe0\x2c\xf0\x7e\xe2\x38\xe3\xf4\xae\x48\x24\xfb\x45\xca\x7e\xdc\x1a\xe1\x35\x40\xbe\x0d\x97\xed\xf6\xec\xcc\xc5\x08\x61\xad\x9d\x51\x0a\x6e\x16\x72\xa2\xd0\xf3\x50\x03\x56\x76\x54\x07\x9a\xa7\xee\xca\x45\xd3\x49\x2e\x0b\x59\xce\x87\x77\xcb\x77\xbe\x68\xc8\x2a\xf1\x64\xea\x97\x79\xc2\x17\xf5\xc2\xd9\xa4\x67\x52\xdf\x96\x90\xe9\xe8\x4f\x46\x47\x1e\xfb\xff\xa9\xd5\x9a\x2f\x5b\xf7\x05\xcc\xbb\x48\x37\x9b\x35\x1b\xbd\x8b\x95\x56\x04\x61\xee\x99\x7e\x66\x94\xce\xbf\x2f\xe8\xcf\x28\xe6\x01\x47\x48\x18\x47\x46\xd8\x14\x97\x25\x92\xdf\xe0\x83\x90\x9f\x4e\xdd\x9e\x56\x44\xce\x20\xfb\x91\xf1\x94\x54\xbd\x20\x22\xbe\x32\xbd\x94\x23\x76\x6e\xf9\xcc\x60\xa9\x6b\x0b\xb6\x36\xbf\x2f\x6e\xe4\x27\x4d\x97\x46\xca\x78\x25\x5f\x92\x8c\xfb\x08\x02\x8a\xeb\x08\x01\x1e\xfc\xba\xee\x86\x33\xfb\x96\x2c\xf6\x2e\xdd\x30\x13\x67\xcb\x60\x16\x21\xca\xc8\x25\x43\x58\x50\xbe\x7c\x51\x67\xd6\xe9\xd9\xb8\xf3\x96\x33\xb8\xa6\x90\x2f\x06\xf9\x57\xa2\xa9\x78\xc1\x7a\x0a\x4b\x2b\x70\x12\xe4\xe6\x81\x18\xd2\xb7\x7c\xf6\xa2\x6f\xa7\xf2\x15\x72\x96\xe2\x45\xfc\x1c\x3c\x8c\xa6\xd9\xfd\x93\x77\xfc\x37\xa4\x12\x4e\x2b\x1b\x4b\x7f\xc3\xfd\x0c\x89\x92\xc2\x2a\x0a\xac\xa5\x4b\x9e\x0d\xd7\xcf\x65\xd5\x3c\x59\x97\xb0\x35\xd2\xf6\x44\xbe\xcf\x5e\xd0\x9a\xb5\xf3\x50\xfe\x84\x7f\xe6\x9b\x51\x2d\x01\x21\x3c\x3e\x0c\x9a\xf1\x30\xd4\xd4\x24\x98\x34\xe7\x21\xa5\xc5\xed\x14\x30\xdf\xa2\x4c\x60\xdf\xf1\xb5\x4a\x87\x8e\x49\xc5\x2c\x50\x0d\x6a\x86\x8c\x35\x0d\x4f\x87\x2c\x5f\x11\x84\x94\xa9\x9f\xe3\x7e\x3a\x20\xe9\x66\x31\x01\xca\xca\xbe\x08\x47\x03\x1f\x02\xa9\x36\x3a\xd0\xac\xe1\xea\xc5\xf5\xa1\xa5\x1d\x2e\x90\x64\xce\x89\xf3\x5d\x94\xe1\xb6\x12\x80\xc0\xbf\xf0\xbd\xa1\xa4\x99\x50\x99\x36\x96\xd4\x87\x09\xed\x8b\x4b\xca\x26\x7e\x8b\x67\x33\x14\xe6\xb9\x8a\x59\x32\x75\x96\xa9\x04\xc9\x6a\x4e\xaa\xf4\x79\xc4\x6a\xcd\x85\x71\x97\x89\x08\x4c\xfc\x66\xa2\xc4\x9d\x18\x35\x84\x39\x58\xf3\x08\x6f\xb4\xe4\x1d\xcb\x1b\x21\x38\x4a\xc8\xe1\xaa\x0f\x94\x53\x5e\x0f\x1c\xde\x38\x67\xc6\xf7\xe0\x02\xcd\xe5\x80\x0e\xf2\x63\x12\xb4\xd3\xc8\x45\x24\x16\x31\x37\x10\xba\xba\x54\xcd\xdf\x54\x21\x59\xe5\x25\x7b\x08\x48\x19\x59\x67\x5c\x89\x3e\x50\x64\xcb\xdc\x3f\xa4\x60\x2d\x72\x1a\x12\x26\x8a\x74\x1a\xa0\x81\x23\x24\x8c\x73\x66\x10\x1e\x7b\xa5\x4d\xdd\x24\x08\x63\x29\x40\xde\xe1\x63\x0a\x44\xf4\xe1\xaa\xd1\xe2\x93\x43\x2e\xa5\x98\x45\x7e\xb2\x61\x76\x46\x0b\x25\xde\xc0\x35\xad\xfd\x8c\x72\xec\xac\xcc\x74\x55\xcc\x1f\xa7\x0d\x3c\x88\xf1\xf3\x8e\x76\x62\x01\x69\x68\x54\x82\x77\x12\x56\x81\x40\xe4\x3b\x7f\xf8\xdb\x37\x1f\x3a\x5e\x86\x68\x57\xfa\xed\xcf\x1f\xba\x07\x3f\x3e\xfc\xed\xdb\x0f\x30\x28\x8d\x0a\xcf\xaf\x58\xa3\x3a\xae\x01\x05\x0d\x7a\xd7\x96\xd7\x55\xb3\xef\x84\xc7\xc3\x67\xa4\x0f\x9f\x64\x29\x3e\xf5\xe9\x16\x0f\x81\x1d\x06\x3b\x7c\x19\xb2\xd2\x1d\x5e\xef\xb7\x73\x1d\x63\x27\x14\xc0\x7e\x85\xe2\x36\x03\xf3\x82\x9b\xfc\x3d\xfc\x8e\xc3\xfd\x13\xeb\x50\x1e\x62\xa4\xbf\x5b\x31\xf3\x00\x11\x68\x17\x4a\xe1\x58\x2d\x82\xc1\x34\x68\xca\xb8\xa5\x53\xd7\x6a\xb1\x9f\x42\x37\x1b\x67\xc9\xba\x90\x40\x19\xcc\xee\x07\x8b\xda\x6d\xd9\xcf\x52\x92\x86\x1f\x36\xde\x34\xcb\x3a\x15\x40\x74\xd1\xe1\xe0\xed\xc1\xdb\x12\xb3\x6a\x70\xef\xf1\x73\x90\x79\x57\x65\x6d\x52\x40\xe9\x74\x44\x31\x05\x1d\x2c\x94\x4e\xb3\x9c\x61\x34\xc7\xd5\x92\x11\x8a\x10\xe4\x41\x98\x6e\xfc\xfa\x11\xc8\x92\x4c\xba\xb4\x17\xea\xb0\x9f\x5f\x58\x8b\x30\x23\xc4\x31\x5f\x85\x7a\x54\xe7\xb1\x94\xd5\x91\xa1\xaa\x73\xb0\x40\x7f\x61\x13\xbb\x46\x03\xcd\x9d\xe1\x23\xb6\x6c\x57\x5e\xc1\x60\x9d\xb8\x9f\x01\xcd\x13\x05\xad\x26\x5a\x38\x00\xbb\xe6\xa1\x52\x49\x62\xe7\xd5\x2b\xa2\xb0\xef\x12\xb6\xb1\xfb\xa6\xe1\x5a\xcd\x37\xbe\xd5\x17\x59\x6b\x2c\x97\xd0\x56\xfd\x4c\x7f\x42\xe7\x06\x9e\x5b\xd6\x36\x1b\x6f\x88\x6c\xd2\x1f\x4b\x92\x33\xd1\x36\x5c\x3c\xb3\xd3\x7c\x1a\x6c\x13\xcf\x74\xfc\x1a\x02\x88\xd2\xfc\xe1\x72\xc0\x97\x49\x76\x44\x4d\xdd\xb9\x88\x3d\x91\x9e\x3a\x02\x39\x31\x18\xc9\x18\xb8\x3c\xa6\x99\xe1\x46\x91\x74\x10\xf7\x8a\x2c\x96\xc9\xb8\x16\xf5\xee\x03\x68\xd0\xda\x4f\x82\x4d\xbb\xb3\x08\x8f\xe1\x0d\x32\xcc\xb1\x7b\x17\x16\x76\x48\x70\x36\x1a\xad\xfb\xb0\x49\x66\xba\xf1\x28\x51\x4b\x5f\xef\xb1\xfd\x3a\x32\xb9\x2b\xda\xbe\x5a\x54\xbb\x22\x90\xca\x33\x97\x62\x90\x45\xdf\x17\x8b\x35\x6f\x6b\xcf\x74\xfd\x2e\x77\xe8\xd4\x24\xc6\xf8\x88\xe1\x40\x86\x25\x88\xdf\x27\x4a\x87\x18\x06\xbe\x74\x48\xe4\x2a\x7e\xcf\x44\xa8\x73\xf2\x81\x17\xee\x34\x93\x4d\x0e\x05\xed\x09\xf1\xb7\x52\x21\x88\x53\xd4\xb9\xad\x9b\x86\xb3\x55\x32\xe0\xfe\xa6\xc9\x83\xc8\x89\x08\x8c\x7c\x82\x15\x39\x17\xb6\x9b\xa7\x30\xcb\x6b\xf9\xd9\xa0\x5a\x84\x4c\xf8\x01\x1e\xab\xc3\x06\xb5\x85\x1f\x72\xfd\xd2\xfc\x44\x1a\x1e\x4a\xc1\x36\xf2\x86\x95\x84\xfb\x0d\x56\x04\xe6\x76\xf9\x71\x25\x86\x62\x03\x42\x18\x3c\xe6\xb6\x62\x5b\xee\x10\x91\x20\x79\xea\xfc\xc3\xb9\x97\xe5\xa2\xe0\xb0\x2e\xe8\x33\x8f\x75\xcd\x61\xf9\xe2\xe8\x09\x84\xc3\xe9\x58\xfd\xec\x5f\xef\xe3\x0f\xf2\x8a\x85\xea\x4d\xd3\x33\x98\xa9\xcb\xb2\xbf\xc1\x3d\x1a\x78\xe3\xf0\xe4\x8a\x75\xa2\xfb\xce\x73\x11\x44\x3d\xbf\x46\x1b\x5f\x33\x2b\xb1\x54\x4a\xfa\x27\xfc\x10\x7a\xaa\x53\x39\x10\x34\x26\xd0\x00\xd4\xc8\x16\xf5\x06\x38\x4c\x23\xde\x96\x2c\x34\x73\x43\x4b\x93\x7d\x85\xae\x7f\xcf\x3a\x0b\x23\xdc\xf8\x26\x84\x65\x6f\x1b\x4d\xff\x36\xa4\x6b\xfd\xa8\x49\xb9\x0c\x6b\x46\xd2\xfe\xb5\xea\xa9\xf4\xbf\x7d\x30\x1c\xa5\xad\x32\xf7\xe4\x1a\xf8\x19\x7f\x26\x50\x43\x91\x3f\xe6\x89\x65\x01\x08\x55\x9a\x87\xef\x52\xf3\xf5\x50\x27\x54\x91\xa9\x09\x3a\x76\xc9\x50\x63\xb2\x5f\x49\xea\xf5\xae\x6c\x99\x4c\xe9\x6c\x06\x9b\xea\x2c\x99\x1a\xb0\xdf\x6d\x6c\x89\xb1\x26\xe4\x5c\x8c\xaa\x0d\x74\x49\x61\x52\xb2\x24\x55\x70\x30\x3f\xda\x1f\x66\x49\xa7\x5f\xc1\x66\x36\x5d\x97\xc2\x2e\xf7\xf1\xf2\x08\xcf\x22\x15\x82\x5e\xcf\x51\x5b\xeb\x7b\xd5\xcd\xe1\x3f\x27\xf7\x0c\x2e\xd4\x29\x8e\xc8\x51\x9f\x87\x74\x6a\x4e\x6e\x6f\x48\x78\xa9\x95\x04\xeb\x0a\x11\x2d\xaf\xe8\xf7\x1a\xa1\x74\x18\xe0\xaa\xe4\x20\x18\xe0\x30\x03\x89\x28\xea\x39\x4c\x44\x18\x6a\xa2\x89\x4e\x86\xa1\x6a\x69\x9d\x90\x41\x80\x9c\x50\x15\xb4\xfe\x9f\x57\x9b\x38\x2b\x4c\xd5\x17\x48\x80\xdc\x6e\xe2\x1d\x6f\xe3\xee\x0e\xb7\x35\x8c\x4c\x29\xf8\xb0\x2d\x6a\x31\xfe\x56\x7c\xef\x89\xe5\x78\xb9\x45\x0d\x57\xb4\x7e\x3d\x51\xb3\xd4\x36\x20\x29\x40\x9e\xa9\x9d\x0d\x84\xdd\xd7\xba\x01\x51\x0a\xda\x4d\x46\xf1\xdf\x55\x13\xfd\xa8\x0f\x48\xaa\x88\x1c\x2d\xff\xe9\x50\x3d\xc9\xaa\x85\xa5\x48\xa6\xed\xf1\x9f\x1e\x2e\x9f\xc8\x26\x86\x4b\xda\xc8\x7e\xc7\x89\x32\x70\x7f\x78\x33\x15\xad\x3a\xc4\x1c\x60\x94\xe1\x83\x82\x81\xe8\x7b\xf6\x7b\xe6\xb4\x8e\xee\x2c\x8b\xba\x01\x97\x3d\xa1\xc8\x70\xb9\xd3\xca\x8c\x21\xc0\x32\xaa\x88\x1e\x76\x49\xdb\xcd\x9c\xb6\xc6\x5c\x25\x4d\x3a\x4e\x78\xa3\xf0\xaf\x61\x0f\x4c\xc2\x1a\xd6\x1c\xc4\x8d\x74\x40\xc4\x74\x5c\xf2\x11\x22\xb7\xe9\x85\x44\x3b\x45\x2b\xa1\x83\x5e\x85\x52\xd7\x0b\x65\x06\x92\xea\x07\x14\x7e\x72\x72\x8c\xe3\xc4\xed\x6b\x9f\x31\x61\x4e\xf6\xb9\x71\xcc\xcf\x69\xc0\xac\xa6\xcc\x1f\x5b\xac\xc0\x27\xe9\x20\x4b\xb9\x16\xc0\x7f\x7d\x46\x88\x94\xa4\x55\xcd\x65\xe5\xb5\x46\x54\xae\x29\x31\x72\xcf\x51\xb8\xbc\xfc\xe8\x96\xfe\x3d\xdd\x6e\x9f\x2e\x97\x8f\x26\x46\xed\x78\xb6\x30\xec\x81\xa3\xa2\x2a\x47\x06\x54\xd2\xd5\xe4\x58\xe0\xe9\xb9\x63\x80\x64\x9d\xf8\x82\x44\xc1\xe7\x34\x33\x1d\xcb\x38\x73\x82\xbb\x71\xf5\x3a\xa6\xff\x0d\x51\xbb\xe8\xfe\xc4\x1b\x5a\x3c\x3b\xfd\x58\x06\xe2\x83\xcb\x1a\xdc\xdd\xbf\xb3\x83\xc1\x1e\xa4\xec\x1c\xd1\xee\xed\x81\x49\x91\x88\xa1\x07\xa7\xc4\xb1\xed\x71\x5a\x03\xeb\x3e\x01\x38\xcd\xb8\xc7\xd6\xff\x3b\x99\xf7\xa9\xe6\xa7\xd0\xe0\x1e\xf6\x3d\xbb\xa9\x3e\x56\x54\xe0\x2f\xf4\x07\xdf\x33\x8d\xb6\x90\xc7\xe8\x0a\xd4\x2e\x67\x7f\x95\xe4\xdb\x58\x39\x07\x16\x06\xa2\xd3\x50\xc5\xe6\x12\xa6\x53\xdc\xdd\xf6\x1b\x36\x12\x7d\x94\xd3\xb4\x59\xec\x21\xd7\xdf\xea\xfd\xa4\xff\xc2\x65\xa1\x86\x98\xba\xb5\xc6\x77\x04\xcb\x5c\xf5\x8a\x54\x33\x69\x50\x71\x1c\x37\x17\xe7\x1a\x4a\x5d\x37\x79\x8f\x78\xc3\x94\x8e\xd3\x53\xc0\x7d\xb0\x75\x24\x28\x9b\xac\xe9\xca\x24\x47\x78\xb9\x6e\xe2\x6b\x7d\xab\xd1\xf4\x24\xdf\x7c\x26\x54\xe8\x8f\x46\x8c\xbf\x20\x82\x68\xc1\xfc\x31\x3b\xf4\xb1\xf3\x35\xd6\x5b\x35\x71\x91\x40\xe8\x38\x10\x7c\x4c\x5b\x62\x61\xd8\xb5\x01\x77\x59\x6d\x80\x91\x82\xa9\x73\x97\x33\x42\x9b\x46\x01\xe5\x88\x18\x03\x1c\x98\xce\x29\x73\x0d\xea\xa2\xa2\x6b\x32\x9e\x98\x37\x1c\x8f\x78\xb9\x25\x20\xea\x0e\x37\x0d\xc5\xf7\x3e\x16\xe5\xfc\x1b\xe3\x12\xbc\x27\x1c\x96\x9d\xfb\x26\x8c\x29\x4b\x5d\xca\x97\x86\x30\x3a\xbc\xdf\xcb\xb6\x47\xcc\x9c\xb0\x42\x73\x3d\x43\xe3\x49\x0c\x44\x42\x55\x03\x77\xee\xc4\x95\xbb\x73\x75\x74\xba\xcc\x9d\x9b\x44\xbb\xb8\x64\x6e\xc7\xfa\x93\x63\x79\x4d\x05\x5a\xb7\xb4\x99\x2c\x16\xee\x3c\xca\x57\xcc\x72\xc1\xc7\x94\xa1\x76\xbf\x0f\x80\xcd\xc4\x1f\x4c\x83\x6c\x1c\x02\x92\x18\xb4\x8a\x49\x87\x80\x10\xf1\x5c\x5c\x8a\x0e\x81\x90\x28\x57\x5e\xe1\x8a\x2d\x9b\xa4\xf5\x3b\x02\xaf\x9b\xe6\xa3\x84\x9e\xbb\xc4\x67\xcc\x59\x71\xcc\x69\xc9\xe4\xe8\xca\xaf\xd2\x5c\x92\xee\xaa\x85\x0f\x35\xff\x8c\x13\x26\x26\x4f\x2f\x33\xbe\xb3\x38\x82\xe7\xc9\x70\xf4\x02\x9a\xab\x47\xaf\xc4\x8d\x2b\xd2\xcb\x52\xcc\x32\x7d\xde\x55\xc3\xa9\x2b\x86\x69\x14\x83\x59\xac\xbd\x58\x5e\xf3\xc9\xb2\x4c\xc2\xf1\x6b\xda\x44\x67\x18\xa9\x82\x43\xb2\xc4\xde\x04\xb1\xec\x6e\xbb\xbe\xdc\xba\xf1\xb1\x2e\x95\xbd\x95\x38\x70\xb0\x92\x53\x3e\x1b\x39\x56\x22\x41\xa0\x50\x0a\x5d\x7e\x1a\x43\x5b\xda\x00\x3c\x01\xd5\x90\xca\x3f\x1b\x28\xb6\x0c\x87\x82\x39\x0c\x6e\x03\xf8\x35\x89\xea\x79\xc9\x33\x24\x8e\x1f\x62\x52\x61\xc7\x15\x04\x5d\xa7\xc9\xbb\x4d\xe3\x46\x11\xb3\xe8\xe6\x50\xce\xa5\xc1\xb4\x88\xba\x13\x1e\x60\x65\x7b\x60\x62\x00\x33\x57\x98\xc1\x0c\x6d\xd8\x51\xfa\xa6\x84\xbb\xf4\x1d\x75\x85\xc1\x4d\xd5\x15\xe6\xef\x40\x05\x9a\x80\x39\x09\xbc\x57\x98\x49\x18\x1e\xf3\x0b\xad\x91\x67\xe3\x05\x60\xc6\xe5\xa5\xed\xae\xbf\x95\xf8\xcf\xd3\x15\xbc\x2d\xb6\xb8\x0b\xc3\x50\xdf\xdd\x59\xc7\xcc\xe2\xda\x10\x99\x96\xaf\xbb\xc1\x11\x0f\x27\x96\x39\x76\x3f\xef\x1a\xab\x8f\xc9\xca\x52\x22\x8b\x33\xde\x70\x2a\xd4\xfb\x1f\xec\x15\xf7\xcf\xfc\x1f\xbc\x7b\xe8\x4f\x45\xa4\xe4\xd3\x3f\x4d\xcd\x10\x22\xd6\xf2\xce\x3c\x1a\xf9\xf0\x8a\xfc\xc2\x93\x80\x62\x0e\x65\x20\x84\x0d\x30\xc6\x4b\x4c\x9d\x5d\x0c\xa0\x9d\xae\x57\xbf\x99\xcd\x69\x2b\x3a\x9d\x52\x4a\xbc\xe4\xfd\xdf\xce\xff\x2e\xa6\xd1\xe7\xf8\x95\xff\x0f\x66\x03\x03\x08\x1e\xf2\x40\x24\x12\x56\x1f\x74\xe2\x24\xa7\x11\x15\xe4\x9a\xae\xe8\xc7\x8b\x10\xe5\xb0\x4b\x9d\x8f\xd2\xc3\x27\x86\x2a\x94\x7b\xbe\x45\x2d\x57\x1e\xe5\x76\xb7\x23\xc7\xac\x63\xe9\x83\xb6\xa5\xcf\x2f\x38\x66\xfc\x6a\xbf\x21\x69\xc0\xf9\x9f\x0d\x0b\x0c\x97\xc5\xea\x51\xbe\x11\xfe\x4b\x3c\x39\x1c\x9c\x0f\x75\x39\xba\x16\x3c\xd1\x34\x4a\x53\xcb\x11\x73\xe5\xb6\xd4\xb0\x15\x39\xc0\x3b\x9c\xe0\x4f\x35\xb4\x44\xea\xd7\x9e\x34\xec\x66\x43\xfb\x00\xd5\xd3\x54\x2f\xc4\x22\x14\xfa\x20\xee\xed\x13\x3d\x88\xd6\x2d\x73\x70\x57\xb5\xd4\xe0\x08\x15\x68\xb9\x85\x31\xf0\x49\x8c\xa2\x8c\x40\x59\xec\x3b\xe9\x12\x6c\xcf\xe9\x6d\x65\xbf\x1d\x24\x02\x06\x7b\x11\xe9\xe7\x3b\x8b\xa1\x31\x06\x0b\x1a\x91\x18\x38\x23\x9d\x14\x9e\x0b\xc5\x03\x6c\x08\x5d\xa4\x34\x68\x0b\x33\xf4\x21\x46\xbf\x46\x02\x04\x4f\x80\x5b\x21\xdd\x44\xf7\x06\xcb\xc4\x38\x21\x61\xf5\x81\x78\xc2\xd9\x57\x57\x0e\x87\x71\xfd\x88\xaf\x13\x5d\x57\xcb\x3d\xd1\x20\xee\xcc\x5d\xf5\xfe\x39\xad\x97\xe6\x11\x2e\x8a\x07\xeb\x1e\x0c\x08\x3b\x3c\xbc\xd5\x82\xd8\x27\x57\x31\xa4\xcf\xe4\x88\x98\xf8\x04\x33\x8f\xee\x24\x84\xe6\xc9\x63\x70\x0e\x2f\x04\x89\x84\x03\xfc\x90\x1b\x8a\x86\xa5\xdf\x8d\x8e\x65\xb5\xcb\xfc\xdc\x72\x9d\x38\x08\x59\xbd\x37\x09\x66\x0b\xfa\x8e\x0e\x7a\x89\x0e\x84\x42\x38\x7c\x59\x43\x18\x15\x3b\x75\xa3\x37\x24\xd8\x3b\x6d\x92\x81\x9d\xac\x7f\x62\x7f\x79\x1e\x99\x27\xce\x1e\x5f\x40\x6c\x04\x6e\x98\xc9\xe9\xc3\x31\xb7\x31\x92\xe4\xde\x7b\xd2\x64\x1d\x06\x3a\x61\x33\x60\x28\xc3\x7b\xfa\x91\x60\x0e\x22\x76\xa0\x6b\x53\xf4\xe8\xc0\x44\xd9\x00\x92\xf0\x3a\x7f\x64\xb6\x0e\x4f\x54\x24\x44\xf7\x5e\x9b\x39\x5c\xdf\x9f\x0f\x12\x36\x77\xb9\xc5\x8b\x2c\x4c\x2b\xf5\xed\x1f\x53\x08\xfb\x21\x8a\xbf\x38\x9e\x22\x62\xcf\x59\x9a\xf2\x23\x95\xc8\x8f\x82\xf9\x5f\xe2\x8c\xb8\x7b\x50\xde\x36\xdb\x1d\xee\x2b\x7c\x61\x65\x02\x8e\xed\x96\x86\x71\x65\x10\xb7\xf9\xfc\xdc\xf1\x8b\x0b\x6c\x23\xbf\x12\xe5\x8a\xa0\xc5\xb0\xd2\x83\x98\x72\x8f\xd0\x7f\x88\x35\x9f\xae\xcc\x44\xa3\x7b\x82\x43\x8c\x77\xbf\x59\xa2\xf1\xa4\x16\xac\xd1\x01\x86\x05\xfd\xb9\xa3\xcb\xb8\x3f\x67\x04\x77\xa2\xaa\xc9\x13\x21\xc6\x41\x0a\x5d\xb3\x02\xed\xe1\xee\xa5\x57\xaf\xf2\x89\x2b\x57\x4e\x60\xe0\x90\xa1\x89\xc5\x9d\xef\x32\xf3\x78\x12\xcb\xfb\xc1\x02\x83\x3b\xc4\x49\x5d\xe9\x1d\xe2\x31\xbe\x0c\x1a\xb6\x8b\xc4\x63\x09\xb0\x69\xbd\x81\xd9\x77\x6c\x62\x48\x93\xc5\x12\x1b\x80\x04\xe0\x67\x7c\x8c\x37\x37\xd6\x12\x1a\xdd\xcb\xc1\xf1\x22\xe6\xf0\x78\x1c\xe0\xec\x1d\x17\x8f\xad\x53\xa2\x12\x3b\x34\x73\x27\x93\xb3\xa6\x37\x03\xdd\xbc\x89\xab\xaa\x84\x87\x4f\x9d\x02\xd5\x77\x15\xe7\xe3\xcc\x95\x40\x54\xc0\x78\x07\x82\x8d\x5a\x97\xa3\x89\x4f\x82\x04\xa6\xd7\x20\xd4\x99\x56\x2e\x81\x83\x91\xf4\x65\x67\x89\xf4\xc2\x6c\x3c\x22\xca\x69\xdc\x69\x7d\xb2\x6f\x18\xe5\x4b\x73\x6f\xd6\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\xdb\x3d\x4d\x0e\xb4\x74\x90\xf8\xf5\x1d\xa0\x77\xe7\x17\x30\xe2\xd2\xa2\x11\xcb\xb2\xe2\x13\x3e\xff\x0b\x89\x88\x78\x98\x81\x9f\xe3\x51\xf2\xb9\x58\x70\x64\x88\xaa\xd6\xb0\xf5\x37\xa5\x5d\xd9\xad\x97\x7a\xde\xf9\xb8\x21\x26\xa0\x8b\x31\x37\xc7\x1b\x39\x70\x76\xda\x95\x8b\xea\x8a\xb8\xda\x37\xb4\x56\xb5\x44\x81\x37\xff\x93\x3b\x6f\xa6\x85\x91\xc0\x7d\x9e\x6d\xbe\xfe\x90\x96\x4c\xbf\x3f\xf4\x24\x1c\x4d\xcf\x10\x74\xea\x8e\xac\xcd\xf0\x5d\x7a\x5c\x9c\x0a\x72\xf6\x57\x7c\xc8\xe4\xea\xde\xfd\x39\xfb\x60\xd4\x07\xff\x6c\x80\x34\xfd\xb9\x94\x5d\xab\x9a\xe1\x9d\x89\xd0\x17\x8e\x58\xd9\xe1\xd2\x28\x7e\xdf\x03\x6e\x53\x70\x2e\xd1\xa5\xe1\x91\xc7\x17\x06\x14\x2d\x42\xad\xf6\x68\x05\x58\x36\x9b\xa3\x6e\xac\x4f\x99\x6c\x23\x0e\x11\x5d\xbb\x19\x8e\x53\x70\x5f\x8c\xb1\xd2\x1c\x09\x8d\xfb\x12\x8f\x21\x6d\x8b\x5b\x79\x19\x81\x6d\xa6\x1d\x9d\x9e\xf5\xb2\xb3\x67\xfe\xf8\xbd\xd0\x75\x73\xc3\xea\x58\xbb\xdb\x35\x5a\x92\x71\xdf\xa2\x35\xd1\x4c\x88\x13\x20\xdd\xae\x91\xeb\x81\xef\xf5\x73\x0c\x24\x46\x12\x1e\xd5\x2b\xf9\x1a\x83\xec\x34\x94\x6f\x08\xea\x3b\x06\xb9\x6c\x96\xbc\x66\xcf\xe8\xcf\x58\x67\x17\xde\x26\x34\xc5\x1d\xf6\xf2\x8e\x43\xe3\x89\xcf\x2b\x67\x10\x76\x96\x9b\x2b\x89\x0b\xc8\x02\x26\xac\x3c\x62\xde\xe7\x0b\xb6\xf2\x3a\x08\x5f\x08\x45\x05\x3a\x4f\x88\x68\x80\x38\xe1\xde\x76\xaf\x2f\x10\xf9\x60\x3f\xc3\x3e\xc1\x8f\xca\xfa\xf5\x5a\x84\x03\xac\x26\x6c\x5a\x12\x4a\xfe\x88\x85\x6b\x36\x06\x99\x63\xa2\x29\xa4\x76\x12\xc6\x9d\xc3\x2c\x11\x0d\x40\xac\x4d\x03\x11\xe9\x4a\xee\x97\xb8\xbb\xae\x91\xa7\xe6\x38\x2b\x3c\x61\xe3\x1e\xe9\xdd\x64\x9e\x20\xb9\x95\x3c\x82\x88\x6e\x93\x00\xb2\x28\x20\x43\x1e\x49\xc1\xa3\xf6\xf2\x55\x42\x3e\x1c\x01\x4e\x1e\x8d\x44\x47\x35\x3c\xbb\x28\x59\x98\xb0\x9a\x4e\xc5\xb9\x48\xf0\x5c\xb1\xde\xc9\x11\x43\x7e\xe5\x89\xce\x5f\x51\x49\x90\xa0\x5b\xb4\x4b\x8b\x40\xaa\x84\x99\xef\x57\x82\x00\xfb\xe0\x54\xc5\xa6\x6b\xac\x0a\x3a\x48\x08\xe4\x23\x5f\xd2\xa0\xf5\x86\xec\xa0\xca\x2f\x16\xe3\xa2\x6d\x86\x69\xf1\x7e\xc7\xe4\x59\x68\xbd\xb5\x83\x21\x3f\xfe\xf7\xf3\x77\x6f\x8f\xf2\x4f\x4f\x6f\x6e\x6e\x9e\x72\xf1\xa7\xfb\x76\xc3\x71\x5f\x96\x1c\xe1\xf4\xff\x3f\x7d\x73\x94\x97\xfd\xe2\xc9\x2c\x3f\x15\xaa\x1d\x89\xa1\x3a\x24\xc0\xd9\x08\xd6\x7d\x22\x10\x7f\x9c\x9a\xeb\x8e\x51\x2d\xa8\x0f\x85\xed\x99\x3b\x5e\x3d\x73\x45\xd7\xc5\x14\x97\x74\xc7\x28\x2c\xda\x12\x9e\xdc\xf8\x70\x19\xc4\x35\x7c\x9c\x8a\x85\x37\x04\xa9\xa8\x1d\xed\xc6\xeb\x85\x3e\x6c\x37\x00\x31\xe7\xc5\x13\xb8\x2d\x46\x05\x2d\x2f\x5c\x38\x85\x59\xe3\x4a\x54\x8a\xad\x64\xc9\x01\x73\x59\xda\x42\x94\xcb\x9f\x86\x85\x71\x67\x0b\xef\x32\xfd\x90\xff\x3b\x1b\x88\x79\xa1\x04\xb7\x38\xcb\x70\x0b\xc0\xb3\x61\x61\x44\xdc\x77\xd2\x0f\x0d\x40\xde\x11\x30\xe9\x2b\xe6\x05\x09\x6c\x54\x89\x2a\xc3\xd8\x05\x9c\x88\x70\x50\x8e\x01\xd7\xa4\xba\x71\x91\xd4\x3c\x3f\x9d\x6d\xf3\x22\xd7\xb5\x8e\xf4\x22\x97\xd9\xae\xc7\xf3\x90\xb8\x7f\x24\x8e\x1f\x77\x80\x86\xab\xc1\xde\x69\x43\xdc\x80\x8f\xc4\xb9\x79\x79\x94\x9b\x63\xf0\x91\x1a\xe1\x8e\xec\xea\x0a\x7d\xed\xeb\xf8\x2d\x4e\x99\x2a\x10\xd9\x4f\x38\x01\xf0\x4f\x8e\xa7\x74\x4b\x23\xa1\x59\xac\xfe\x3e\x31\x29\x38\x4c\xe5\xca\xdd\xe4\x22\x3b\x0a\x0f\x50\x55\xc2\x8d\xc5\x77\x21\xad\xb9\x3e\xcc\x51\x0e\x33\xdc\x13\x88\x65\x8f\xe0\x70\x53\xd4\x44\xb4\x55\x01\xef\xe2\xfe\x37\x0a\xad\xe7\xa7\xb0\xa2\x12\x58\x23\xa1\x7f\x20\x7e\xa9\xc4\x33\x7d\x9c\xcf\x46\xd4\x35\xf2\xae\x4a\x5d\x47\xfc\x99\x02\x0e\xda\x18\xb1\x45\xba\x14\x63\x71\x2a\xb6\x70\x88\x03\x94\x2b\x13\xc6\x99\x58\x80\x5a\x44\x27\x7a\x1e\xd2\x52\x7e\xda\xe8\x0c\x4e\x8e\x94\xc8\xf0\x84\x08\x25\xf0\x67\x02\x73\xe6\xa9\xd3\x35\x83\xc0\xe5\x9a\x2d\x25\x76\xdb\x76\x14\x50\xcc\xf3\x2a\x52\xab\x85\x87\x91\x30\x36\x83\xcc\xe1\x5b\xa4\x43\xda\x44\xcc\xb9\x3c\x56\x7d\x22\x5f\x7e\xb6\x76\x9b\xe6\xd6\x62\xae\x3d\xc7\x2f\x8d\x23\xeb\x47\x16\xc1\x74\x50\x11\x72\xaa\xae\xc8\x4c\x03\x0a\xb5\x43\xa6\x64\x25\xfc\x53\x79\x7b\x0f\x4b\xca\x5a\x6d\xaa\xd3\x6e\x43\x23\x48\x2b\xac\x0b\x69\x80\x1a\x79\xd5\x4d\x43\x97\xb9\xa9\xc1\x7d\x5b\x3f\x80\xbf\xba\xf7\x54\x54\x8a\xaa\x59\x11\x14\xba\xe1\xf5\x16\x89\x73\xd0\xd4\x28\xc6\xb1\xc2\x02\xd4\x30\xa6\x59\x1c\xe9\xc1\x98\x66\xbe\xa8\x0f\x6c\xe6\x8a\xe2\xe4\x0f\x93\x30\x69\x0d\x4f\x96\x65\x1c\xb6\x2c\x0e\xf5\x33\x22\x97\x4d\xaf\xdc\x50\x74\xba\x77\xa9\xef\x72\x86\x59\xfa\xc1\x7d\x46\x0c\xb3\x81\x72\xe1\x73\xa4\xa8\xa9\xbe\xc4\x49\x71\xb3\x7b\x9f\x6b\xcc\xb2\xba\xba\x9a\x5d\xb6\x24\x44\x70\xa0\x30\xbc\x58\xc9\x67\x13\xff\xce\xcf\xf1\x5b\x40\xd8\x25\x1a\x58\x21\x1f\x92\xa8\xb7\x3e\x7e\x50\xb7\x5e\x49\x84\x3f\xea\xf0\x05\xbf\xe7\x94\x23\xbe\xa9\x6f\x1b\x44\x7c\x95\x9c\x99\x14\xc1\x33\x69\xfc\x85\x10\x67\xe1\x99\x34\x14\x3a\xe7\x14\x07\xd6\xed\x36\xc4\x7f\xeb\x73\x91\xe7\xfc\x03\x57\x87\x1d\xc4\xbe\x26\x49\xbc\x5c\x1a\xcc\x2f\xf2\xd3\x43\x71\x95\xe1\x7a\x88\xa9\x60\xf9\xd6\x93\x78\x01\x8b\xf0\x10\x95\xb3\xc0\x50\x83\x23\x30\x42\xab\x0a\xd2\x41\x04\xf1\x21\x91\x08\xc2\xd6\x24\x42\xe8\x44\x83\x60\x3d\x7b\xfd\x56\x7e\xe2\xfa\xb3\x06\x3e\xc6\xfd\x67\x76\x46\x96\x2c\x0d\x77\xbc\xdb\x21\xa0\xa9\x5c\x3f\x26\x38\xce\xcb\x5d\xb2\xb9\x6d\x4a\x1c\xc6\x70\x03\x5a\xea\xe0\x9b\xd2\x5b\xa2\x05\xc1\xd7\xf9\x9c\x55\xaf\xfa\xba\x6b\x69\x4f\x56\xf0\x2d\xe9\xe8\xfe\x49\x35\x70\x11\x85\xb2\x09\x31\x2d\x05\x57\x9b\xd9\xa5\xef\xd9\xd4\xe5\x6f\xcb\x93\x3b\xfb\xa2\x2d\x97\x5d\xaa\x20\x01\x62\xd9\x16\x57\xf0\x0d\xe4\xbf\x21\x95\x06\x16\x8b\x9d\xb5\xe5\xd3\x61\x31\x5a\x3c\x41\xa9\x73\x7c\x84\x74\xf5\xed\xe3\x3f\x21\xad\x58\x8b\x5f\x49\x5c\x99\xb8\x62\xe6\x1b\x4e\xfb\xeb\x61\x97\x77\x15\x9b\x03\x74\x23\x0e\x1a\xc4\x2e\x88\xcf\x2a\x61\x8f\xe0\x16\xbf\x1f\xab\x77\x1a\x44\xd4\xc6\x6e\x9d\x87\xf9\xe1\x40\x17\xbd\x44\x64\xd3\x97\x77\x67\x49\xbf\x93\xd2\xc2\xbe\x94\x86\x8d\x78\xbe\x99\x65\x0c\xc4\x33\x92\x40\xba\xec\x0b\xd3\xd2\x44\x70\xf0\x70\xe6\x47\xc3\x26\xaf\xb6\x54\xff\xb5\xbc\x04\x27\xd5\x13\x6f\x19\x22\xc6\x11\x9b\x59\x4b\xd0\x2a\xcb\x83\x7e\xca\xc2\xe1\x27\x65\xe2\xbb\x4f\x66\x14\x8e\xd1\x12\x28\x1f\x7c\xdf\xc2\x07\x61\x60\x26\x96\x23\x68\xca\xd8\x5d\x07\x92\x13\xc7\x52\xc7\xa7\x8c\xe5\xa4\xfe\x42\x0e\x2d\x74\x3b\x9f\xc9\x57\xc8\x61\xf9\x48\x98\xfc\x37\xf2\xc5\xda\xcf\x31\x36\x8d\x63\x1a\x52\xde\xd3\xe1\x5a\x3b\xf8\x30\x01\x7f\x29\x1f\xb1\x8d\xa5\x21\xde\x25\x17\xff\xb7\xa2\x4f\x30\xc5\x14\xa6\xf1\x51\xe5\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\x42\x54\xb3\x2e\x29\xd8\x9c\x08\x65\xee\x38\xeb\x46\xad\x79\xc3\x8d\x34\x71\xcf\xe1\x36\xdc\x03\xa9\x3f\x9e\xab\x47\x59\x10\xa6\xa0\xba\x47\x46\x2c\xc8\xa8\x2e\xf5\x5f\x76\xfb\xca\xf0\x20\x3c\xa4\xa6\xfd\xd7\xdb\x5a\x38\x98\xed\x3b\xcb\x7e\x6b\xda\xd5\x87\xf8\x66\x4f\xd0\xe3\x27\xaa\x78\x68\x73\x18\x26\xc4\xd8\x3f\x00\x18\xe3\xee\xc7\x1a\x0d\x81\x5f\xf2\x36\x4d\x35\xf0\x0c\x20\xba\x34\x79\xa7\x0d\x7e\xa9\x16\x82\x6e\x66\x71\x57\xe4\xb9\x10\x75\x18\xf5\xcd\x49\x38\x94\xe8\x86\xf8\x8b\xde\xbf\x56\x17\x68\x0e\xd9\xc1\x1f\xfc\xa2\x4b\xc5\xa6\x37\x3a\x76\xc4\x9d\xe5\x35\x12\x70\x0e\xb1\x47\x0b\x3f\x26\x23\x5a\x51\xfa\x9b\xe1\xc5\x0b\x35\x1d\x70\xaa\x7e\x69\xfa\xe0\x55\x8d\xe4\x15\x0c\x17\x27\x06\xef\xd3\x24\x5e\xae\x5c\x39\x66\x65\xc2\xff\x3d\x3c\x79\xa4\x9d\x90\x29\x44\xea\x5d\xd0\x49\x7c\x37\xa6\x0e\x72\x73\x82\xd7\xbf\x10\x5f\x62\xbd\x74\xaf\x48\x85\x37\x73\xea\xe4\x8e\x69\x37\x8b\xcd\x38\x5a\xb3\x16\xe7\xf8\x58\x0c\x6f\xa0\xb3\xdf\xed\x4f\x02\x9f\xc4\x56\x52\x05\x4b\x21\xf1\x19\x25\x39\xdf\x90\xa4\xbb\x49\x34\x2e\xa8\x88\x25\x84\x9f\x0e\xbc\xfa\x31\x7e\x23\xea\xcb\x23\x6b\x8d\xeb\xb8\x3b\xb6\x96\xf3\x4f\x1c\xbb\x25\xde\xe1\xa9\x3a\xfd\xda\x84\x57\x2b\x0f\x9e\x9d\x08\x59\x53\xef\x4f\xfc\x11\x07\xce\x14\xd4\x91\xa5\x64\x0a\x42\x4d\x9f\x6b\x52\x56\xbf\x50\xc2\xd4\x7f\xcd\x2d\x34\x7d\x55\x69\xd8\xeb\xd1\x13\x09\x49\xa7\xbf\xec\xa9\x84\x83\x2e\x18\x09\xad\x18\x2a\x29\x46\xf1\x49\x31\xc0\x3b\x8b\xa4\xd1\x4a\x7d\x87\x83\x62\xdd\xb9\x40\xa8\xd5\x54\xe2\x94\x8a\x71\xed\xfe\x60\xa5\x07\x4c\xe7\x77\x45\x2d\x1d\xf6\x92\x69\x4c\x08\xbd\xe0\x3b\x79\x67\x09\xcf\x97\x34\x03\x33\xec\x1f\x8f\x64\x3a\x6d\x11\x65\x25\xc6\x8d\x69\x9f\xc1\xc7\xd8\xfc\x45\x8d\x18\x0b\xa4\x36\x5f\x22\xb1\x46\x42\x1b\x67\x0e\x1c\xa8\x4c\xee\xe0\x15\x2f\xa5\xda\xb3\xf8\x08\xd4\x3c\x89\x5e\x7a\x1a\x9f\x99\x8a\x81\x4c\xbf\x0b\xc5\xd4\x39\xd2\x42\x9f\x0f\xd2\x23\xa5\xc4\x2d\x8a\x9d\x84\x12\x8d\x40\xf2\x1b\x5c\xe2\x64\xce\xb0\x7c\xda\x86\xbe\x9d\xdc\x36\x9b\x32\x74\x34\x7f\xdf\xb0\x7b\xab\x81\xa4\x81\x07\xd2\x82\xa1\x4c\x48\x57\xc1\xdf\x42\x49\x86\x74\x79\x35\x0b\xd1\x45\x5c\xaa\x9e\x96\x6e\xad\x84\xb3\xd6\xda\x21\xa8\x7c\x37\x84\x96\xb7\x98\xf5\x5c\x7d\xcb\xef\x3a\xe1\x50\x9d\x21\xb2\x81\xbc\x4a\xa5\x29\x69\xa3\x92\xc6\x3c\x8e\x06\xd0\xce\xc5\xfd\x5e\x43\x2c\x8f\xf3\x07\x21\x0c\x71\xa6\x84\xe0\x85\xf6\x2c\x1b\xb3\xe8\x1a\x3f\xa3\x16\xb3\x71\x1a\xd3\x4f\x6a\x05\x8b\x1f\x9b\x95\x3b\x26\x49\xbb\x1e\xe2\x73\x1a\xc6\xfd\x81\x61\x73\x47\xa6\xc2\x85\x66\x4d\x75\xcb\xf2\xf0\x80\xb4\x22\xaf\xdd\x87\x7e\xc8\x5b\xa1\x49\x3f\x3c\xc4\xe7\xf4\x83\x5b\xc1\x5d\x6d\x11\xf9\xee\xe8\x4f\xb1\xb4\x97\x45\x12\x97\xaa\x61\x17\x63\x70\xbd\x0b\x77\x92\xc3\x2d\x6d\x39\xe0\x4c\xd8\xe6\x33\x3e\x52\x25\x47\xbc\x88\x26\x98\x07\x71\x11\x9d\x8c\x3d\x7e\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\xa2\x6e\x0b\xe7\xe7\x0f\x15\xb0\x7e\xb6\x92\x4b\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\x87\x1f\x03\xc2\x1c\x14\x93\x66\x7e\xab\x8f\x11\x24\xa2\xdd\xaa\x45\xbc\x00\x5b\x6b\x26\x16\x0e\x15\x50\xe1\x77\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\xa8\x1b\x8e\x04\xdc\xd5\x11\xd9\xf3\x5f\xd0\x11\xd0\x8d\xcf\xec\xc8\x91\xf5\x42\x9f\x70\x5b\x2e\x27\xf7\xff\x5d\xfd\x1b\x08\x42\x40\xce\xe4\x8d\x41\x23\x06\xf0\x14\x83\xa4\x36\xe9\x29\xe6\x14\xce\xb3\xd9\x70\x97\x38\x57\x37\xb7\x53\x9c\x57\xad\xf5\x05\x4e\x6d\x7a\xfb\x40\x4f\xb9\x58\x55\x4d\xeb\x8e\xb7\x49\xea\xde\xdf\x50\x48\xc3\xa0\xb2\xa3\x75\xdf\xde\x2a\xa7\xc3\x33\x92\x46\x71\x8d\x21\x35\x45\xa6\x83\x73\x87\x3c\xf0\xf8\x1b\xd6\xea\x43\xc6\x8f\x25\xe3\x6d\x6c\xde\xff\xf6\x9d\x89\xae\x4c\x0c\xdc\x78\xed\x2f\x3e\xf3\x97\x0f\x9f\xfd\xbb\xf3\xcd\xc6\xf4\x55\xcf\xe1\x33\x9f\x9d\x04\xba\x5f\x19\x8b\xb8\xda\xeb\xad\x39\x75\x86\xe5\x19\xc7\x6d\x2a\x56\x7d\x73\x42\xb6\x6d\xea\x4a\xfc\xee\x4e\xe5\xab\xe2\x37\x1b\xfd\xd5\xcf\x17\xfc\x43\x1e\x18\xd1\x14\xbe\xe9\x97\xf5\x4d\x8f\xf0\xd1\x17\xfc\xf7\xbb\xfc\xe1\x32\x8b\x43\x87\x56\x9b\x15\x74\x0b\xd1\x8d\xca\xb7\xcb\x77\x0f\x04\xe2\xe2\x7a\x6b\x2f\x1e\xc6\x1a\xd0\x4d\xe8\xe0\xf7\xae\xdb\xda\x49\x54\xba\xef\xa6\x5a\xb4\xfb\x9c\xf0\x06\x61\xfd\xff\xa5\x69\x67\xf8\xe9\xff\x25\x3f\xfd\x2f\x9a\xcb\x23\x97\x90\x2c\x88\xcf\xd8\x85\x47\x6f\x92\xe4\xf4\x28\x8d\xe9\x12\xc4\x3a\x49\xe2\x58\xb5\x49\x42\xb1\x18\xb5\x62\x16\x18\x9f\x66\xee\xcf\x31\xc5\x1c\xa1\x93\xda\xd3\x97\x4f\x7c\x96\x78\xfc\x27\x49\x72\xbb\x64\x30\x12\xd1\x0b\xfb\xb4\x4d\xb3\xe2\x47\xad\xa1\x5d\x4e\x87\xa7\xfc\x7a\x5a\xa7\xdd\x8b\x4e\xaa\x40\x78\x28\x9f\x02\x63\x70\x5f\x74\x69\x69\xec\x4f\x9f\xa0\x97\x79\x47\x80\x31\x0e\x11\x11\x9f\x09\x44\x32\x31\x3c\x20\x93\xc8\xe2\x53\x90\xdd\x4d\x25\xc1\x85\xcf\xf1\x31\x09\xd3\xee\xa1\x75\xdc\xd7\x2e\x97\xdd\x0c\x38\xae\x05\x1e\x87\x69\x34\x14\x37\x07\x1e\x08\x0f\xc1\xe4\xef\xb0\x1d\xbb\x3b\x0b\xb9\x73\x91\xfd\xd1\xf5\xf1\x19\x2d\xe9\x6e\x1a\x4c\x1f\x90\xb1\x66\x3d\x6a\xd5\xcf\xab\x88\xf2\x61\x17\x39\x8f\x02\x31\x50\xd4\x5b\xc1\xb2\x3f\xab\x8e\x41\x2f\x23\x44\xa8\xe6\xcb\xbb\x0a\xfa\xcf\xf4\x9e\x7a\x33\xe8\x64\x42\xf3\x0c\xe4\x9e\x1a\x06\x5d\x9c\xac\xe2\xcb\x3b\x89\x93\xb6\x5e\xc9\xa9\x73\xa0\x93\xb7\x78\x3d\xa8\x5d\xaa\xe0\xba\x61\xa7\xda\x97\xe6\xe8\x77\x4f\x95\x87\x7a\x7d\x67\x9d\x5f\x30\x8c\x55\xd5\xcf\x57\x8b\xd8\x7d\x7e\x39\xad\xbd\x64\xc2\xcd\x87\x7b\xb9\x90\xf8\x3a\x75\xaa\xb4\x9c\x2e\x7e\xd7\x04\xa3\x43\xac\xae\x98\xaa\xfe\x50\xdf\xda\x92\xdd\x73\x58\x51\xc7\x0f\xcd\xa9\xcb\xc0\xfb\x52\xcc\x2c\x8f\x66\x94\xf6\x75\xa1\x51\xed\x4b\x18\xd7\xbb\x47\x12\x51\xf9\xf1\xa2\xc0\xdd\xc4\xef\xe8\x28\xae\x9f\x82\xb4\xa3\xb4\x71\xb6\x3c\x5b\x4f\xee\x6c\x68\x30\x16\x47\xd7\xdd\xdc\xb6\xe8\x4a\x5f\x7e\xd6\x08\x9c\x83\x8c\x1f\x06\x23\x8a\x12\x31\x90\xbc\xc1\x93\xd1\xf9\x63\x76\xd7\xe2\xb7\xf0\xd8\x17\x4d\x7d\x3c\xf5\xd0\x46\x3c\xf9\xa0\x60\x5b\x1e\x18\x90\x6f\xf7\x8e\x15\x7a\x94\xf4\xe2\xcb\xc6\xc8\x2f\x63\x8c\x36\xc2\x7b\x24\xeb\x4b\x19\x7f\x68\x3b\x4c\x55\xfc\xaf\x6e\x87\xd6\xf5\x6a\xf4\x7c\xaa\x63\x0f\xf0\x36\x00\xcd\x5d\x5f\xe1\x98\x38\x97\xb7\x02\x7e\xc1\x6f\x4f\xae\xf5\x7d\xd8\x55\xd3\x36\x84\x71\x12\xbc\x59\xdf\x39\x7d\x69\x69\xdd\x44\x01\x58\x2c\x6e\xe7\x7b\x8d\x55\x61\x65\x4e\x91\x4c\x6c\x1f\x07\x7a\x88\xa5\xc0\x3c\x59\x19\xd6\x43\x2f\xd4\x7a\x01\x6e\xca\x4a\x1d\x5b\x86\x2b\xa9\x65\x9a\x4b\xbe\xf0\xa5\x31\xbc\x00\xfc\x4e\x53\x1c\x2c\xec\x84\xa5\xbd\xc8\x3b\xe7\xa1\x22\x84\x83\x24\xdb\x7b\xbe\x17\x9c\x3c\x6e\xc1\x7a\x15\x8a\x0d\x3a\x75\xa8\xdc\x55\x5b\x8e\xca\xbc\xe0\x90\xf2\x43\x78\x9b\xb9\x75\x59\xec\x46\xf3\xf6\x8a\x12\x47\xb3\x06\xc8\xf1\x04\x00\xf6\xf0\x2c\xf8\x52\xd5\x12\x42\xb4\x2f\xf1\x7a\xb9\x39\xd4\x46\x05\xef\xa2\x21\x7c\xcd\x4c\xfc\x81\x12\xca\x4d\x0d\x7b\xa5\xb6\xbd\x51\xaf\x9a\x4b\x0e\xc9\xd2\x19\xf4\x3b\xf9\xe9\xa0\x2e\x9b\xa6\x27\x59\x8e\x40\x89\x8d\x84\xab\xac\x4c\xd3\x33\x4b\x67\x46\x78\xf1\x71\x34\x53\x02\x3d\x9e\x2a\x81\x3e\x3c\x57\x5b\x7e\xd8\x83\xda\x6a\xf7\x8b\x7e\x4f\x34\x27\x34\x78\x7a\xce\x0f\x82\x9c\x87\x8c\x51\x8b\xa3\x92\x1e\x43\x87\x85\xa7\x5a\x5e\xf0\xb3\x2c\x93\x4d\x9f\x70\xce\x9d\x6d\x8f\xca\xfa\xc6\x47\xc5\xa7\x76\x0a\x1e\xef\x66\xa2\x74\xb9\x5f\x7c\x2c\x7b\xbe\xcc\xbe\x9e\xc3\xa9\xc3\xd7\x75\x66\x60\xf9\x33\x80\xe5\xaf\x08\x2c\xbf\x80\xc6\x6d\xa2\x56\x3a\x47\xb7\x65\x5f\xc0\x09\xc9\xd5\xf2\xf2\x84\x56\x40\x92\xa7\x4a\x41\x13\x37\x57\xf9\x47\x77\x21\xb3\xa4\xae\x86\x77\x50\xd6\xa9\x48\x74\x1c\x40\xa6\x6a\xe3\xb8\xcc\x72\xa0\x2f\x6e\x17\x1b\xf1\x7f\xf9\xd4\x73\x1f\xde\x4b\x8a\x83\x85\x8c\x47\xb0\x46\x23\xe1\x87\x82\xb0\x2e\x04\x7e\x91\x12\x4a\xa1\x60\x11\x58\x08\x17\xc1\x9d\xb1\xef\xce\x14\xe0\xae\x90\xcd\x74\x10\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x32\x95\x42\x56\x44\xc0\x96\x7b\x5f\xfa\x16\x23\xe1\x1c\xfc\x1c\x70\xed\xcb\x5e\x62\xe4\x34\x85\xc5\xb3\xe2\xd1\xa2\x12\x8d\xb4\xe1\x99\x7d\x01\x13\xb9\x02\xd2\x84\xa4\x18\x27\xcc\x2b\x71\x6c\xdf\x96\x97\x84\xa1\x91\xb4\x78\x80\xd2\x5f\x4d\xb3\xf0\x60\x21\x68\xba\xa6\xc3\x5d\xbc\x2d\x57\xac\xa8\x90\x8b\xe4\x08\xc3\x85\x1b\x41\xef\x91\x6c\xd2\x8d\xbf\xe3\x75\xd1\x60\x94\x6e\x60\xa9\x53\xa2\x0d\xf3\xfe\x10\x65\x33\xad\xc3\x07\xe8\xd5\x91\x41\x74\x31\xaf\xbc\x54\xed\x60\xde\x79\x02\x29\xef\xe0\x88\x61\x73\xe3\x4b\x43\xae\x34\x41\x6d\x50\xc3\x1b\xc8\x9c\x6e\x96\xc3\x83\xde\x41\xd5\x0d\x63\x01\xab\x5c\xe4\x62\x0a\x54\xed\x70\xbb\xdd\xd7\xf6\x60\xb8\xa1\xc1\xa1\x97\xfa\xed\x15\xbf\xcf\x7c\xac\x3f\xce\x85\xc3\x14\xf8\xb5\xa4\x38\xb2\x2d\x3e\xe9\xa3\x30\xf1\xd5\xa9\x53\x7d\x5f\xca\xdd\x9f\x3d\xb1\xdc\x37\xfc\xd4\xd4\xa1\xb2\xa6\xe3\x7b\x7c\x4e\x04\xe6\xe9\x37\x78\x6f\x91\xf6\xc3\x6a\xd3\x5c\x16\xec\xc4\x22\x0f\x88\xe1\xb5\xaa\x27\x5a\x47\xd5\xcd\x3d\x52\x0e\x1f\x21\x2c\x06\x48\x4a\xa3\x5f\x57\x97\x34\x28\x11\xf4\xc7\x05\x0c\x40\x2e\x82\x01\xca\xb5\xa4\x28\x9e\x14\x42\x58\x0f\xce\x10\x0c\x6d\x5a\xe7\x05\x60\x38\x0f\x7b\x3b\xdf\xeb\x99\xab\x63\xf8\xa8\x06\x57\x06\xca\x65\xd9\x93\xcc\xf6\x49\x1c\x25\x5f\x8f\xbc\xd6\x34\x37\x64\xbb\xaf\xae\x83\x8f\x3b\x4d\xa2\x4c\xd4\xef\x1b\xc6\x08\xe9\x37\xe4\xbc\xd3\x7c\x9c\xe2\x06\x02\x91\xf2\xd5\xec\xa8\x75\x74\x3d\x95\x30\xa5\xdc\xdf\x78\xb9\xba\x61\xce\x94\x79\x5e\xc4\xfb\x67\x11\xcb\x5f\x95\x0f\xd1\x2d\x62\x80\x7a\x76\xdb\x8d\xb1\x33\xe8\x48\x50\x9d\xa4\xef\x00\x47\x67\x11\x1f\x9a\x03\xed\x47\x1b\x29\x42\xe3\xf9\xe6\xbd\x76\x2c\xed\x80\xd8\xf1\x9a\xd6\xfb\x56\xa5\xca\xcd\xa4\x2b\x13\xee\x53\xc7\xc3\x37\x75\x0f\xf8\x06\x53\xad\x72\x7f\x78\x40\xdd\x13\xe3\x76\x42\xe5\x51\xc2\x53\x6f\x24\xa4\x6e\x3e\x48\x8a\x86\x1f\xb3\xf9\x88\x0a\x16\x84\x7b\xd8\x9e\xdb\xce\x49\x6b\x52\x62\xfc\x58\x67\xda\x05\x49\x19\x9b\x86\x25\x5d\xb5\x87\xb9\xbd\x80\xa7\xaa\xe0\x19\x54\x88\xc2\xbd\xb5\x96\x36\x7c\x4c\x09\x9a\x61\xa5\xb3\x83\x2e\x0f\x28\x6d\xd2\x6d\x29\x25\x21\x4e\xed\xaa\xbd\x12\x73\xcd\x72\xbd\x97\x14\xff\xea\x88\xa4\x94\x88\x31\xc4\x94\x47\xa2\x0d\x2d\x35\x7d\xec\x94\xe5\x3a\xa9\xd5\x0c\x3a\xe7\x6a\x05\xd4\xf4\x61\xe1\x7a\xd3\x95\x24\x47\xf0\x33\x97\xb4\x73\xfb\x66\xd1\x6c\x70\x5a\x4a\x1a\x6f\x5a\xa4\x29\xec\xf0\x96\x86\xa4\xe2\x4a\x34\x5f\x29\xe9\x7a\x4d\xd9\xc9\xbb\x23\x67\xfc\xee\x88\xa4\x40\x7b\xb7\x84\xbf\x34\x2b\xeb\x9e\xbf\xf5\xe9\x76\x52\x59\xee\x99\xfe\x9e\x82\x71\xee\x55\x45\xcb\xcf\x9e\x7c\xa7\x81\x80\xad\x0e\x84\x2e\x6e\x5a\xf1\x73\xde\x6d\xb8\xbf\xfc\xfe\x1e\x0c\x6f\x6c\x86\xd8\x23\x08\x28\x3f\x72\x0f\x8f\x03\x22\x49\x2b\x71\xe1\x97\x67\x99\x75\xe2\x99\x0d\xd2\xf8\xe6\x60\x7f\xd4\xcc\xf2\x8c\xbd\x2b\x1d\x08\x46\x04\x80\x30\xa2\xa2\x97\x40\x50\xe5\xd4\xb5\xbc\x3c\xe4\x1e\x84\x1e\x3e\x0f\x04\x02\x11\x0e\x6c\xee\x3d\x5f\xe5\x7a\x5a\x21\x6a\x29\x53\xaa\x72\xb3\xd4\x3b\xa6\x49\xc0\xab\xd9\xa8\x05\xf3\xb3\x42\xf8\xc9\x7b\x7a\xd3\xed\xad\xeb\xe7\xfb\xfb\x7a\x4e\xa8\x80\x20\x6f\xf8\x7b\x10\xac\x63\x69\x50\x9f\x09\x7f\x51\xb2\xfe\x38\x66\xf1\x52\x29\x5e\xc8\xe5\x93\x4f\x86\x37\x12\x0a\xd3\x26\x59\x42\x61\x5a\xcd\x30\xed\x05\x00\x31\xf8\x27\x10\x5b\x3e\x6b\xe7\x5d\xc1\x84\x89\x4e\x95\x65\x7e\x7e\x6c\x48\xbf\xed\x77\xf6\x16\xe4\xf9\xe9\xc5\xd9\x1d\xbb\x88\x41\x15\xc3\x01\xe9\xd0\x9c\xb3\x14\xd5\x91\xe5\xf0\xdd\x02\x34\xc8\x8e\x51\xe5\x0c\x9c\xeb\x64\xeb\x74\xd3\x70\x77\xf1\x6a\xf2\xe6\x3a\x71\x07\x1c\xa9\x1b\x97\x82\xa4\xcc\x2c\x3f\x25\x7e\xa6\x62\x5f\x4d\x6b\x4d\xfd\x05\xf9\xd9\xb4\x72\x57\xb4\xf6\xa6\x10\x1e\xc1\xcb\x1f\x1d\x3d\x9a\x25\x74\x67\xde\xe3\xb9\x30\x0d\x74\x76\xf1\xe6\x9c\x3e\x17\xed\xad\x38\x23\xe8\x48\x3f\x56\x3b\x06\x9b\xf3\x9d\x32\x61\xa8\x29\x05\xb0\xbf\x22\xc5\x36\x3e\x5b\xad\xcb\xf6\x9a\xa3\x6f\x2a\xfe\x9c\x1d\x9f\x42\x59\x44\x49\x9e\xec\x68\xd3\x08\xb5\x6d\xec\x7a\xec\x04\x2d\x47\x93\xb0\xeb\x46\x3a\xab\x1d\xce\x1e\xfa\x63\xf5\xb8\x28\xc0\x43\x9e\x5a\x3c\x0b\x6c\xa6\x47\xfc\x5d\x0a\x9d\xb0\x79\x81\xaa\x0f\xe5\x80\xb4\xcc\x7d\x17\x94\x66\x09\x1d\xf7\x87\x76\x5a\xcf\x67\xba\xe8\xf9\xca\x1c\x83\x75\xd7\xa8\x27\xe3\x29\xa5\x25\x12\xc8\xb9\x1c\x2d\xf6\x66\x77\x5a\x75\xf0\x9a\x18\x97\x48\x5e\xef\x1e\x4d\xec\x84\xeb\xdb\x1d\xee\x6e\x8a\x72\xe0\xba\xaa\x70\x3f\xed\x40\xd5\xc2\x7f\x01\x86\x30\x1c\xfe\x16\x6a\x9c\x54\x43\x73\x64\xf1\x62\xc8\x38\x7e\xa0\x41\x0c\xca\x2e\x32\x9a\xf0\xf2\x38\x55\x95\xe7\x72\xc3\x1c\xf0\x5c\x69\x37\xee\x63\xbd\x44\x3b\x6d\x2a\xd4\x60\x60\x56\x15\x6a\x6a\x67\x56\xd8\x62\xb7\x0b\x47\xb7\x7b\x1f\x1e\x1b\xc8\x81\x5c\x0b\xe9\x73\x10\xbf\x6a\x88\x3a\x07\x24\xd7\xbe\x3d\x10\xdf\xfe\x56\x80\xe1\x91\xae\xc9\xcd\xd5\x15\x3f\x95\xc9\x2f\xc6\x68\xa0\x54\xfe\xc9\xd1\xac\x43\xfb\x1a\xcc\x60\xce\x3a\x5d\xe8\x48\x79\x4c\xcf\x35\xc2\xc1\x7b\x24\xb2\x50\x6a\xe0\xed\x1e\x4b\xc9\xfd\x7d\xbf\xaf\x45\xdc\x76\x59\xda\x10\x67\xf9\x46\xc0\x41\xb6\x4d\xd3\xdb\x5b\xb1\x8e\x7d\x7c\x4f\xc9\xc4\x2b\xf4\xeb\x30\xc1\x6c\xc2\x5e\xcc\xe5\xc9\x4a\x57\x06\x06\xf4\x85\xdc\xb9\x1a\x15\xa2\x7e\x8f\x4b\x50\xbf\x0f\x80\x8b\x9b\x96\x31\x5f\xe7\xf8\x25\xc7\x45\xe8\x31\xa2\x1a\xca\xb6\xb0\x01\x4b\xda\x10\x6f\x30\x07\xa1\xe2\x6e\xed\x50\xe3\xfc\xd5\x34\x5e\x30\xd4\x98\x5b\x74\x99\xcc\xea\xf6\x73\x8d\x53\x3a\xd7\x17\x7d\x85\xf3\xed\xf3\x67\x1a\xbe\x54\x30\xcf\x17\x3b\x80\x06\x9c\xe5\x99\x39\x97\xbc\x81\x2b\x88\xe5\xbe\xc1\xaf\x11\x50\xb2\x72\xa3\xa9\x24\x00\xbe\xf3\x88\xf0\x2a\x0a\xf4\x1f\xe5\xad\x84\x55\x99\x00\x5c\x71\x73\x01\x8c\x7e\xe5\x8f\x1f\x51\xd6\x53\xc9\x7a\xf4\x64\x54\x86\xa5\xe9\xed\x7e\x2b\x97\x4c\xab\xbf\x97\xf2\xee\x05\x73\x03\x92\x81\xd6\xce\xd9\x1a\x73\xc2\x19\x77\x15\xed\x26\x4a\x75\x61\xed\x96\x97\x71\xe9\x9e\x9b\xc7\xc4\xe4\xfa\x11\xa4\x67\xff\x63\xaa\x67\xa2\x63\xaa\x17\x1e\x62\xaa\x62\x95\xdf\x42\x94\xda\x75\x1b\xdb\x45\xe7\xe7\x6f\xd2\xad\x1a\x73\xdd\x9b\xfc\xcc\x2e\x3e\xe0\x67\xbb\xf8\x79\x8f\x07\x39\x5f\x6a\x7e\xe2\x4a\xe8\x54\xfb\x49\xd5\xd4\x61\x1d\xdd\xdf\x36\x55\x5f\x7e\xfb\x00\x5e\x50\x0f\xfa\x6a\x79\xf9\xe0\x49\x42\xf5\x2a\x5c\xb9\x73\x64\xaf\x5a\x1c\x98\x9f\xa0\xb9\x63\xc5\xd4\xc6\x45\xe1\x7c\x2f\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\xde\xaa\x79\x86\xe4\xd8\x41\x79\x8f\xcc\xde\x27\xd3\x8b\x6c\xd6\x3d\x3c\x49\xf6\xba\x96\xfb\xa9\x5a\x04\x23\x09\x9a\xc8\x53\xee\xbf\x57\x3e\x0e\xfb\x3f\xc2\x56\x1b\xc5\xdd\x58\xab\x0c\xd5\xa2\xd8\x11\x6f\x5d\x44\x56\xea\x44\x12\xc2\x81\x20\xf1\x15\xf8\x02\xe4\x7c\xa3\x6e\x04\x12\x83\x01\xd7\x20\x69\x23\x5f\x97\x5d\x1c\x2c\x71\x26\x51\xf4\x4a\x0a\xbd\xe7\xbc\x20\xaa\xf9\xc2\x56\xda\xa2\xcb\x84\x95\xb7\xd8\x07\x93\x2b\x8f\x20\x49\xf3\x4d\x59\xaf\x80\x76\xff\xc9\x3f\x89\x0b\xe6\x9f\x61\x86\x24\xa8\x01\x94\xd7\x7c\x79\xef\x07\x0b\x73\x00\x1d\x36\xa5\x84\xb5\xbd\x97\x5d\xf5\x6b\xe3\xcf\xe4\x53\xfc\x9e\xee\xa1\xc2\x1e\x24\xbf\x9a\x6f\xeb\x48\x9b\xa4\x71\xab\xf7\xea\xe7\x37\xef\x06\x90\x13\xbb\x5b\x73\x26\xa8\x81\xe6\x4c\xec\x7d\xa8\xbc\x41\x44\x55\x12\x83\xb2\x1b\x54\x14\xbb\xc5\xe0\x02\xc8\x3c\x3c\x97\xfe\x82\x0b\xe0\x09\x33\xbe\x5d\xc1\x25\xb0\xef\x38\x89\x79\x5b\xbc\x9e\x3e\x2a\xdd\xe9\x9b\x8d\x11\x3c\xbe\x4f\xa1\xc1\x8f\xb8\xf0\x2c\x4c\xb2\x78\xed\x84\x39\x86\xa7\xce\xf4\x14\x0b\xe4\x78\x86\x2d\x5f\xec\x54\xd1\x45\x0f\x96\xa9\xc9\x9a\x04\xb2\x58\x12\xf6\xcb\xcd\x57\x80\x1e\xcb\xef\x14\x08\xc6\xdc\xeb\x62\x13\xa0\x5e\x6b\xc2\xa8\xd5\xda\xb7\x59\x8b\xaf\x86\x23\x74\xe2\x61\xea\x08\x9d\xdc\xe1\x9a\x3e\xc8\x15\x9a\xaf\xf8\x56\xe6\xca\x29\xf0\x67\x9a\x64\xa0\x06\x12\x6b\x36\x08\xad\x3a\xf4\x93\x36\x57\x15\x04\xaf\x13\xfc\x4a\xb0\x4b\x69\x04\x6f\x6a\x81\x8d\x64\x82\x75\xe5\x52\xc2\x80\x57\x8b\x30\x33\x66\xa3\x7a\x79\x12\xe6\x46\xcc\x59\x83\xc1\x6c\xaa\xab\x32\x18\xbf\x74\x34\x6f\x28\x2d\x01\x5e\xf7\xfd\xae\xb3\x70\x40\x1c\xb9\xef\x3c\x7f\x47\x3f\x06\x83\xf0\x55\xe9\x48\x62\x4d\x61\x66\x2a\x58\x24\xdd\xc4\x48\xc2\xf4\x94\x1b\xb4\x9e\x48\x0e\x5c\x8f\xa4\x21\x25\x5e\xb5\x7a\x85\x2a\xee\xe2\x97\x9a\x34\x98\xd1\xab\x72\x89\x1b\xe1\xcb\x79\x28\xa1\xf3\xfa\xc2\x72\x38\x4e\x02\xd4\x8f\x61\x7e\xab\x3e\x76\x9c\x55\xf4\x93\x9d\x66\x28\xeb\x0f\x82\x2a\xb0\xe6\x0a\xe1\xe7\x5d\xaf\x24\xb6\xc2\x6d\xdd\x17\x9f\xf2\x57\x96\xef\x6b\x60\x1b\x09\x4a\x33\x17\x0f\x5e\x86\x20\x51\xea\x0d\x12\x70\x8e\x17\x7c\x71\x7e\xb5\x91\xa0\x02\x4f\x0e\x16\xe7\x60\x2c\x2d\x1d\x23\xaa\xf1\xb5\x8a\x4e\x62\x6a\x5a\x1b\x97\x99\xae\xcd\x22\x19\x84\x3a\xe4\xf9\xb6\xc7\xee\xc5\xf7\xa4\x20\x61\x64\xd1\xae\xd4\x6c\x79\xdc\xae\xf6\xf2\xaa\xad\xaf\xba\xe2\x80\x34\xa5\x3b\x21\x4e\x2b\x0b\x51\x33\x38\x23\x04\x9c\xdd\x39\x13\x68\x44\x0f\x57\xc9\x7a\xa2\x04\xbc\xdf\x5d\x81\x13\x78\xc3\x47\x9f\xc9\x89\x22\x08\xe5\x14\x4b\x20\x8a\xd3\x9d\x05\xd4\x3c\x2b\xe0\x34\xd2\x31\xb0\x97\x5d\x02\x0a\xb1\xcc\x32\x89\x42\x0c\xa5\x8c\x21\xc3\x80\x31\x34\xb7\xe5\xd9\xa2\x95\x20\xac\xfc\xe7\x82\x7d\x46\x43\x8e\x3f\x9d\x2c\xad\x23\xda\xb7\xdc\x4b\xc4\x06\xfd\x8c\xf0\xf1\x01\x63\xd9\xa5\x96\x31\xf1\xe8\x71\x0a\x50\x7e\x2a\x17\x7b\xe7\x28\xf3\xb3\xfc\x56\xcb\x74\xac\xa6\xb1\xab\x4d\xfb\x1a\x0f\x5e\x9f\x49\x8a\x83\x99\x7a\x15\xcb\xba\x0e\x09\xc8\x24\xa1\x83\xed\x87\xe6\x6d\xbe\x33\x73\xfd\x36\x8f\x6a\x7d\x5c\x66\x23\xb7\xce\x07\xde\xe0\x06\x8b\x60\x20\x4b\x04\x7f\x98\x87\x60\x10\x88\x0a\x22\x90\x1a\x18\x22\xc0\xab\x4f\xb3\x32\x63\x6c\xf2\x0b\xad\x96\xec\x14\xc8\x7e\x0c\x20\xaa\x78\xdc\xfc\x78\x13\x4b\xd2\x90\x3d\xc4\x73\xfd\x99\xc0\x54\xb5\xc8\xa4\x92\x25\xe6\xd5\xd7\x92\xa6\x55\x3a\x17\x77\xd3\xeb\x84\xc7\xd3\x83\xf2\xe8\x5c\x53\x86\x90\xd6\x32\x80\xd8\x09\x6d\x38\x1b\x5e\xe4\xf1\x69\x88\x2a\xed\xee\x21\xb8\x31\x0d\x97\xd1\xb2\x9a\x1d\x73\x10\xbb\xd9\xa8\xb7\x41\x39\xa3\x2b\x62\x0e\xfb\xf7\x39\x7e\x66\xbf\xc9\xdc\x7f\xb0\x8b\xe7\x6a\x65\x34\xe3\xbe\x73\xa8\x4b\xe2\x60\xc9\xe3\xd8\x59\x5b\xd6\xee\xc9\x06\xf9\x95\x14\x4a\x1e\xc7\xfc\x26\x3e\x82\xc9\x97\xb2\x0e\x3e\x2e\x1e\xde\x6b\x46\xad\x7c\xcb\x44\x2c\xc9\x83\x87\x44\xbb\x76\xf1\xf5\xb0\x2c\x5b\x1e\x53\x30\xce\xfc\x37\xab\x58\xc6\x68\x2f\x5b\xff\xae\xaf\x49\xcb\x6f\x37\xbe\xaf\xc5\x3c\xf6\xb5\x8c\xf4\x4f\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\x03\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\xef\xfa\x5c\xe6\x17\x77\x2b\x04\x3b\x57\x3c\xb5\xdf\x83\x5d\x23\xb8\x3f\x8d\xf8\x71\x23\x21\x7e\x20\x47\xec\x88\xf8\x4e\x3f\x7c\x37\x80\xed\xfe\xed\xf1\xf1\x8e\x18\xec\x21\x7b\x8c\x58\xdf\x8d\x05\xfd\x95\xe4\xaa\xd3\x67\xff\x44\x19\xfc\x30\x3c\x66\x4b\xf4\xa0\x6f\x9a\xcd\x87\xac\x58\xf1\x90\xe8\xff\x8c\x77\xb0\x5e\xcd\xc5\x66\xa6\xcf\x4c\x7e\xf2\xd7\x37\x5c\xf3\x37\x1a\xcc\x97\x1f\x48\xf8\x66\x8b\x84\x6d\x55\xf3\x19\xc6\x09\x6b\x24\xac\x39\x3e\x1e\xff\x5c\xe2\xe7\xb2\xb8\xc5\xaf\x1b\xfc\xba\x29\xcb\x8f\x52\x18\xc4\x99\x8a\x37\x35\x09\x49\x9c\x72\x8b\xdf\xb7\xfc\x4c\x23\x9e\x5f\x58\x20\x68\x30\x5e\xc3\xb4\x1f\x78\xf3\xb2\x86\x25\x0d\xe9\xf6\x83\xd2\xb9\x55\x4d\x95\xcf\x87\xec\x1e\x79\xab\x49\xf8\xe2\x47\xda\xa8\x79\x4d\x92\xcf\x87\x38\x53\xfb\xb5\x55\x28\xdf\x94\xca\xfd\xd0\x44\xf9\xa4\xb4\xb6\xb8\x99\xc7\x7e\xe9\x17\x52\x63\xaf\xf4\x8b\xa6\x77\xd9\x36\x3b\x7e\x10\xe7\x43\x66\x0f\xd5\xc5\x17\xea\x9e\x53\x9e\x79\x28\x73\x4c\x2b\xd6\xda\xdb\x43\xd9\xfb\x1d\x07\x5b\x99\x65\xf6\x30\x65\x55\xef\xf6\x41\x11\x1b\x1f\x45\x15\xb0\x18\x32\x58\xee\x67\x12\xd4\x2c\x83\x9a\x97\xe3\x68\x5d\x82\x61\x82\x82\x97\x35\x2d\xf9\xe3\x7f\xfc\x03\xf0\xf4\xfd\xcf\x7f\xe6\xa7\xcf\x9e\xe4\xe5\x27\x8e\xde\xdf\xe5\x5b\x75\x42\x32\x30\xfa\xfd\x22\x81\xe4\xd0\x30\xb8\x36\xa7\x5e\x2f\x72\x6d\x0e\xcd\x67\xff\x27\x00\x00\xff\xff\x67\x1b\x06\x20\x25\xce\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\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") 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: 52773, mode: os.FileMode(420), modTime: time.Unix(1471166949, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 55126, mode: os.FileMode(420), modTime: time.Unix(1471215870, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/markdown/markdown.go b/modules/markdown/markdown.go index 1da1c5e2e8..b24fe2e40a 100644 --- a/modules/markdown/markdown.go +++ b/modules/markdown/markdown.go @@ -53,10 +53,11 @@ func isLink(link []byte) bool { // IsMarkdownFile reports whether name looks like a Markdown file // based on its extension. func IsMarkdownFile(name string) bool { - name = strings.ToLower(name) - switch filepath.Ext(name) { - case ".md", ".markdown", ".mdown", ".mkd": - return true + extension := strings.ToLower(filepath.Ext(name)) + for _, ext := range setting.Markdown.MdFileExtensions { + if strings.ToLower(ext) == extension { + return true + } } return false } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index fede3587fb..8d1d593bdd 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -118,6 +118,12 @@ var ( RepoRootPath string ScriptType string + // Repo editor settings + Editor struct { + LineWrapExtensions []string + PreviewTabApis []string + } + // UI settings UI struct { ExplorePagingNum int @@ -141,6 +147,7 @@ var ( Markdown struct { EnableHardLineBreak bool CustomURLSchemes []string `ini:"CUSTOM_URL_SCHEMES"` + MdFileExtensions []string } // Picture settings @@ -162,6 +169,13 @@ var ( AttachmentMaxFiles int AttachmentEnabled bool + // Repo Upload settings + UploadTempPath string + UploadAllowedTypes string + UploadMaxSize int64 + UploadMaxFiles int + UploadEnabled bool + // Time settings TimeFormat string @@ -482,6 +496,16 @@ func NewContext() { log.Fatal(4, "Fail to map Repository settings: %v", err) } + sec = Cfg.Section("upload") + UploadTempPath = sec.Key("UPLOAD_TEMP_PATH").MustString(path.Join(AppDataPath, "tmp/uploads")) + if !filepath.IsAbs(UploadTempPath) { + UploadTempPath = path.Join(workDir, UploadTempPath) + } + UploadAllowedTypes = strings.Replace(sec.Key("UPLOAD_ALLOWED_TYPES").MustString(""), "|", ",", -1) + UploadMaxSize = sec.Key("UPLOAD_FILE_MAX_SIZE").MustInt64(32) + UploadMaxFiles = sec.Key("UPLOAD_MAX_FILES").MustInt(10) + UploadEnabled = sec.Key("ENABLE_UPLOADS").MustBool(true) + sec = Cfg.Section("picture") AvatarUploadPath = sec.Key("AVATAR_UPLOAD_PATH").MustString(path.Join(AppDataPath, "avatars")) forcePathSeparator(AvatarUploadPath) @@ -532,6 +556,8 @@ func NewContext() { log.Fatal(4, "Fail to map API settings: %v", err) } else if err = Cfg.Section("api").MapTo(&API); err != nil { log.Fatal(4, "Fail to map API settings: %v", err) + } else if err = Cfg.Section("editor").MapTo(&Editor); err != nil { + log.Fatal(4, "Fail to map Editor settings: %v", err) } if Mirror.DefaultInterval <= 0 { @@ -546,6 +572,10 @@ func NewContext() { ShowFooterVersion = Cfg.Section("other").Key("SHOW_FOOTER_VERSION").MustBool() HasRobotsTxt = com.IsFile(path.Join(CustomPath, "robots.txt")) + + Markdown.MdFileExtensions = Cfg.Section("markdown").Key("MD_FILE_EXTENSIONS").Strings(",") + Editor.LineWrapExtensions = Cfg.Section("editor").Key("LINE_WRAP_EXTENSIONS").Strings(",") + Editor.PreviewTabApis = Cfg.Section("editor").Key("PREVIEW_TAB_APIS").Strings(",") } var Service struct { diff --git a/public/css/gogs.css b/public/css/gogs.css index 1eb6472f02..4001f11f95 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -255,6 +255,9 @@ code.wrap { .ui.status.buttons .octicon { margin-right: 4px; } +.ui.menu .item .octicon { + margin-right: 4px; +} .ui.inline.delete-button { padding: 8px 15px; font-weight: normal; @@ -1266,57 +1269,57 @@ footer .ui.language .menu { .repository.file.list #file-content .view-raw img { padding: 5px 5px 0 5px; } -.repository.file.list #file-content .code-view * { +#file-content .code-view * { font-size: 12px; font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; line-height: 20px; } -.repository.file.list #file-content .code-view table { +#file-content .code-view table { width: 100%; } -.repository.file.list #file-content .code-view .lines-num { +#file-content .code-view .lines-num { vertical-align: top; text-align: right; color: #999; background: #f5f5f5; width: 1%; } -.repository.file.list #file-content .code-view .lines-num span { +#file-content .code-view .lines-num span { line-height: 20px; padding: 0 10px; cursor: pointer; display: block; } -.repository.file.list #file-content .code-view .lines-num, -.repository.file.list #file-content .code-view .lines-code { +#file-content .code-view .lines-num, +#file-content .code-view .lines-code { padding: 0; } -.repository.file.list #file-content .code-view .lines-num pre, -.repository.file.list #file-content .code-view .lines-code pre, -.repository.file.list #file-content .code-view .lines-num ol, -.repository.file.list #file-content .code-view .lines-code ol, -.repository.file.list #file-content .code-view .lines-num .hljs, -.repository.file.list #file-content .code-view .lines-code .hljs { +#file-content .code-view .lines-num pre, +#file-content .code-view .lines-code pre, +#file-content .code-view .lines-num ol, +#file-content .code-view .lines-code ol, +#file-content .code-view .lines-num .hljs, +#file-content .code-view .lines-code .hljs { background-color: white; margin: 0; padding: 0 !important; } -.repository.file.list #file-content .code-view .lines-num pre li, -.repository.file.list #file-content .code-view .lines-code pre li, -.repository.file.list #file-content .code-view .lines-num ol li, -.repository.file.list #file-content .code-view .lines-code ol li, -.repository.file.list #file-content .code-view .lines-num .hljs li, -.repository.file.list #file-content .code-view .lines-code .hljs li { +#file-content .code-view .lines-num pre li, +#file-content .code-view .lines-code pre li, +#file-content .code-view .lines-num ol li, +#file-content .code-view .lines-code ol li, +#file-content .code-view .lines-num .hljs li, +#file-content .code-view .lines-code .hljs li { padding-left: 5px; display: inline-block; width: 100%; } -.repository.file.list #file-content .code-view .lines-num pre li.active, -.repository.file.list #file-content .code-view .lines-code pre li.active, -.repository.file.list #file-content .code-view .lines-num ol li.active, -.repository.file.list #file-content .code-view .lines-code ol li.active, -.repository.file.list #file-content .code-view .lines-num .hljs li.active, -.repository.file.list #file-content .code-view .lines-code .hljs li.active { +#file-content .code-view .lines-num pre li.active, +#file-content .code-view .lines-code pre li.active, +#file-content .code-view .lines-num ol li.active, +#file-content .code-view .lines-code ol li.active, +#file-content .code-view .lines-num .hljs li.active, +#file-content .code-view .lines-code .hljs li.active { background: #ffffdd; } .repository.file.list .sidebar { @@ -1895,7 +1898,7 @@ footer .ui.language .menu { max-width: 100%; padding: 5px 5px 0 5px; } -.repository .code-view { +#file-content .code-view { overflow: auto; overflow-x: auto; overflow-y: hidden; @@ -2157,13 +2160,13 @@ footer .ui.language .menu { .page.buttons { padding-top: 15px; } -.ui.comments .dropzone { +.ui.comments .dropzone, .ui.upload .dropzone { width: 100%; margin-bottom: 10px; border: 2px dashed #0087F7; box-shadow: none!important; } -.ui.comments .dropzone .dz-error-message { +.ui.comments .dropzone .dz-error-message, .ui.upload .dropzone .dz-error-message { top: 140px; } .settings .content { @@ -2797,3 +2800,197 @@ footer .ui.language .menu { .ui.user.list .item .description a:hover { text-decoration: underline; } +.btn-octicon { + display: inline-block; + padding: 5px; + margin-left: 5px; + line-height: 1; + color: #767676; + vertical-align: middle; + background: transparent; + border: 0; + outline: none; +} +.btn-octicon:hover { + color: #4078c0; +} +.btn-octicon-danger:hover { + color: #bd2c00; +} +.btn-octicon.disabled { + color: #bbb; + cursor: default; +} +.inline-form { + display: inline-block; +} +.ui.form .breadcrumb input { + min-height: 34px; + padding: 7px 8px; + color: #333; + vertical-align: middle; + background-color: #fff; + background-repeat: no-repeat; + background-position: right 8px center; + border: 1px solid #ddd; + border-radius: 3px; + outline: none; + box-shadow: inset 0 1px 2px rgba(0,0,0,0.075); + width: inherit; +} +#file-actions { + padding-left: 20px; +} +.CodeMirror.cm-s-default { + margin-top: 20px; + margin-bottom: 15px; + border: 1px solid #ddd; + border-radius: 3px; + height: 600px; + padding: 0 !important; +} +.commit-form-wrapper { + padding-left: 64px; +} +.commit-form { + position: relative; + padding: 15px; + margin-bottom: 10px; + border: 1px solid #ddd; + border-radius: 3px; +} +.commit-form-wrapper .commit-form-avatar { + float: left; + margin-left: -64px; + border-radius: 4px; +} +.commit-form::before { + border-width: 8px; + border-color: transparent; + border-right-color: #ddd; + position: absolute; + top: 11px; + right: 100%; + left: -16px; + display: block; + width: 0; + height: 0; + pointer-events: none; + content: " "; + border-style: solid solid outset; +} +.form-checkbox input[type=checkbox], .form-checkbox input[type=radio] { + float: left; + margin: 2px 0 0 -20px; + vertical-align: middle; + box-sizing: border-box; + padding: 0; +} +.branch-name { + display: inline-block; + padding: 2px 6px; + font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace; + color: rgba(0,0,0,0.5); + background-color: rgba(209,227,237,0.5); + border-radius: 3px; +} +.form-control, .form-select { + min-height: 34px; + padding: 7px 8px; + font-size: 13px; + color: #333; + vertical-align: middle; + background-color: #fff; + background-repeat: no-repeat; + background-position: right 8px center; + border: 1px solid #ddd; + border-radius: 3px; + outline: none; + box-shadow: inset 0 1px 2px rgba(0,0,0,0.075); +} +.form-control.input-contrast { + background-color: #fafafa; +} +.form-control.mr-2 { + margin-right: 6px !important; +} +.quick-pull-choice .new-branch-name-input input { + width: 240px !important; + padding-left: 26px !important; + font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; +} +.quick-pull-choice .new-branch-name-input .quick-pull-new-branch-icon { + position: absolute; + top: 9px; + left: 10px; + color: #b0c4ce; +} +.text-muted, .text-gray { + color: #767676 !important; +} +.quick-pull-choice .new-branch-name-input { + position: relative; + margin-top: 5px; +} +.quick-pull-choice .quick-pull-branch-name { + display: none; + padding-left: 48px; + margin-top: 5px; +} +.quick-pull-choice.will-create-branch .quick-pull-branch-name { + display: inline-block; +} +.nowrap { + white-space: nowrap; +} +#file-buttons { + padding-right: 15px; +} +.repository .ui.container .ui.breadcrumb { + font-size: 1.5em; + color: #767676; + max-width: 600px; +} +.repository .ui.container .item:first-child .ui.breadcrumb { + max-width: none; +} +.repository .ui.container .ui.breadcrumb.field { + margin-bottom: 10px !important; +} +.repo-edit-file-cancel { + padding-left: 10px; +} +#new-branch-item { + display:none; + margin: 0; + text-align: left; + padding: .71428571em 1.14285714em!important; + background: 0 0!important; + color: rgba(0,0,0,.87)!important; + text-transform: none!important; + box-shadow: none!important; + -webkit-transition: none!important; + transition: none!important; + border-top: none; + padding-right: calc(1.14285714rem + 17px)!important; + font-size: 14px; + font-weight: bold; + line-height: 1.1; +} +#new-branch-item:hover { + background: rgba(0,0,0,.05)!important; + color: rgba(0,0,0,.95)!important; +} +#new-branch-item .icon { + float: left; + margin-left: -15px; +} +#new-branch-item .description { + margin-top: 3px; + font-size: 12px; +} +.repository .ui.container .ui.breadcrumb { + font-size: 1.5em; + color: #767676; + max-width: 600px; +} diff --git a/public/js/gogs.js b/public/js/gogs.js index c6a1b6b624..81425503ba 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -28,6 +28,61 @@ function initCommentPreviewTab($form) { buttonsClickOnEnter(); } +var previewTab; +var previewTabApis; + +function initEditPreviewTab($form) { + var $tab_menu = $form.find('.tabular.menu'); + $tab_menu.find('.item').tab(); + previewTab = $tab_menu.find('.item[data-tab="' + $tab_menu.data('preview') + '"]'); + + if (previewTab.length) { + previewTabApis = previewTab.data('preview-apis').split(','); + previewTab.click(function () { + var $this = $(this); + $.post($this.data('url'), { + "_csrf": csrf, + "mode": "gfm", + "context": $this.data('context'), + "text": $form.find('.tab.segment[data-tab="' + $tab_menu.data('write') + '"] textarea').val() + }, + function (data) { + var $preview_tab = $form.find('.tab.segment[data-tab="' + $tab_menu.data('preview') + '"]'); + $preview_tab.html(data); + emojify.run($preview_tab[0]); + $('pre code', $preview_tab[0]).each(function (i, block) { + hljs.highlightBlock(block); + }); + } + ); + }); + } + + buttonsClickOnEnter(); +} + +function initEditDiffTab($form) { + var $tab_menu = $form.find('.tabular.menu'); + $tab_menu.find('.item').tab(); + $tab_menu.find('.item[data-tab="' + $tab_menu.data('diff') + '"]').click(function () { + var $this = $(this); + $.post($this.data('url'), { + "_csrf": csrf, + "context": $this.data('context'), + "content": $form.find('.tab.segment[data-tab="' + $tab_menu.data('write') + '"] textarea').val() + }, + function (data) { + var $diff_tab = $form.find('.tab.segment[data-tab="' + $tab_menu.data('diff') + '"]'); + $diff_tab.html(data); + emojify.run($diff_tab[0]); + initCodeView() + } + ); + }); + + buttonsClickOnEnter(); +} + function initCommentForm() { if ($('.comment.form').length == 0) { return @@ -145,6 +200,11 @@ function initCommentForm() { selectItem('.select-assignee', '#assignee_id'); } +function initEditForm() { + initEditPreviewTab($('.edit.form')); + initEditDiffTab($('.edit.form')); +} + function initInstall() { if ($('.install').length == 0) { return; @@ -450,7 +510,7 @@ function initRepository() { // Change status var $status_btn = $('#status-button'); - $('#content').keyup(function () { + $('#edit_area').keyup(function () { if ($(this).val().length == 0) { $status_btn.text($status_btn.data('status')) } else { @@ -516,15 +576,10 @@ function initRepositoryCollaboration() { }); } -function initWiki() { - if ($('.repository.wiki').length == 0) { - return; - } - - - if ($('.repository.wiki.new').length > 0) { - var $edit_area = $('#edit-area'); - var simplemde = new SimpleMDE({ +function initWikiForm() { + var $edit_area = $('.repository.wiki textarea#edit_area'); + if ($edit_area.length > 0) { + new SimpleMDE({ autoDownloadFontAwesome: false, element: $edit_area[0], forceSync: true, @@ -549,18 +604,284 @@ function initWiki() { renderingConfig: { singleLineBreaks: false }, - spellChecker: false, + indentWithTabs: false, tabSize: 4, + spellChecker: false, toolbar: ["bold", "italic", "strikethrough", "|", - "heading", "heading-1", "heading-2", "heading-3", "|", + "heading-1", "heading-2", "heading-3", "heading-bigger", "heading-smaller", "|", "code", "quote", "|", "unordered-list", "ordered-list", "|", - "link", "image", "horizontal-rule", "|", - "preview", "fullscreen"] + "link", "image", "table", "horizontal-rule", "|", + "clean-block", "preview", "fullscreen", "side-by-side"] }) } } +function initIssueForm() { + var $edit_area = $('.repository.issue textarea.edit_area'); + if ($edit_area.length > 0) { + $edit_area.each(function (i, edit_area) { + new SimpleMDE({ + autoDownloadFontAwesome: false, + element: edit_area[0], + forceSync: true, + previewRender: function (plainText, preview) { // Async method + setTimeout(function () { + // FIXME: still send render request when return back to edit mode + $.post($edit_area.data('url'), { + "_csrf": csrf, + "mode": "gfm", + "context": $edit_area.data('context'), + "text": plainText + }, + function (data) { + preview.innerHTML = '
' + data + '
'; + emojify.run($('.editor-preview')[0]); + } + ); + }, 0); + + return "Loading..."; + }, + renderingConfig: { + singleLineBreaks: false + }, + indentWithTabs: false, + tabSize: 4, + spellChecker: false, + toolbar: ["bold", "italic", "strikethrough", "|", + "code", "quote", "|", + "unordered-list", "ordered-list", "|", + "link", "image", "table"] + }) + }); + } +} + +var editArea; +var editFilename; +var smdEditor; +var cmEditor; +var mdFileExtensions; +var lineWrapExtensions; + +// For IE +String.prototype.endsWith = function (pattern) { + var d = this.length - pattern.length; + return d >= 0 && this.lastIndexOf(pattern) === d; +}; + +// Adding function to get the cursor position in a text field to jquery objects +(function ($, undefined) { + $.fn.getCursorPosition = function () { + var el = $(this).get(0); + var pos = 0; + if ('selectionStart' in el) { + pos = el.selectionStart; + } else if ('selection' in document) { + el.focus(); + var Sel = document.selection.createRange(); + var SelLength = document.selection.createRange().text.length; + Sel.moveStart('character', -el.value.length); + pos = Sel.text.length - SelLength; + } + return pos; + } +})(jQuery); + +function initEditor() { + editFilename = $("#file-name"); + editFilename.keyup(function (e) { + var sections = $('.breadcrumb span.section'); + var dividers = $('.breadcrumb div.divider'); + if (e.keyCode == 8) { + if ($(this).getCursorPosition() == 0) { + if (sections.length > 0) { + var value = sections.last().find('a').text(); + $(this).val(value + $(this).val()); + $(this)[0].setSelectionRange(value.length, value.length); + sections.last().remove(); + dividers.last().remove(); + } + } + } + if (e.keyCode == 191) { + var parts = $(this).val().split('/'); + for (var i = 0; i < parts.length; ++i) { + var value = parts[i]; + if (i < parts.length - 1) { + if (value.length) { + $('' + value + '').insertBefore($(this)); + $('
/
').insertBefore($(this)); + } + } + else { + $(this).val(value); + } + $(this)[0].setSelectionRange(0, 0); + } + } + var parts = []; + $('.breadcrumb span.section').each(function (i, element) { + element = $(element); + if (element.find('a').length) { + parts.push(element.find('a').text()); + } else { + parts.push(element.text()); + } + }); + if ($(this).val()) + parts.push($(this).val()); + $('#tree-name').val(parts.join('/')); + }).trigger('keyup'); + + editArea = $('.repository.edit textarea#edit_area'); + + if (!editArea.length) + return; + + mdFileExtensions = editArea.data("md-file-extensions").split(","); + lineWrapExtensions = editArea.data("line-wrap-extensions").split(","); + + editFilename.on("keyup", function (e) { + var val = editFilename.val(), m, mode, spec, extension, extWithDot, previewLink, dataUrl, apiCall; + extension = extWithDot = ""; + if (m = /.+\.([^.]+)$/.exec(val)) { + extension = m[1]; + extWithDot = "." + extension; + } + + var info = CodeMirror.findModeByExtension(extension); + previewLink = $('a[data-tab=preview]'); + if (info) { + mode = info.mode; + spec = info.mime; + apiCall = mode; + } + else { + apiCall = extension + } + + if (previewLink.length && apiCall && previewTabApis && previewTabApis.length && previewTabApis.indexOf(apiCall) >= 0) { + dataUrl = previewLink.data('url'); + previewLink.data('url', dataUrl.replace(/(.*)\/.*/i, '$1/' + mode)); + previewLink.show(); + } + else { + previewLink.hide(); + } + + // If this file is a Markdown extensions, we will load that editor and return + if (mdFileExtensions.indexOf(extWithDot) >= 0) { + if (setSimpleMDE()) { + return; + } + } + + // Else we are going to use CodeMirror + if (!cmEditor) { + if (!setCodeMirror()) + return; + } + + if (mode) { + cmEditor.setOption("mode", spec); + CodeMirror.autoLoadMode(cmEditor, mode); + } + + if (lineWrapExtensions.indexOf(extWithDot) >= 0) { + cmEditor.setOption("lineWrapping", true); + } + else { + cmEditor.setOption("lineWrapping", false); + } + }).trigger('keyup'); +} + +function setSimpleMDE() { + if (cmEditor) { + cmEditor.toTextArea(); + cmEditor = null; + } + + if (smdEditor) { + return true; + } + + smdEditor = new SimpleMDE({ + autoDownloadFontAwesome: false, + element: editArea[0], + forceSync: true, + renderingConfig: { + singleLineBreaks: false + }, + indentWithTabs: false, + tabSize: 4, + spellChecker: false, + previewRender: function (plainText, preview) { // Async method + setTimeout(function () { + // FIXME: still send render request when return back to edit mode + $.post(editArea.data('url'), { + "_csrf": csrf, + "mode": "gfm", + "context": editArea.data('context'), + "text": plainText + }, + function (data) { + preview.innerHTML = '
' + data + '
'; + emojify.run($('.editor-preview')[0]); + } + ); + }, 0); + + return "Loading..."; + }, + toolbar: ["bold", "italic", "strikethrough", "|", + "heading-1", "heading-2", "heading-3", "heading-bigger", "heading-smaller", "|", + "code", "quote", "|", + "unordered-list", "ordered-list", "|", + "link", "image", "table", "horizontal-rule", "|", + "clean-block", "preview", "fullscreen", "side-by-side"] + }); + + return true; +} + +function setCodeMirror() { + if (smdEditor) { + smdEditor.toTextArea(); + smdEditor = null; + } + + if (cmEditor) { + return true; + } + + cmEditor = CodeMirror.fromTextArea(editArea[0], { + lineNumbers: true + }); + cmEditor.on("change", function (cm, change) { + editArea.val(cm.getValue()); + }); + + return true; +} + +function initQuickPull() { + $('.js-quick-pull-choice-option').change(function () { + quickPullChoiceChange(); + }); + quickPullChoiceChange(); +} + +function quickPullChoiceChange() { + var radio = $('.js-quick-pull-choice-option:checked'); + if (radio.val() == 'commit-to-new-branch') + $('.quick-pull-branch-name').show(); + else + $('.quick-pull-branch-name').hide(); +} + function initOrganization() { if ($('.organization').length == 0) { return; @@ -867,6 +1188,37 @@ function searchRepositories() { hideWhenLostFocus('#search-repo-box .results', '#search-repo-box'); } +function initCodeView() { + if ($('.code-view .linenums').length > 0) { + $(document).on('click', '.lines-num span', function (e) { + var $select = $(this); + var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li'); + selectRange($list, $list.filter('[rel=' + $select.attr('id') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null)); + deSelect(); + }); + + $(window).on('hashchange', function (e) { + var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); + var $list = $('.code-view ol.linenums > li'); + var $first; + if (m) { + $first = $list.filter('.' + m[1]); + selectRange($list, $first, $list.filter('.' + m[2])); + $("html, body").scrollTop($first.offset().top - 200); + return; + } + m = window.location.hash.match(/^#(L\d+)$/); + if (m) { + $first = $list.filter('.' + m[1]); + selectRange($list, $first); + $("html, body").scrollTop($first.offset().top - 200); + } + }).trigger('hashchange'); + } +} + +var $dropz; + $(document).ready(function () { csrf = $('meta[name=_csrf]').attr("content"); suburl = $('meta[name=_suburl]').attr("content"); @@ -916,12 +1268,12 @@ $(document).ready(function () { } // Dropzone - if ($('#dropzone').length > 0) { + var $dropz = $('#dropzone'); + if ($dropz.length > 0) { // Disable auto discover for all elements: Dropzone.autoDiscover = false; var filenameDict = {}; - var $dropz = $('#dropzone'); $dropz.dropzone({ url: $dropz.data('upload-url'), headers: {"X-Csrf-Token": csrf}, @@ -936,12 +1288,16 @@ $(document).ready(function () { init: function () { this.on("success", function (file, data) { filenameDict[file.name] = data.uuid; - $('.attachments').append(''); + var input = $('').val(data.uuid); + $('.files').append(input); }); this.on("removedfile", function (file) { if (file.name in filenameDict) { $('#' + filenameDict[file.name]).remove(); } + if ($dropz.data('remove-url') && $dropz.data('csrf')) { + $.post($dropz.data('remove-url'), {file: filenameDict[file.name], _csrf: $dropz.data('csrf')}); + } }) } }); @@ -975,6 +1331,15 @@ $(document).ready(function () { e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-original')) }); + // Clipboard for copying filename on edit page + if ($('.clipboard-tree-name').length) { + new Clipboard(document.querySelector('.clipboard-tree-name'), { + text: function () { + return $('#tree-name').val(); + } + }); + } + // Helpers. $('.delete-button').click(function () { var $this = $(this); @@ -1038,10 +1403,14 @@ $(document).ready(function () { initCommentForm(); initInstall(); initRepository(); - initWiki(); + initWikiForm(); + initIssueForm(); + initEditForm(); + initEditor(); initOrganization(); initWebhook(); initAdmin(); + initQuickPull(); var routes = { 'div.user.settings': initUserSettings, @@ -1057,76 +1426,50 @@ $(document).ready(function () { } }); +function changeHash(hash) { + if (history.pushState) { + history.pushState(null, null, hash); + } + else { + location.hash = hash; + } +} + +function deSelect() { + if (window.getSelection) { + window.getSelection().removeAllRanges(); + } else { + document.selection.empty(); + } +} + +function selectRange($list, $select, $from) { + $list.removeClass('active'); + if ($from) { + var a = parseInt($select.attr('rel').substr(1)); + var b = parseInt($from.attr('rel').substr(1)); + var c; + if (a != b) { + if (a > b) { + c = a; + a = b; + b = c; + } + var classes = []; + for (var i = a; i <= b; i++) { + classes.push('.L' + i); + } + $list.filter(classes.join(',')).addClass('active'); + changeHash('#L' + a + '-' + 'L' + b); + return + } + } + $select.addClass('active'); + changeHash('#' + $select.attr('rel')); +} + $(window).load(function () { - function changeHash(hash) { - if (history.pushState) { - history.pushState(null, null, hash); - } - else { - location.hash = hash; - } - } - - function deSelect() { - if (window.getSelection) { - window.getSelection().removeAllRanges(); - } else { - document.selection.empty(); - } - } - - function selectRange($list, $select, $from) { - $list.removeClass('active'); - if ($from) { - var a = parseInt($select.attr('rel').substr(1)); - var b = parseInt($from.attr('rel').substr(1)); - var c; - if (a != b) { - if (a > b) { - c = a; - a = b; - b = c; - } - var classes = []; - for (var i = a; i <= b; i++) { - classes.push('.L' + i); - } - $list.filter(classes.join(',')).addClass('active'); - changeHash('#L' + a + '-' + 'L' + b); - return - } - } - $select.addClass('active'); - changeHash('#' + $select.attr('rel')); - } - - // Code view. - if ($('.code-view .linenums').length > 0) { - $(document).on('click', '.lines-num span', function (e) { - var $select = $(this); - var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li'); - selectRange($list, $list.filter('[rel=' + $select.attr('id') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null)); - deSelect(); - }); - - $(window).on('hashchange', function (e) { - var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); - var $list = $('.code-view ol.linenums > li'); - var $first; - if (m) { - $first = $list.filter('.' + m[1]); - selectRange($list, $first, $list.filter('.' + m[2])); - $("html, body").scrollTop($first.offset().top - 200); - return; - } - m = window.location.hash.match(/^#(L\d+)$/); - if (m) { - $first = $list.filter('.' + m[1]); - selectRange($list, $first); - $("html, body").scrollTop($first.offset().top - 200); - } - }).trigger('hashchange'); - } + initCodeView(); // Repo clone url. if ($('#repo-clone-url').length > 0) { @@ -1135,7 +1478,6 @@ $(window).load(function () { if ($('#repo-clone-ssh').click().length === 0) { $('#repo-clone-https').click(); } - ; break; default: $('#repo-clone-https').click(); diff --git a/routers/repo/branch.go b/routers/repo/branch.go index 00f30b0f13..453df3745e 100644 --- a/routers/repo/branch.go +++ b/routers/repo/branch.go @@ -5,8 +5,13 @@ package repo import ( + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/context" + "github.com/gogits/gogs/modules/log" + "net/url" + "strings" ) const ( @@ -29,3 +34,53 @@ func Branches(ctx *context.Context) { ctx.Data["Branches"] = brs ctx.HTML(200, BRANCH) } + +func NewBranchPost(ctx *context.Context, form auth.NewBranchForm) { + oldBranchName := form.OldBranchName + branchName := form.BranchName + + if ctx.HasError() || !ctx.Repo.IsWriter() || branchName == oldBranchName { + ctx.Redirect(EscapeUrl(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)) + return + } + + if err := ctx.Repo.Repository.CreateNewBranch(ctx.User, oldBranchName, branchName); err != nil { + ctx.Handle(404, "repo.Branches(CreateNewBranch)", err) + log.Error(4, "%s: %v", "EditFile", err) + return + } + + // Was successful, so now need to call models.CommitRepoAction() with the new commitID for webhooks and watchers + 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.PushCommit{ + commit.ID.String(), + commit.Message(), + commit.Author.Email, + commit.Author.Name, + }}, + } + oldCommitID := "0000000000000000000000000000000000000000" // New Branch so we use all 0s + newCommitID := commit.ID.String() + 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(EscapeUrl(ctx.Repo.RepoLink + "/src/" + branchName)) +} diff --git a/routers/repo/delete.go b/routers/repo/delete.go new file mode 100644 index 0000000000..0aec7f1a1d --- /dev/null +++ b/routers/repo/delete.go @@ -0,0 +1,54 @@ +// 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 repo + +import ( + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/auth" + "github.com/gogits/gogs/modules/context" + "github.com/gogits/gogs/modules/log" +) + +func DeleteFilePost(ctx *context.Context, form auth.DeleteRepoFileForm) { + branchName := ctx.Repo.BranchName + treeName := ctx.Repo.TreeName + + if ctx.HasError() { + ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName + "/" + treeName) + return + } + + if err := ctx.Repo.Repository.DeleteRepoFile(ctx.User, branchName, treeName, form.CommitSummary); err != nil { + ctx.Handle(500, "DeleteRepoFile", err) + return + } + + // Was successful, so now need to call models.CommitRepoAction() with the new commitID for webhooks and watchers + 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.PushCommit{ + commit.ID.String(), + commit.Message(), + commit.Author.Email, + commit.Author.Name, + }}, + } + oldCommitID := ctx.Repo.CommitID + newCommitID := commit.ID.String() + 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) +} diff --git a/routers/repo/edit.go b/routers/repo/edit.go new file mode 100644 index 0000000000..d0cacd360e --- /dev/null +++ b/routers/repo/edit.go @@ -0,0 +1,359 @@ +// 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 repo + +import ( + "io/ioutil" + "path" + "strings" + + "github.com/gogits/git-module" + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/auth" + "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/context" + "github.com/gogits/gogs/modules/log" + "github.com/gogits/gogs/modules/setting" + "github.com/gogits/gogs/modules/template" +) + +const ( + EDIT base.TplName = "repo/edit" + DIFF_PREVIEW base.TplName = "repo/diff_preview" + DIFF_PREVIEW_NEW base.TplName = "repo/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) { + ctx.Data["PageIsEdit"] = true + ctx.Data["IsNewFile"] = isNewFile + ctx.Data["RequireHighlightJS"] = true + + userName := ctx.Repo.Owner.Name + repoName := ctx.Repo.Repository.Name + branchName := ctx.Repo.BranchName + branchLink := ctx.Repo.RepoLink + "/src/" + branchName + treeName := ctx.Repo.TreeName + + var treeNames []string + if len(treeName) > 0 { + treeNames = strings.Split(treeName, "/") + } + + if !isNewFile { + entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treeName) + + if err != nil && git.IsErrNotExist(err) { + ctx.Handle(404, "GetTreeEntryByPath", err) + return + } + + if (ctx.Repo.IsViewCommit) || entry == nil || entry.IsDir() { + ctx.Handle(404, "repo.Home", nil) + return + } + + blob := entry.Blob() + + dataRc, err := blob.Data() + if err != nil { + ctx.Handle(404, "blob.Data", err) + return + } + + ctx.Data["FileSize"] = blob.Size() + ctx.Data["FileName"] = blob.Name() + + buf := make([]byte, 1024) + n, _ := dataRc.Read(buf) + if n > 0 { + buf = buf[:n] + } + + _, isTextFile := base.IsTextFile(buf) + + if !isTextFile { + ctx.Handle(404, "repo.Home", 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) + } + ctx.Data["FileContent"] = string(buf) + } else { + ctx.Data["FileContent"] = content + } + } else { + treeNames = append(treeNames, "") + } + + 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["MdFileExtensions"] = strings.Join(setting.Markdown.MdFileExtensions, ",") + ctx.Data["LineWrapExtensions"] = strings.Join(setting.Editor.LineWrapExtensions, ",") + ctx.Data["PreviewTabApis"] = strings.Join(setting.Editor.PreviewTabApis, ",") + 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 NewFilePost(ctx *context.Context, form auth.EditRepoFileForm) { + editFilePost(ctx, form, true) +} + +func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bool) { + ctx.Data["PageIsEdit"] = true + ctx.Data["IsNewFile"] = isNewFile + ctx.Data["RequireHighlightJS"] = true + + userName := ctx.Repo.Owner.Name + repoName := ctx.Repo.Repository.Name + oldBranchName := ctx.Repo.BranchName + branchName := oldBranchName + branchLink := ctx.Repo.RepoLink + "/src/" + branchName + oldTreeName := ctx.Repo.TreeName + content := form.Content + commitChoice := form.CommitChoice + lastCommit := form.LastCommit + + if commitChoice == "commit-to-new-branch" { + branchName = form.NewBranchName + } + + treeName := form.TreeName + treeName = strings.Trim(treeName, " ") + treeName = strings.Trim(treeName, "/") + + var treeNames []string + if len(treeName) > 0 { + 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["MdFileExtensions"] = strings.Join(setting.Markdown.MdFileExtensions, ",") + ctx.Data["LineWrapExtensions"] = strings.Join(setting.Editor.LineWrapExtensions, ",") + ctx.Data["PreviewTabApis"] = strings.Join(setting.Editor.PreviewTabApis, ",") + ctx.Data["PreviewDiffUrl"] = ctx.Repo.RepoLink + "/preview/" + branchName + "/" + treeName + + if ctx.HasError() { + ctx.HTML(200, EDIT) + return + } + + 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") + 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") + return + } + + } + + treepath := "" + 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 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") + 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") + return + } + } + } + + 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") + 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 + } + } + } + } + } + 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 { + 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") + return + } + } + + message := "" + if form.CommitSummary != "" { + message = strings.Trim(form.CommitSummary, " ") + } else { + if isNewFile { + message = ctx.Tr("repo.add") + " '" + treeName + "'" + } else { + message = ctx.Tr("repo.update") + " '" + treeName + "'" + } + } + if strings.Trim(form.CommitMessage, " ") != "" { + message += "\n\n" + strings.Trim(form.CommitMessage, " ") + } + + if err := ctx.Repo.Repository.UpdateRepoFile(ctx.User, oldBranchName, branchName, oldTreeName, treeName, content, message, 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) + 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.PushCommit{ + commit.ID.String(), + commit.Message(), + commit.Author.Email, + commit.Author.Name, + }}, + } + 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) + } + + // 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 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) + return + } + + diff, err := ctx.Repo.Repository.GetPreviewDiff(models.RepoPath(userName, repoName), branchName, treeName, content, setting.Git.MaxGitDiffLines, setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles) + if err != nil { + ctx.Error(404, err.Error()) + log.Error(4, "%s: %v", "GetPreviewDiff", err) + return + } + + if diff.NumFiles() == 0 { + ctx.Error(200, ctx.Tr("repo.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/issue.go b/routers/repo/issue.go index f3c0f19a87..b79ded5329 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -340,6 +340,8 @@ func NewIssue(ctx *context.Context) { } ctx.Data["RequireHighlightJS"] = true + ctx.Data["RequireSimpleMDE"] = true + ctx.Data["RepoName"] = ctx.Repo.Repository.Name ctx.HTML(200, ISSUE_NEW) } @@ -401,6 +403,9 @@ func ValidateRepoMetas(ctx *context.Context, form auth.CreateIssueForm) ([]int64 func NewIssuePost(ctx *context.Context, form auth.CreateIssueForm) { ctx.Data["Title"] = ctx.Tr("repo.issues.new") ctx.Data["PageIsIssueList"] = true + ctx.Data["RepoName"] = ctx.Repo.Repository.Name + ctx.Data["RequireHighlightJS"] = true + ctx.Data["RequireSimpleMDE"] = true renderAttachmentSettings(ctx) var ( @@ -414,7 +419,7 @@ func NewIssuePost(ctx *context.Context, form auth.CreateIssueForm) { } if setting.AttachmentEnabled { - attachments = form.Attachments + attachments = form.Files } if ctx.HasError() { @@ -634,6 +639,8 @@ func ViewIssue(ctx *context.Context) { ctx.Data["SignInLink"] = setting.AppSubUrl + "/user/login?redirect_to=" + ctx.Data["Link"].(string) ctx.Data["RequireHighlightJS"] = true + ctx.Data["RequireSimpleMDE"] = true + ctx.Data["RepoName"] = ctx.Repo.Repository.Name ctx.HTML(200, ISSUE_VIEW) } @@ -801,7 +808,7 @@ func NewComment(ctx *context.Context, form auth.CreateCommentForm) { var attachments []string if setting.AttachmentEnabled { - attachments = form.Attachments + attachments = form.Files } if ctx.HasError() { diff --git a/routers/repo/pull.go b/routers/repo/pull.go index 822d77c719..c7fee92906 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -660,7 +660,7 @@ func CompareAndPullRequestPost(ctx *context.Context, form auth.CreateIssueForm) } if setting.AttachmentEnabled { - attachments = form.Attachments + attachments = form.Files } if ctx.HasError() { diff --git a/routers/repo/upload.go b/routers/repo/upload.go new file mode 100644 index 0000000000..fedf4064d3 --- /dev/null +++ b/routers/repo/upload.go @@ -0,0 +1,257 @@ +// 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 repo + +import ( + "strings" + + "fmt" + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/auth" + "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/context" + "github.com/gogits/gogs/modules/log" + "github.com/gogits/gogs/modules/setting" + "net/http" + "path" +) + +const ( + UPLOAD base.TplName = "repo/upload" +) + +func renderUploadSettings(ctx *context.Context) { + ctx.Data["RequireDropzone"] = true + ctx.Data["IsUploadEnabled"] = setting.UploadEnabled + ctx.Data["UploadAllowedTypes"] = setting.UploadAllowedTypes + ctx.Data["UploadMaxSize"] = setting.UploadMaxSize + ctx.Data["UploadMaxFiles"] = setting.UploadMaxFiles +} + +func UploadFile(ctx *context.Context) { + ctx.Data["PageIsUpload"] = true + + userName := ctx.Repo.Owner.Name + repoName := ctx.Repo.Repository.Name + branchName := ctx.Repo.BranchName + branchLink := ctx.Repo.RepoLink + "/src/" + branchName + treeName := ctx.Repo.TreeName + + treeNames := []string{""} + if len(treeName) > 0 { + treeNames = strings.Split(treeName, "/") + } + + 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")+"") + renderUploadSettings(ctx) + + ctx.HTML(200, UPLOAD) +} + +func UploadFilePost(ctx *context.Context, form auth.UploadRepoFileForm) { + ctx.Data["PageIsUpload"] = true + renderUploadSettings(ctx) + + userName := ctx.Repo.Owner.Name + repoName := ctx.Repo.Repository.Name + oldBranchName := ctx.Repo.BranchName + branchName := oldBranchName + branchLink := ctx.Repo.RepoLink + "/src/" + branchName + commitChoice := form.CommitChoice + files := form.Files + + if commitChoice == "commit-to-new-branch" { + branchName = form.NewBranchName + } + + treeName := form.TreeName + treeName = strings.Trim(treeName, " ") + treeName = strings.Trim(treeName, "/") + + treeNames := []string{""} + if len(treeName) > 0 { + treeNames = strings.Split(treeName, "/") + } + + 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"] = 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")+"") + + if ctx.HasError() { + ctx.HTML(200, UPLOAD) + 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"), UPLOAD, &form) + log.Error(4, "%s: %s - %s", "BranchName", branchName, "Branch already exists") + return + } + + } + + treepath := "" + for _, 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 !entry.IsDir() { + ctx.Data["Err_Filename"] = true + ctx.RenderWithErr(ctx.Tr("repo.directory_is_a_file"), UPLOAD, &form) + log.Error(4, "%s: %s - %s", "UploadFile", treeName, "Directory given is a file") + return + } + } + + message := "" + if form.CommitSummary != "" { + message = strings.Trim(form.CommitSummary, " ") + } else { + message = ctx.Tr("repo.add_files_to_dir", "'"+treeName+"'") + } + if strings.Trim(form.CommitMessage, " ") != "" { + message += "\n\n" + strings.Trim(form.CommitMessage, " ") + } + + if err := ctx.Repo.Repository.UploadRepoFiles(ctx.User, oldBranchName, branchName, treeName, message, files); err != nil { + ctx.Data["Err_Directory"] = true + ctx.RenderWithErr(ctx.Tr("repo.unable_to_upload_files"), UPLOAD, &form) + log.Error(4, "%s: %v", "UploadFile", err) + return + } + + // Was successful, so now need to call models.CommitRepoAction() with the new commitID for webhooks and watchers + 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.PushCommit{ + commit.ID.String(), + commit.Message(), + commit.Author.Email, + commit.Author.Name, + }}, + } + 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) + } + + // 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 UploadFileToServer(ctx *context.Context) { + if !setting.UploadEnabled { + ctx.Error(404, "upload is not enabled") + return + } + + file, header, err := ctx.Req.FormFile("file") + if err != nil { + ctx.Error(500, fmt.Sprintf("FormFile: %v", err)) + return + } + defer file.Close() + + buf := make([]byte, 1024) + n, _ := file.Read(buf) + if n > 0 { + buf = buf[:n] + } + fileType := http.DetectContentType(buf) + + if len(setting.UploadAllowedTypes) > 0 { + allowedTypes := strings.Split(setting.UploadAllowedTypes, ",") + allowed := false + for _, t := range allowedTypes { + t := strings.Trim(t, " ") + if t == "*/*" || t == fileType { + allowed = true + break + } + } + + if !allowed { + ctx.Error(400, ErrFileTypeForbidden.Error()) + return + } + } + + up, err := models.NewUpload(header.Filename, buf, file, ctx.User.ID, ctx.Repo.Repository.ID) + if err != nil { + ctx.Error(500, fmt.Sprintf("NewUpload: %v", err)) + return + } + + log.Trace("New file uploaded: %s", up.UUID) + ctx.JSON(200, map[string]string{ + "uuid": up.UUID, + }) +} + +func RemoveUploadFileFromServer(ctx *context.Context, form auth.RemoveUploadFileForm) { + if !setting.UploadEnabled { + ctx.Error(404, "upload is not enabled") + return + } + + if len(form.File) == 0 { + ctx.Error(404, "invalid params") + return + } + + uuid := form.File + + if err := models.RemoveUpload(uuid, ctx.User.ID, ctx.Repo.Repository.ID); err != nil { + ctx.Error(500, fmt.Sprintf("RemoveUpload: %v", err)) + return + } + + log.Trace("Upload file removed: %s", uuid) + ctx.JSON(200, map[string]string{ + "uuid": uuid, + }) +} diff --git a/routers/repo/view.go b/routers/repo/view.go index e685597a55..08ee16df1a 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -24,6 +24,7 @@ import ( "github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/modules/template" "github.com/gogits/gogs/modules/template/highlight" + "strconv" ) const ( @@ -40,6 +41,7 @@ func Home(ctx *context.Context) { ctx.Data["Title"] = title ctx.Data["PageIsViewCode"] = true ctx.Data["RequireHighlightJS"] = true + ctx.Data["IsWriter"] = ctx.Repo.IsWriter() branchName := ctx.Repo.BranchName userName := ctx.Repo.Owner.Name @@ -49,6 +51,11 @@ func Home(ctx *context.Context) { branchLink := ctx.Repo.RepoLink + "/src/" + branchName treeLink := branchLink rawLink := ctx.Repo.RepoLink + "/raw/" + branchName + editLink := ctx.Repo.RepoLink + "/_edit/" + branchName + newFileLink := ctx.Repo.RepoLink + "/_new/" + branchName + deleteLink := ctx.Repo.RepoLink + "/delete/" + branchName + forkLink := setting.AppSubUrl + "/repo/fork/" + strconv.FormatInt(ctx.Repo.Repository.ID, 10) + uploadFileLink := ctx.Repo.RepoLink + "/upload/" + branchName // Get tree path treename := ctx.Repo.TreeName @@ -104,8 +111,10 @@ func Home(ctx *context.Context) { 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 @@ -114,8 +123,10 @@ func Home(ctx *context.Context) { 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 - if readmeExist { + ctx.Data["IsMarkdown"] = isMarkdown + if isMarkdown { ctx.Data["FileContent"] = string(markdown.Render(buf, path.Dir(treeLink), ctx.Repo.Repository.ComposeMetas())) } else { // Building code view blocks with line number on server side. @@ -143,6 +154,29 @@ func Home(ctx *context.Context) { ctx.Data["LineNums"] = gotemplate.HTML(output.String()) } } + 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") + } + } + 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 { @@ -200,6 +234,7 @@ func Home(ctx *context.Context) { buf = append(buf, d...) switch { case markdown.IsMarkdownFile(readmeFile.Name()): + ctx.Data["IsMarkdown"] = true buf = markdown.Render(buf, treeLink, ctx.Repo.Repository.ComposeMetas()) default: buf = bytes.Replace(buf, []byte("\n"), []byte(`
`), -1) @@ -220,6 +255,12 @@ func Home(ctx *context.Context) { } ctx.Data["LastCommit"] = lastCommit ctx.Data["LastCommitUser"] = models.ValidateCommitWithEmail(lastCommit) + if ctx.Repo.IsWriter() && ctx.Repo.IsViewBranch { + ctx.Data["NewFileLink"] = newFileLink + "/" + treename + if setting.UploadEnabled { + ctx.Data["UploadFileLink"] = uploadFileLink + "/" + treename + } + } } ctx.Data["Username"] = userName diff --git a/templates/base/alert.tmpl b/templates/base/alert.tmpl index 60b7b588d7..4f53db742a 100644 --- a/templates/base/alert.tmpl +++ b/templates/base/alert.tmpl @@ -1,15 +1,15 @@ {{if .Flash.ErrorMsg}}
-

{{.Flash.ErrorMsg}}

+

{{.Flash.ErrorMsg | Safe}}

{{end}} {{if .Flash.SuccessMsg}}
-

{{.Flash.SuccessMsg}}

+

{{.Flash.SuccessMsg | Safe}}

{{end}} {{if .Flash.InfoMsg}}
-

{{.Flash.InfoMsg}}

+

{{.Flash.InfoMsg| Safe}}

{{end}} diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index 68ea478942..0c19b19cf9 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -24,6 +24,11 @@ {{if .RequireSimpleMDE}} + + + {{end}} diff --git a/templates/repo/branch_dropdown.tmpl b/templates/repo/branch_dropdown.tmpl index 5eb123241e..91db79ba02 100644 --- a/templates/repo/branch_dropdown.tmpl +++ b/templates/repo/branch_dropdown.tmpl @@ -1,6 +1,6 @@
- + +{{if .IsWriter}} + +{{end}} + diff --git a/templates/repo/diff_box.tmpl b/templates/repo/diff_box.tmpl index fefca9b60d..a048ce6084 100644 --- a/templates/repo/diff_box.tmpl +++ b/templates/repo/diff_box.tmpl @@ -90,8 +90,8 @@ {{if $.IsSplitStyle}} - {{range $j, $section := .Sections}} - {{range $k, $line := .Lines}} + {{range $j, $section := $file.Sections}} + {{range $k, $line := $section.Lines}} {{if eq .GetType 4}}
{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}} @@ -109,8 +109,8 @@ {{end}} {{end}} {{else}} - {{range $j, $section := .Sections}} - {{range $k, $line := .Lines}} + {{range $j, $section := $file.Sections}} + {{range $k, $line := $section.Lines}}
diff --git a/templates/repo/diff_preview.tmpl b/templates/repo/diff_preview.tmpl new file mode 100644 index 0000000000..1c4787a33c --- /dev/null +++ b/templates/repo/diff_preview.tmpl @@ -0,0 +1,32 @@ +{{$highlightClass := .File.GetHighlightClass}} +
+
+
+ + + {{range $j, $section := .File.Sections}} + {{range $k, $line := $section.Lines}} + + {{if eq .GetType 4}} + + {{else}} + + + {{end}} + + + {{end}} + {{end}} + +
+ {{/* {{if gt $j 0}}{{end}} */}} + + {{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}} + + {{if $line.RightIdx}}{{$line.RightIdx}}{{end}} + +
{{$section.GetComputedInlineDiffFor $line}}
+
+
+
+
diff --git a/templates/repo/diff_preview_new.tmpl b/templates/repo/diff_preview_new.tmpl new file mode 100644 index 0000000000..34abfe1823 --- /dev/null +++ b/templates/repo/diff_preview_new.tmpl @@ -0,0 +1,12 @@ +
+
+ + + + + + + +
    {{.FileContent}}
+
+
diff --git a/templates/repo/edit.tmpl b/templates/repo/edit.tmpl new file mode 100644 index 0000000000..ba75a988b7 --- /dev/null +++ b/templates/repo/edit.tmpl @@ -0,0 +1,97 @@ +{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+ {{.branchName}} + {{template "base/alert" .}} +
+ {{.CsrfTokenHtml}} + + +
+ +
+ +
+
+ {{.i18n.Tr "repo.release.loading"}} +
+
+ {{.i18n.Tr "repo.release.loading"}} +
+
+
+ +
+

{{.i18n.Tr "repo.commit_changes"}}

+
+ '{{else}}{{.i18n.Tr "repo.update"}} '{{.TreeName}}'{{end}}" value="{{.CommitSummary}}"> +
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+
+
+ + + +
+
+
+
+ + {{.i18n.Tr "repo.cancel"}} +
+
+
+
+{{template "base/footer" .}} diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 03052263cb..be8a52d2db 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -31,8 +31,20 @@ {{end}} - {{if eq $n 0}} -
+
+
+ {{if .NewFileLink}} + + {{.i18n.Tr "repo.new_file"}} + + {{end}} + {{if .UploadFileLink}} + + {{.i18n.Tr "repo.upload_file"}} + + {{end}} +
+ {{if eq $n 0}}
- - {{end}} + {{end}} + {{if .IsFile}} {{template "repo/view_file" .}} diff --git a/templates/repo/issue/comment_tab.tmpl b/templates/repo/issue/comment_tab.tmpl index 851c3b1fae..6f9c91542a 100644 --- a/templates/repo/issue/comment_tab.tmpl +++ b/templates/repo/issue/comment_tab.tmpl @@ -4,13 +4,14 @@ {{.i18n.Tr "repo.release.preview"}}
- +
{{.i18n.Tr "repo.release.loading"}}
{{if .IsAttachmentEnabled}} -
+
{{end}} diff --git a/templates/repo/upload.tmpl b/templates/repo/upload.tmpl new file mode 100644 index 0000000000..9253b5cc9e --- /dev/null +++ b/templates/repo/upload.tmpl @@ -0,0 +1,79 @@ +{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+ {{.branchName}} + {{template "base/alert" .}} +
+ {{.CsrfTokenHtml}} + +
+
+
+
+
+ +
+

{{.i18n.Tr "repo.commit_changes"}}

+
+ +
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+
+
+ + + +
+
+
+
+ + {{.i18n.Tr "repo.cancel"}} +
+
+
+
+{{template "base/footer" .}} diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index 76175334d2..0321dbd09b 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -12,20 +12,34 @@ {{.FileName}} {{FileSize .FileSize}} {{end}} {{if not .ReadmeInList}} -
-
+
+ + {{if .FileEditLink}} + + {{else}} + + {{end}} + {{if .FileDeleteLink}} +
+ {{.CsrfTokenHtml}} + + +
+ {{else}} + + {{end}}
{{end}}
-
- {{if .ReadmeExist}} +
+ {{if .IsMarkdown}} {{if .FileContent}}{{.FileContent | Str2html}}{{end}} {{else if not .IsFileText}}
@@ -34,7 +48,7 @@ {{else if .IsPDFFile}} {{else}} - {{.i18n.Tr "repo.file_view_raw"}} + {{.i18n.Tr "repo.file_view_raw"}} {{end}}
{{else if .FileSize}} @@ -54,3 +68,13 @@
+ + diff --git a/templates/repo/wiki/new.tmpl b/templates/repo/wiki/new.tmpl index 0e96f58bcc..af87e9c43d 100644 --- a/templates/repo/wiki/new.tmpl +++ b/templates/repo/wiki/new.tmpl @@ -18,7 +18,7 @@
- +