diff --git a/cmd/web.go b/cmd/web.go index aa814bed81..d3d339de43 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -531,6 +531,7 @@ func runWeb(ctx *cli.Context) { m.Group("/pulls/:index", func() { m.Get("/commits", repo.ViewPullCommits) m.Get("/files", repo.ViewPullFiles) + m.Post("/merge", reqRepoAdmin, repo.MergePullRequest) }) m.Group("", func() { diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index cd9824edc7..64698fc922 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -470,10 +470,14 @@ pulls.nothing_to_compare = There is nothing to compare because base and head bra pulls.has_pull_request = `There is already a pull request between these two targets: %[2]s#%[3]d` pulls.create = Create Pull Request pulls.title_desc = wants to merge %[1]d commits from %[2]s into %[3]s +pulls.merged_title_desc = merged %[1]d commits from %[2]s into %[3]s %[4]s pulls.tab_conversation = Conversation pulls.tab_commits = Commits pulls.tab_files = Files changed pulls.reopen_to_merge = Please reopen this pull request to perform merge operation. +pulls.merged = Merged +pulls.has_merged = This pull request has been merged successfully! +pulls.data_borken = Data of this pull request has been borken due to deletion of fork information. pulls.can_auto_merge_desc = You can perform auto-merge operation on this pull request. pulls.cannot_auto_merge_desc = You can't perform auto-merge operation because there are conflicts between commits. pulls.cannot_auto_merge_helper = Please use commond line tool to solve it. diff --git a/models/issue.go b/models/issue.go index 9f0cb3c9e9..9810a2595a 100644 --- a/models/issue.go +++ b/models/issue.go @@ -21,6 +21,7 @@ import ( "github.com/go-xorm/xorm" "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/process" "github.com/gogits/gogs/modules/setting" @@ -850,20 +851,24 @@ const ( // PullRequest represents relation between pull request and repositories. type PullRequest struct { - ID int64 `xorm:"pk autoincr"` - PullID int64 `xorm:"INDEX"` + ID int64 `xorm:"pk autoincr"` + PullID int64 `xorm:"INDEX"` + Pull *Issue `xorm:"-"` PullIndex int64 - HeadRepoID int64 `xorm:"UNIQUE(s)"` + HeadRepoID int64 HeadRepo *Repository `xorm:"-"` - BaseRepoID int64 `xorm:"UNIQUE(s)"` + BaseRepoID int64 HeadUserName string - HeadBarcnh string `xorm:"UNIQUE(s)"` - BaseBranch string `xorm:"UNIQUE(s)"` + HeadBarcnh string + BaseBranch string MergeBase string `xorm:"VARCHAR(40)"` MergedCommitID string `xorm:"VARCHAR(40)"` Type PullRequestType CanAutoMerge bool HasMerged bool + Merged time.Time + MergerID int64 + Merger *User `xorm:"-"` } func (pr *PullRequest) AfterSet(colName string, _ xorm.Cell) { @@ -874,9 +879,93 @@ func (pr *PullRequest) AfterSet(colName string, _ xorm.Cell) { if err != nil { log.Error(3, "GetRepositoryByID[%d]: %v", pr.ID, err) } + case "merger_id": + if !pr.HasMerged { + return + } + + pr.Merger, err = GetUserByID(pr.MergerID) + if err != nil { + if IsErrUserNotExist(err) { + pr.MergerID = -1 + pr.Merger = NewFakeUser() + } else { + log.Error(3, "GetUserByID[%d]: %v", pr.ID, err) + } + } + case "merged": + if !pr.HasMerged { + return + } + + pr.Merged = regulateTimeZone(pr.Merged) } } +// Merge merges pull request to base repository. +func (pr *PullRequest) Merge(baseGitRepo *git.Repository) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + pr.Pull.IsClosed = true + if _, err = sess.Id(pr.Pull.ID).AllCols().Update(pr.Pull); err != nil { + return fmt.Errorf("update pull: %v", err) + } + + headRepoPath := RepoPath(pr.HeadUserName, pr.HeadRepo.Name) + headGitRepo, err := git.OpenRepository(headRepoPath) + if err != nil { + return fmt.Errorf("OpenRepository: %v", err) + } + pr.MergedCommitID, err = headGitRepo.GetCommitIdOfBranch(pr.HeadBarcnh) + if err != nil { + return fmt.Errorf("GetCommitIdOfBranch: %v", err) + } + + pr.HasMerged = true + if _, err = sess.Id(pr.ID).AllCols().Update(pr); err != nil { + return fmt.Errorf("update pull request: %v", err) + } + + // Clone base repo. + tmpBasePath := path.Join("data/tmp/repos", com.ToStr(time.Now().Nanosecond())+".git") + os.MkdirAll(path.Dir(tmpBasePath), os.ModePerm) + defer os.RemoveAll(path.Dir(tmpBasePath)) + + var stderr string + if _, stderr, err = process.ExecTimeout(5*time.Minute, + fmt.Sprintf("PullRequest.Merge(git clone): %s", tmpBasePath), + "git", "clone", baseGitRepo.Path, tmpBasePath); err != nil { + return fmt.Errorf("git clone: %s", stderr) + } + + // Check out base branch. + if _, stderr, err = process.ExecDir(-1, tmpBasePath, + fmt.Sprintf("PullRequest.Merge(git checkout): %s", tmpBasePath), + "git", "checkout", pr.BaseBranch); err != nil { + return fmt.Errorf("git checkout: %s", stderr) + } + + // Pull commits. + if _, stderr, err = process.ExecDir(-1, tmpBasePath, + fmt.Sprintf("PullRequest.Merge(git pull): %s", tmpBasePath), + "git", "pull", headRepoPath, pr.HeadBarcnh); err != nil { + return fmt.Errorf("git pull: %s", stderr) + } + + // Push back to upstream. + if _, stderr, err = process.ExecDir(-1, tmpBasePath, + fmt.Sprintf("PullRequest.Merge(git push): %s", tmpBasePath), + "git", "push", baseGitRepo.Path, pr.BaseBranch); err != nil { + return fmt.Errorf("git push: %s", stderr) + } + + return sess.Commit() +} + // NewPullRequest creates new pull request with labels for repository. func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []string, pr *PullRequest, patch []byte) (err error) { sess := x.NewSession() @@ -937,8 +1026,8 @@ func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []str return sess.Commit() } -// GetPullRequest returnss a pull request by given info. -func GetPullRequest(headRepoID, baseRepoID int64, headBranch, baseBranch string) (*PullRequest, error) { +// GetUnmergedPullRequest returnss a pull request hasn't been merged by given info. +func GetUnmergedPullRequest(headRepoID, baseRepoID int64, headBranch, baseBranch string) (*PullRequest, error) { pr := &PullRequest{ HeadRepoID: headRepoID, BaseRepoID: baseRepoID, @@ -946,7 +1035,7 @@ func GetPullRequest(headRepoID, baseRepoID int64, headBranch, baseBranch string) BaseBranch: baseBranch, } - has, err := x.Get(pr) + has, err := x.Where("has_merged=?", false).Get(pr) if err != nil { return nil, err } else if !has { diff --git a/models/repo.go b/models/repo.go index ec6dfbfcbf..c640db5d49 100644 --- a/models/repo.go +++ b/models/repo.go @@ -469,20 +469,20 @@ func initRepoCommit(tmpPath string, sig *git.Signature) (err error) { if _, stderr, err = process.ExecDir(-1, tmpPath, fmt.Sprintf("initRepoCommit(git add): %s", tmpPath), "git", "add", "--all"); err != nil { - return errors.New("git add: " + stderr) + return fmt.Errorf("git add: %s", stderr) } if _, stderr, err = process.ExecDir(-1, tmpPath, fmt.Sprintf("initRepoCommit(git commit): %s", tmpPath), "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email), "-m", "initial commit"); err != nil { - return errors.New("git commit: " + stderr) + return fmt.Errorf("git commit: %s", stderr) } if _, stderr, err = process.ExecDir(-1, tmpPath, fmt.Sprintf("initRepoCommit(git push): %s", tmpPath), "git", "push", "origin", "master"); err != nil { - return errors.New("git push: " + stderr) + return fmt.Errorf("git push: %s", stderr) } return nil } @@ -1004,6 +1004,8 @@ func DeleteRepository(uid, repoID int64) error { return err } else if _, err = sess.Delete(&Collaboration{RepoID: repoID}); err != nil { return err + } else if _, err = sess.Delete(&PullRequest{BaseRepoID: repoID}); err != nil { + return err } // Delete comments and attachments. diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index fb41a4a42f..260aa7d50e 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x72\xdc\x48\x8e\xe7\xff\x7c\x0a\xb6\x37\x7c\xee\x8e\x90\xcb\xd1\xdd\x71\x1f\xd1\x61\xbb\x4f\x96\xda\x1f\xbb\x96\xa5\xb1\xe4\x99\x9b\x73\x38\xd8\xac\x22\xab\x8a\xe3\x2a\xb2\x9a\x64\xb9\xac\xd9\xd8\x88\x7b\x8d\x7b\xbd\x7b\x92\x03\x7e\x00\xf2\x83\x64\xc9\xf6\xec\xc6\xdd\x3f\x12\x2b\x13\xf9\x85\x44\x22\x01\x24\x12\x99\xef\x76\x59\x51\x76\x8b\xf4\x49\x7a\x9a\xee\xf2\xaa\xde\x94\x5d\x97\x76\xe5\x66\xf9\x70\xdd\x74\x7d\x59\xa4\x2f\xaa\x9e\x7e\xb7\x9f\xaa\x45\x99\x24\xeb\x66\x5b\x12\xe8\x4b\xfa\x97\x14\x79\xb7\x9e\x37\x79\x5b\x50\xc2\xb9\x7d\x27\xe5\xe7\xdd\xa6\x69\x19\xe8\x37\xf9\x4a\xd6\xe5\x66\xc7\x65\xe8\x5f\xd2\x55\xab\x3a\xab\x6a\xfa\x79\x4d\x5f\xe9\xab\x3a\xe9\x9a\x45\x95\x6f\xb2\x20\x03\x09\x96\xff\x4b\xfa\x53\x5d\xa4\xd7\x7d\xb9\x4b\x1f\x77\xdb\x7c\xb3\x79\x9a\x77\x28\xd2\x97\x69\xbe\x58\x34\xfb\xba\x7f\xfc\x48\x32\xa4\xf2\x66\xdf\x5b\xed\x97\xfb\x5e\xd2\xf6\x3b\x4b\x7a\xb7\x4b\xda\x72\x55\xd1\xc0\x5a\x4a\x7a\xab\x9f\xc9\xa1\x9c\x77\x55\xcf\x9d\xfe\x8b\x7c\x25\x9f\xca\xb6\xab\x1a\xee\xcf\x9f\xe5\x2b\xd9\xe5\x2b\x06\xb8\xa2\x7f\x49\x5f\x6e\x77\x9b\x1c\x05\x6e\xf4\x33\xd9\xe4\xf5\x6a\x2f\x30\xaf\xf5\x33\x59\xb4\x25\x65\x65\x75\x79\xa0\xd4\x33\xfc\x48\xe9\xc7\x6c\x36\x4b\xf6\x84\xd3\x6c\xd7\x36\xcb\x6a\x53\x66\x79\x5d\x64\x5b\xc1\xda\x3b\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x8c\xb2\x20\x04\x65\x79\xa7\x63\xa1\xa9\x21\x7c\xe5\x5d\x82\xaa\xea\x7c\x6b\xa5\xf9\x33\x29\xb7\x79\xb5\xe1\x49\x78\xc8\x1f\xd4\xf9\xae\x3b\x34\x98\xaa\x2b\xfd\x24\x44\x64\xfd\xed\xae\x04\x1e\x1e\xde\xd0\x57\xb2\xc8\x77\xfd\x62\x9d\x73\x5f\xe5\x2b\x21\xa0\x5d\x43\x08\x69\xda\x5b\xc0\xd9\x8f\xa4\x69\x57\x79\x5d\xfd\x3d\xef\x05\x49\x97\xc1\xcf\x64\x5b\xb5\x6d\xc3\xf8\xbd\xc0\x47\x42\x23\xce\xb8\x1e\x4a\x79\x43\x98\x08\x6a\xe1\x9c\x6d\xb5\x6a\x05\x95\x9c\x79\x81\x5f\x5c\x0b\xe7\x2d\x9b\xf6\xa3\x66\x3c\xe7\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5f\x73\x2f\xf0\x23\x02\xe8\x92\xbc\xd8\x12\x2a\x77\x79\x5d\x32\x8e\x4e\xf9\x17\xe1\x85\x7e\x25\x4a\x53\x59\x57\xf6\x7d\x55\xaf\x18\xd9\xa7\x92\x94\x5e\x6b\x52\x12\xe4\xb9\xb4\xdb\x66\xef\xa6\x93\xd2\xff\x4a\x3f\xd3\x2b\xf9\x29\x79\x41\x21\x64\xba\x92\x3c\x92\x2e\x5b\x96\x65\x21\x63\xe9\xd2\xe7\xf4\x9d\xec\xf6\x9b\x0d\x61\xed\x8f\x7d\xd9\xf5\x5c\xe8\x8a\x7e\xd3\xf8\xe5\x77\x52\x75\x1d\x7d\x50\xf2\x2b\x7c\x24\x34\x75\xf5\x02\x83\x39\xc3\x47\x92\xbc\xef\xca\xbc\x5d\xac\x3f\x24\xf2\x1f\x7d\xe5\x0f\xa6\xbd\x63\x93\xca\x84\xa4\x44\x24\x2d\x58\x03\xc9\xa2\x29\xf8\xc7\x19\xfd\xa3\xaa\xab\xba\xeb\x69\xc5\x7d\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xb1\x7c\x3b\x9e\xc1\xf4\x79\xd5\x76\xfd\xc3\xbe\x22\x62\x7d\xbb\xaf\x13\x1e\x1f\xad\xb6\xac\x98\x1b\x13\x7a\xd1\x10\x8a\x90\xdc\xd2\xf8\x2e\x6e\xaf\xff\xf4\xfa\x24\xbd\x22\x4e\xb4\x6a\x4b\xfa\x4e\xa9\x0e\xfa\x47\x65\x7e\x9e\x25\x54\xca\x5a\x3a\xcf\xfb\x7c\x9e\x77\xa5\x47\x2b\x67\x0a\x75\xbb\x3c\xd0\x38\x73\x35\x70\xb0\xae\x8f\xc6\x3b\xb5\x42\xa8\x0e\x5d\x57\xae\x8e\x37\xbc\xb8\x28\x9d\x99\x1a\x0a\x5f\x6d\x4a\x4e\xa7\xaa\xd2\x57\x6f\xde\x5c\x9e\x3f\x4b\xcb\x7a\x55\xd5\x65\x7a\xa8\xfa\x75\xba\xef\x97\xff\x2d\x5b\x95\x75\xd9\x12\x8f\x5b\x54\x29\xad\xa9\x96\x28\x21\x25\xc2\x96\xc1\xcd\x92\xae\xdb\xd0\xda\x07\x7a\xaf\xaf\x5f\xa7\x17\x8c\xe2\x5d\xde\xaf\xd1\x91\x7e\x9d\x74\x7f\x6c\x18\x45\xae\xc1\x9b\x75\x99\x82\xca\x00\xd4\x2c\x0d\x1f\x69\xa1\x7d\x9c\x25\x65\xdb\x66\xc4\x96\xfa\xdb\x4c\x0b\x6b\x7d\x43\x48\xa9\x82\x48\xa7\x6e\xfa\x74\x5e\xa6\x28\x33\x4b\x12\xeb\xb0\x61\xf7\x74\xb7\xdb\x54\x0b\x59\xeb\x2f\x24\xcf\x23\x9a\x77\x10\xc5\x52\x08\x07\x44\x59\x5e\x80\x2e\x62\xcf\xbc\x1e\xd2\x88\x81\xa0\xfc\xba\x24\x06\xb8\xde\xaf\x84\xed\x6d\x9a\x7d\xf1\x1d\x28\xd5\x7a\xef\x09\x35\x7d\xdb\x50\x87\x81\x1d\x07\xe0\x9b\x38\x25\x8a\xe3\x4d\xab\x2d\xb7\x0d\xf1\x15\x47\xec\x15\x11\xd4\xa1\xa2\x4c\x1a\x69\x97\x7f\xa2\xf5\xd6\x37\x69\xbf\xae\xba\xb4\x20\x62\x5b\x70\xc5\xb4\x34\xf6\xb4\x5d\x08\x59\x10\x81\x0a\x69\x58\x5a\x3c\x07\x80\xda\xee\x89\x9a\xd6\x54\x19\x6f\x46\xbc\x73\x52\x95\x53\xfd\xc4\x90\xa8\x1e\xd0\x37\x51\x6e\x43\x5c\x99\xf9\xe6\x39\x3e\xf4\x77\x58\x3f\xf5\x2a\x5f\x2e\xa9\x57\x1d\x51\xc5\xcb\x74\xb1\x69\x88\xa4\xde\xbd\x7d\xdd\x31\xc1\xac\xb3\x5d\xd3\x62\x9b\xa3\xac\x2b\xfa\x74\x69\x01\xa2\x19\xa2\xde\x6f\xe7\xf4\xeb\xb0\xae\x88\x03\x00\xed\x5c\x82\x77\x73\x4a\xa5\x26\xf6\x1d\x4d\xe1\x49\x4a\x24\x4c\x23\x20\x94\x81\x00\x78\x0c\x45\xd5\xe5\x73\x9a\x7b\x06\x5f\xd2\xb6\xb5\x6f\x89\xac\xd6\x7d\xbf\xb3\x96\x5f\xde\xdc\x5c\x49\xd3\x2e\xf5\xae\xb6\xf3\x80\x32\x30\x07\x1b\xde\x78\xeb\xb4\xa9\x67\x20\x92\x7d\xbb\x19\xd0\x0f\x8d\xd5\x72\x8e\xe0\x85\xbb\xf0\x88\xff\x5c\x7b\xf4\x00\xcf\x1d\x49\x27\x07\x50\x13\xe1\xb8\xc4\x06\x48\x44\xdd\xec\xb8\xde\x80\xaa\x2f\x35\xc1\x93\x32\x36\x4d\x97\x2f\x5b\x27\xe5\x42\xf6\x09\xd8\xff\x96\x06\xac\x6c\xe4\xfa\x82\xd0\x00\x5e\x82\xd4\x65\xdb\x6c\x29\xf5\x39\xfd\xf3\x09\xbe\xfb\x17\x5c\x1f\x60\xf2\xa2\x20\xfe\xd6\x9d\xa4\x6f\x9f\x9f\xa5\xff\xf9\xe7\x9f\x7e\x9a\xa5\xaf\x7a\x5e\x89\x4c\x9c\x7f\x63\xa2\xa2\x4f\xd9\xc3\x1d\x28\xb1\x8c\x9e\xe8\xee\x1e\xaf\xac\x7b\xe9\x63\xe4\xfe\xf7\xf2\x73\x4e\xf2\x47\x39\x5b\x34\xdb\xa7\xcc\x55\xb6\x79\x3f\x4b\x38\x87\xc8\x55\xe9\xf8\xba\xac\x0b\xfa\x50\x49\x40\xf3\x02\x76\xa7\xf9\x81\x5c\x20\x52\x51\xb6\x68\xea\x65\xd5\xf2\x80\x7e\xab\x41\x0d\x26\x2f\xd1\x3e\x80\x1c\xdb\x6e\x09\x69\xc4\x41\xaa\xe5\xad\x07\xc5\x50\xdf\x70\xa2\x4e\x68\x22\x54\x97\xa9\x28\xe9\xb0\x7c\x2d\xc4\xc8\xf3\x76\x49\xc3\x6b\x0d\xdf\x9d\x47\x78\xb3\x5c\x6e\x88\xa3\x1a\x97\xd4\x16\x2e\x25\x55\x18\x66\x08\x42\xc4\xb8\x83\xc4\x77\xae\x44\x7c\x76\xfe\x26\x2d\x3f\x11\xb5\x11\x39\xd0\x16\x5d\xec\x17\xa0\x30\x86\x3d\x49\x79\x7f\x22\xfc\xd2\xda\x58\x08\x5f\x0d\x98\x04\x77\x8d\x39\xd1\x82\x80\x88\x37\xe8\xa2\xc8\x48\x42\xf9\x44\x1c\xb4\x0d\x9a\x78\x61\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\x27\x49\x3a\x2f\xa8\x2f\xf3\x5b\xf0\x9d\x8e\x89\xa1\x28\x97\xf9\x7e\xd3\xfb\x7e\xc9\xc4\xb5\x26\x93\x59\x4b\xd7\x2c\xcc\x87\x79\x93\x05\x46\x1d\x04\xf5\x74\xc3\xb2\x44\x86\xf5\xe6\x36\x85\x00\x05\x7a\x15\x11\xd7\x64\xf1\x6e\x96\xe8\xe6\x6d\x12\x7d\xf6\xa9\x82\xf4\xeb\x48\x08\xb9\x26\xde\x33\xaf\xf9\x33\x03\xb0\x58\xdd\x4d\x96\x75\x1d\xbb\xe4\x86\x3b\x27\xf9\x0a\x1e\xb8\x0b\x68\x81\xc5\x73\xc2\xdc\xa7\x0a\xac\x57\x27\x11\x7d\xa5\x99\x44\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa2\x3a\x51\x66\xa6\xd2\xa0\x0a\x68\x26\x88\x90\x90\x96\x16\x4d\xca\x3b\x23\xf8\x3b\x95\xb6\xa1\xd6\x3a\x7c\x1d\x73\xda\x56\xab\x35\xf1\xbb\xe6\x70\x22\x48\x3b\xac\x9b\x92\x69\xfa\xd5\xf9\x93\x1f\xa5\x1f\x2b\xe6\xf6\xae\x10\xef\x13\xf9\x9e\x26\x9c\x30\xaa\xa4\x25\x5d\x70\xfb\x2d\x20\x47\x72\xa7\x00\x0d\x25\x7d\x93\x65\xc7\xe2\x8b\xae\xdf\x30\x4f\x17\xae\x87\x91\xd2\x03\x6d\x41\xc5\xba\x6c\xd5\x40\x5e\x35\x31\x8e\xf7\x2e\x52\x7d\xba\x3e\x5b\x55\x7d\xb6\x64\x46\xc2\x75\x3e\xe7\xb2\xbc\x95\x52\x4e\xfa\x80\xb2\x1e\xa4\xc4\x8d\x48\x08\x2f\x7e\x49\xef\x7f\x52\xf9\xe5\x67\xe6\x10\x19\xd1\x74\xb5\xc1\x64\xa8\x14\xdc\x96\x22\x3e\x99\xba\x55\x34\xb4\xfe\x18\xe7\xdd\x7e\x87\x9d\x46\x45\x96\x93\x74\x27\x80\x45\x73\xa8\x79\x2d\x80\x15\xd2\xaa\xaf\xa0\x2c\xce\xab\x3a\xa7\xed\xd6\x6a\x01\x8b\xbd\x4f\xd4\xf0\xe6\xf2\x06\x80\xab\x66\xbe\xaf\x36\x85\x01\xcc\x68\x84\x9f\xf2\x4d\x55\xb0\xe0\xa9\xf3\x1e\x0a\x79\x96\x54\x49\x5f\x16\x4d\xcb\xf2\x01\x46\x63\x05\x8f\x08\x26\x2d\x6f\xf8\x48\xa6\xb2\x0a\x8b\x72\x4e\x86\x60\x34\xd0\xc4\x43\x22\x67\x09\x03\x14\x53\x75\xf5\x83\x1e\x3d\x5d\xec\xa9\x2d\x9a\x74\x4e\xa6\x82\x5d\xfa\xf0\x29\xfd\x4d\x58\x5e\x11\x7e\xbc\x1a\x23\x9e\x33\x53\xc9\xdc\xcb\x2a\x8d\xba\x1a\x91\xb7\xa3\x2e\x23\xde\x60\xac\x61\x7f\x8d\x04\xba\xbd\xd0\x2b\x6b\xc6\x1b\x9a\xd6\xf2\x3b\xfa\x78\x40\x0b\x78\xb5\xc1\x24\xe4\x10\xe7\x48\xae\x6d\x08\x6f\x4c\x20\x27\xb2\x5c\x96\x34\x34\xe6\x6c\x7d\xfe\x91\xfa\x96\xb3\xf8\x90\xbc\x67\xeb\xc1\x87\x64\x2f\x12\x61\xb3\x29\x9c\xf4\x0d\x9a\x6e\xda\xa1\xb6\xea\x81\x1c\xbd\x76\x24\x56\x2f\xd6\x99\xb3\x3d\x30\x52\xfa\xf2\x33\xf6\x62\x64\x79\x53\x04\x13\x3b\x67\x25\xdb\x5b\x4c\x17\x0f\xe2\xe2\xd6\xcf\x16\xc9\x83\xb4\x44\x48\x67\x99\x37\x8c\xb5\x4f\xa5\x83\x3a\x0b\x53\xe3\x02\x54\x17\x49\xae\x5a\x55\xac\x54\x52\x96\x68\xbe\x9a\x2b\xda\x6f\x97\x80\x89\xa9\xe1\x04\xbc\x8e\xe6\x53\x15\xb8\x19\x4d\x0c\xb4\x43\x6b\x99\x38\xe2\xad\xac\x8b\xa0\xcd\xe4\xbd\x1a\x55\x3e\x24\x06\xf7\x36\xce\x27\x6e\x42\x9a\x9e\xb7\x36\x64\x36\xbb\xce\xea\xc0\x4a\xb2\x32\x14\xbf\xc1\xaf\xcb\x1d\xcb\x02\xdb\x0e\x64\xb1\x21\xc8\xe2\x56\xa5\x59\x47\x20\xbf\x0a\xab\x26\x8a\x21\x06\xf7\x9d\x99\x6b\xbe\xb1\x8a\x67\x15\x91\x02\xca\xc7\x5b\x8f\x98\x40\x48\xe8\x84\xdd\xa7\x6d\x6f\x4f\xd2\x68\x13\x5b\xe7\x1d\xb1\x6f\xda\xb9\xb5\x58\x31\x33\x7d\x8b\xa7\x3d\x5f\xc8\x9a\x81\xe9\x06\x54\x2e\x25\x9b\x76\xb8\x27\x72\x0f\x85\xc3\x69\x2b\x4e\x92\x81\x9c\x12\x8a\x33\x13\x6d\x12\xc2\xb6\x25\x0b\xb3\xd9\x56\xac\x25\xf2\x2b\xbd\x28\x13\x92\xb8\x56\xb4\xa0\x8d\x60\x9f\xb0\x92\xbb\x82\xcc\xaf\xf4\xca\x00\x65\x1f\xb2\x60\x85\xb0\x94\x5f\xcd\x44\x45\x9c\xe1\x00\x0b\x00\xad\xed\x11\xfa\x69\xb3\xa2\xec\x99\xb1\x74\xd9\xb1\x21\x78\x75\xc4\x2d\x3c\x12\x4f\xd9\xbc\x94\x86\x50\x2a\x00\xfb\x61\x71\x01\xe6\x1a\x8f\xe7\x4f\xef\x77\x8f\x1f\xcd\x9f\x3a\xde\xba\x58\x97\x8b\x8f\x42\x7f\x55\x3d\x6f\x3e\x43\x85\xa5\x89\x67\x1c\xd7\xbc\xc6\xee\x17\xe9\x9a\x72\xa1\xe5\x10\x2f\xa0\x62\x84\x78\xce\x8d\x26\x8d\x3a\xc3\x2c\x63\x66\xc6\x3e\xb7\xbb\x18\x21\x51\x69\x34\x22\x3d\x4b\x68\x1a\x79\xf1\x61\x1d\x78\xba\x3d\xe5\x54\xa6\x5c\xec\x13\x9e\x74\x31\xde\x4d\xb5\xad\xfa\x11\xe9\x30\x23\xca\x95\x04\xd5\x72\x62\xb8\x44\x5d\xc0\x06\xfa\x42\xec\x9c\xaa\xa1\x8d\xd7\xc8\xe9\x90\x93\xf6\xf3\x73\x4a\x24\xb4\xa7\x6d\x8c\xc7\x44\xdd\x24\x7e\x9e\xf3\xce\x4d\x9a\x4f\xde\x65\xfb\x5a\xd1\x5a\x16\x46\x4c\x2f\x2b\xec\x32\xdc\xae\x91\x7c\x00\x65\x98\x57\x01\x3e\xfd\xde\x61\xfc\x07\x92\xf6\x97\xae\x18\xb3\x7e\xee\x50\xc5\xc2\x66\x3e\x39\x79\xc4\x1a\xeb\x52\x14\x56\x60\x80\xe1\x78\xa2\x49\xeb\xf1\xb3\x47\xaa\xd3\x47\x4a\xc1\x84\xcc\xf7\x7d\xdf\xb0\x32\xb1\x61\xaa\x91\x32\xd6\xeb\x33\x00\x42\x3f\xf2\xf5\x61\x42\x42\x3c\xc9\xdc\x94\x26\xdc\x67\xde\xec\xaa\x6a\xd8\x60\x74\xba\x57\x3a\xb0\x42\x0c\x20\x79\x7d\x6b\xa4\x4c\x04\xc1\xbd\xe0\x06\xfb\xe9\xbe\x7c\xdf\x96\x3f\xf8\xde\xb8\x35\x83\x12\xd6\x23\x29\x1e\xac\xa7\xb7\xc8\x15\x83\x9b\xad\x3a\xdb\xfa\xd4\x6c\xe5\xe9\xa3\x8d\xd1\x8b\x7c\x5e\x19\xc4\x60\x49\xee\x2c\x80\x68\x1a\x05\x4a\xcf\x06\x6d\x79\x3d\x6e\x8c\xc1\x3e\xee\xb2\xdf\xc1\xfa\xa6\xc9\xba\xb5\xe8\xcc\xd6\x3d\xd2\xb7\xeb\x55\x64\x78\x81\xd1\x1d\x44\xf7\x5f\x78\x9f\x24\xcd\x24\xdf\x7c\x48\x6e\x61\xe1\xfb\x2b\x71\xf8\x1a\xb6\xd3\x26\xa1\x0c\xd1\xb2\x2e\xf0\x41\xa0\xac\xf2\x7d\x48\x78\x0f\x7d\x33\x90\x0b\x79\x8b\xd0\xb4\x40\x40\x41\xd6\x6f\x91\xb8\x67\x53\x98\x5c\x4d\xc8\x90\x6f\x4b\x6f\x23\xc6\x97\x1b\xe2\xf5\xf5\xcb\x1b\xd3\xe1\xae\x5f\xa6\x1f\x4b\xad\xfc\x65\xdf\xef\xba\x77\xd0\xe7\x45\x39\x67\x4d\xfe\x2a\xbf\x65\xa9\x4d\x92\xf5\x07\x32\x6e\xca\x7c\xab\xbd\xe4\x4f\xa9\xe2\x94\xb6\x33\x4d\xe4\x4f\xda\xe5\x02\x3b\x51\x02\xf9\xc5\x86\x20\xc2\x8c\xca\x0d\x4e\x7f\x28\xd5\x00\xfd\xfb\xc8\xb8\xf5\x7b\x92\x6f\x76\xeb\x1c\x02\x44\x00\x06\x3b\x0e\x01\x61\xe2\x53\x80\x80\x16\xf6\xdb\xb2\xad\x16\xd0\xb6\xa8\xc0\xf7\x0f\xb3\x1f\x60\xc2\xa3\x85\x42\x92\x64\x5c\x59\x41\x8b\xe4\x1f\xaa\x90\xbf\x59\xca\x0c\xeb\xed\xaa\xbf\xdb\x28\xa2\xea\x38\x9d\x78\x0e\x41\x40\xa6\xf3\x50\x0e\x08\x1b\x23\xcb\x77\x3d\x9b\x75\x28\x81\x64\xc8\xa8\xea\x6d\xfe\xf9\x4b\x05\xb7\xcd\x44\x39\x61\x05\xbe\x90\x2d\x78\x1d\x62\xcc\x0e\x08\x9e\x0d\x37\x47\xa1\x69\xea\x19\xa4\xfe\x48\xbb\x5a\xed\xc0\xde\xc9\xef\x14\xbf\x7f\xb1\xe3\x08\xda\x42\x54\x02\x4f\xdd\xc1\x04\x6d\xce\x05\xf3\x4d\x48\xd2\x33\xbf\xdc\x42\xe9\xda\x91\x33\x34\x6c\x55\x7c\x1c\xe3\x60\xb5\x1a\x8a\x06\x91\xd4\xcc\x9f\xa1\x64\xbc\x47\x66\x2c\xb5\xd6\xa1\x6c\xea\x76\x4f\xdb\x5f\x00\x21\x96\xf4\x6c\x5c\x6e\xb0\xe0\x8e\x16\x27\x51\x60\xa2\xf4\xe5\xd8\x34\x7a\xa4\x7c\x4f\x4b\x66\xa2\x02\xb7\x92\x8e\x16\x94\xc9\x44\x21\x1a\x79\x31\xe2\x05\xe3\x82\x0c\x46\x7a\xd3\x66\x53\xae\xd8\x86\x66\x0d\x47\xad\x29\x09\xd1\x66\x20\x60\x21\x01\x79\x0c\xbb\xc9\x0a\xe7\x35\xd4\x02\xdc\x1c\xc5\xfa\x17\xf5\x9a\xe4\x79\xfa\xe4\x92\x81\x16\xa6\xdd\xd0\x9d\x7c\xcb\x0a\x47\xb7\x67\xd6\xcc\xca\x89\x48\x27\xf1\x6c\xf0\xc6\x8b\xaa\x4a\x34\x71\xbc\x7a\xa2\x45\xd6\xd8\xbe\x54\x3f\xc0\xbe\xb1\xea\x50\x5f\x1f\x57\xac\x95\x3b\xa0\x63\xd5\x3a\x8d\xb2\xfc\x5c\xc1\x1e\xf9\xa2\x62\x3b\x17\x74\x4a\xa7\x4a\x23\x6f\x96\x6c\x88\x19\xb0\xee\x22\xa3\x12\x39\xb6\xf9\xc4\xaa\x1f\xb7\xc7\xb9\x52\x4e\xec\x93\x3a\x28\x9e\x67\xd5\x4e\x49\x1b\x6c\x0e\x65\x71\x42\x5b\x3c\x97\xa0\x7e\x82\x6d\xe4\x9b\x43\x7e\xdb\xc1\xc8\x62\x1c\x87\x6d\xb1\x52\x9c\xd9\x09\x09\x00\x2b\xf4\x2a\xb4\xf8\xd3\x8a\x33\x4c\xb0\xe9\x9a\x37\x0f\xb7\x4d\x1f\xa0\x5f\x82\x5b\xa8\xd9\x86\xd4\x76\xde\xf6\x9c\x01\x9b\xc0\x59\x37\x66\x4d\x92\x65\x7c\xc9\x0e\x2a\xc2\x21\x92\x72\xfe\x89\xb2\x27\x2c\x1e\x51\x33\x2c\xac\x10\x3f\x16\x5c\x93\xfc\x47\x98\x45\x97\x02\x63\xc3\x9e\xea\x7f\x28\x72\x71\x45\x38\x64\x3d\xcb\xeb\xdf\xbc\x37\xd1\xac\x98\xc5\x5a\xd2\xa1\x3d\x27\x5d\x4f\x4b\x80\x31\x6d\x07\x9f\x7f\x15\xf9\x4a\x75\x6e\xce\xc5\x12\x03\x9a\xba\x75\xb5\x4b\x1b\x58\x41\x43\x14\x7a\xb2\x0d\x44\x4c\xb6\xcd\x97\x90\xbb\xd9\x1c\xdc\xe6\x75\xb7\x2c\x61\x17\xde\xa6\x4b\x3e\x5b\x9b\x69\xd3\x2c\xb1\xca\x01\xe8\x91\x96\x45\x87\x41\xd3\xe1\x6e\x81\xb9\x0b\x26\x2a\x6e\x5a\x0e\x0a\x60\x7b\x44\x1f\x80\x55\x5f\x53\x67\x7d\x60\x32\x1b\xa1\x00\x52\x63\x74\xec\x63\xbd\xf9\x54\x86\x88\x58\xfe\xa3\x23\x0f\xb0\xae\xa6\x6f\x39\x2f\x88\xa7\x49\x1a\x85\xb9\x03\xa7\x76\xf3\xdb\x78\xf4\x5c\xd4\x51\x00\x9f\x21\x7d\x2a\xb5\x15\x5e\x18\xbc\x56\x06\x15\xc2\xcc\xe1\x75\x85\xa4\xcf\xa1\xf2\xcd\xa9\x8b\x8b\x75\xb4\x3a\x6f\x90\x93\x4a\xce\x68\x81\x26\xef\xb9\x69\x52\xe3\xd7\x79\xbd\x2a\x33\x67\x63\x3e\xc3\x6f\x95\xd0\xd5\x66\xdc\xa7\x66\x58\x66\xcb\xbf\x15\x11\x33\xf2\x9d\x25\xab\xda\x2c\x3e\x5d\xf2\xb7\x86\x64\x08\x98\x8a\xff\x99\xbe\x58\xfa\xad\x93\xe8\xb4\x6c\x60\x67\x80\x7a\x50\xf5\xb7\x38\xc6\x9b\x93\x0c\x2c\x4a\x1a\xa5\x90\x9a\x0b\xee\x00\xd3\xc7\x73\xfb\xa6\xf9\xc8\x99\xe9\xf1\xd2\x96\x2f\x85\x13\x3b\xd4\x73\xfb\x4e\x58\x4b\xde\xce\xb0\x39\xb0\x30\x0d\xab\x7b\xb0\x25\x3c\xb8\xdf\x3d\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\xa8\x28\xc2\xa1\xc2\xa2\x9a\xed\xaa\x00\x57\x11\xb0\x19\xce\xc8\x05\x15\x1f\x12\x7f\x74\x6f\xa7\xf6\x53\x16\x55\x65\x31\x9d\xca\xbc\xff\x42\x9f\x6a\x11\x49\x9d\xe3\x8a\xaa\xaa\x38\x18\xb5\xd3\xac\x2e\x3e\xdc\xea\x12\xb5\x21\xc5\x06\x24\x25\xef\x27\xe9\xb9\x7c\x98\xd2\xbb\xaf\x30\xa6\xaa\x48\x92\x1d\xf0\x1e\x38\x1a\xe8\x44\xb8\x4e\xab\x43\x89\x37\x62\xb7\xc3\x9d\x9d\xb0\x20\xb5\x80\x70\xed\xac\x03\x52\x00\x9f\x4a\x07\x0a\x1b\x5b\x67\xa1\xc9\xd5\xc1\x39\x0e\x9f\x4e\xb0\xfe\x49\x60\x87\x72\x9e\xb2\xbd\x94\x08\x87\xf4\x22\x1d\xe8\x36\x27\x95\xea\x53\x95\x3b\xcb\x0c\xcd\x16\xbb\x32\xe8\x2e\xfa\x9c\xdd\x18\x70\x36\x3c\xf6\xb9\xe1\x83\x16\x3d\xbb\x78\xad\x9f\xc9\x7e\x57\xb0\x4d\xcb\x0f\xf8\x1d\x12\xdc\x80\xe3\xfc\xc0\x5c\x89\xa1\x5b\x31\x27\xcd\x08\x78\x91\x2a\x1c\xf7\xec\x76\x66\xcb\x67\xc2\x8f\x46\x97\x50\x31\x04\x09\x4f\x09\x24\x4b\x95\x56\x03\x98\x09\xef\x01\x7a\xe5\xc0\x12\x08\xa1\xbd\x32\x5d\x37\x87\x74\x53\xd5\x1f\x3b\xc5\xaf\xb3\x87\x98\x9e\x9c\x9e\x23\x81\x80\xc5\x52\xc3\x62\x55\x55\xef\xcb\x5f\x13\xfb\x12\x4b\x3e\x3e\xc7\x9e\x1f\xa5\xec\x8a\x43\x66\xa0\x07\x30\x67\x72\xd4\x74\x8a\xe4\x49\x58\xaf\xe7\x6a\x11\x9c\x91\x07\x87\xc2\xcb\x92\x05\x6c\xb0\x43\x3b\xc5\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0d\x86\x0a\x85\xd2\xd9\x72\x10\x3a\x99\xa7\x76\x76\x86\xd5\x98\xd8\x69\x97\xf5\x07\x6b\x3b\xab\xb6\xe2\x5c\xf5\xce\xce\xc2\x30\xb3\x4e\xaf\x40\xf6\x8c\x34\xe5\xc1\x60\xc2\x23\x87\x37\x8d\x9d\xb4\x19\x1f\xb5\xcc\x13\x13\x17\x04\x21\xd8\xec\xa3\xce\x0e\x29\x4b\x2b\x30\xeb\xf9\x17\x08\xcc\xc8\x27\x3c\x89\x11\xde\xec\x58\x4b\xb3\x89\x84\xc2\x33\x3d\x07\x70\xf9\x8c\xd9\x20\xff\x0d\xce\xcc\x86\xd6\x86\x48\x53\xd2\x1a\x8e\x4a\xd3\x83\x3e\x8d\xd6\x8e\x95\x3b\xd0\xd8\xc2\xe1\x18\xc1\xcf\x84\xfa\x73\x58\x86\xe5\x58\x0d\xfe\x04\x42\x2f\x35\xce\xe4\xa4\x0a\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\xa2\x2e\xde\x5a\x0e\x40\x1d\xb6\x62\x7d\xb2\xb4\xc3\xf9\x90\xb1\xed\x5a\x9a\x74\xda\x78\x07\x96\xa8\x11\x4b\x8b\xd8\x17\xb8\x57\x83\x93\x66\xcf\xb5\x48\x83\xd4\xba\x98\xff\xe3\xcb\x52\xbc\xf5\xb2\x64\xeb\x96\x35\xaa\xcc\xda\xe5\x0a\xcb\x4e\xa8\x0f\x58\x03\xa5\x33\x4f\x14\xc0\x44\xdc\x45\x80\x85\x20\x66\x09\xb5\xe4\x2c\xb2\xf3\xc2\x62\xfb\xff\xcd\xb6\x1b\x35\xe8\x6c\xbb\xbe\xab\x03\xb2\xe1\x3e\x0e\x76\x9c\x11\x01\x51\x06\xf6\x5f\x9d\xfa\x60\x57\xd5\xc9\x77\x9b\x2b\x37\x23\x32\x3d\xa3\x89\x92\xb0\x05\x2b\x11\x80\xc3\xb2\x80\x07\x6f\x12\xb8\x42\x89\x80\xdf\x8d\xcc\x90\x31\x7f\x3d\x85\x06\x43\x58\x11\x58\x96\x07\x78\x43\x13\xe9\x4f\x35\xa2\x2d\x23\x42\xce\x6d\x9d\x67\xcf\xe8\x68\xe6\x44\xd5\x86\x75\xb5\x5a\xd3\xb8\xaa\x2d\x9f\x59\x82\x6b\xdb\xc1\x98\xd7\xea\xf8\x17\x2d\xbc\x66\x55\xb3\x0d\x87\x5b\x10\x57\x1e\xc7\x6d\x1f\x77\x7d\xdb\xd4\xab\xa7\xe7\x0d\xab\x5b\x6c\x09\xe1\xad\xe2\xd7\xc7\x8f\x34\x9d\x58\x06\xcf\x21\x3b\xb8\xbe\xa8\xfa\x97\xfb\xf9\x83\x2e\x5d\x91\x6c\x80\x0d\xe4\x71\x9e\xae\xdb\x72\xf9\xe4\xde\xfd\xee\xde\x53\x3d\xa8\x16\x3f\xab\x43\xed\xd0\xf2\xf8\x51\xfe\x94\xa5\xe7\xae\xd9\x90\x50\x1b\x17\x69\xb6\x5b\x99\x5f\x62\x7f\x5b\x81\x44\xff\x71\xb6\x5d\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\xa3\x75\x3f\x3f\x3a\x6d\x26\x26\x45\xf6\x05\x15\x54\x18\x18\x47\x76\x75\x1f\x30\x4d\xb6\x2d\xa4\xae\x18\x36\xd8\x71\x31\x4c\x24\x9b\x6b\xbc\x69\xc3\x8c\x13\x90\xa0\x51\x87\x95\xa7\xa2\xd4\x13\x91\x34\x38\xcd\xda\x94\x8d\x93\xbe\x8c\xb4\x02\xfa\x65\x9e\x6a\xa6\x4c\x08\x8c\xde\x08\xc2\x04\x1b\xd1\xf0\x77\xc6\x00\x64\xf4\xba\xfc\x6d\x04\xc8\x13\x49\x46\x71\x22\x10\xf0\x83\x19\xc0\x18\x35\xab\xd0\x07\xe6\x69\xbd\x00\x2b\x53\x1d\x44\x1c\x55\x44\x20\x13\x92\x24\x09\x9d\xd9\xdb\x57\xca\x0e\xa3\x76\xfd\xc0\xad\x39\x7f\xf4\x85\xbe\x0c\x47\xcc\x18\xc3\x98\x4e\x81\x0e\x1a\x0b\x6c\x0a\x3a\x53\xaf\xd5\x82\x80\x0c\xda\x86\x03\x6d\xe1\x4d\xa3\x27\x2e\xa9\x25\x62\x4e\x48\x3d\xe8\xcb\x68\x31\x73\x27\xe0\x96\x26\x2e\x1e\x30\x4a\xfc\xd7\xb4\xc8\x89\x13\xf4\xcd\x47\x22\xa6\x71\x11\xa4\x1f\x2b\xe4\x38\x8c\xc9\xe8\xca\x5f\x4e\x3d\x7b\x18\x4a\xed\x7a\xc0\x79\x94\xc5\x04\x9c\x45\x6b\x75\xae\x2f\x62\x51\x29\x21\x1b\xcf\xab\xba\x10\x4e\xa2\x8c\x40\x7d\x49\x1c\x07\x20\xf9\xa2\x66\x20\x98\x3d\xf9\x43\x7f\x87\xd3\x12\xd5\x1f\x2c\x17\x62\xe0\xfb\x3a\x60\xa0\x42\x0e\x99\xa0\xc2\x0d\xf2\x8a\x54\x30\xf8\xb7\x9d\x4a\x85\x37\x9c\xdd\xa9\x73\xa7\x9e\x13\x5b\x91\x17\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\x1b\xb7\x5a\xd4\x07\x40\x3d\xd7\x30\x07\x44\x75\xc6\x32\xd7\xe2\x13\x90\x9e\x5e\xbd\xa2\x3d\xc3\x35\x68\x95\xfe\x96\x93\x1c\x29\x5d\x38\x38\x4b\x00\x13\xdb\x90\xe7\xba\x13\x24\x29\x6e\x86\x47\x94\xc4\x12\x77\x83\x1a\x0d\x48\x06\x13\xe7\x0b\x8e\xcb\x2e\xb0\x8e\x48\x6b\xe8\xc9\x70\xb7\x72\x43\xfd\x8e\x30\xeb\x6c\x74\xbc\xb4\x76\xb7\xcc\xff\x03\xf7\x9f\x5c\x30\x74\x00\x07\x1f\xf8\x1d\x11\x24\x2c\x04\x29\x2f\xe1\xd6\xf1\x0f\xeb\xb0\x09\x10\xc1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\x76\x56\x4f\x3c\xe6\x2f\xf1\x19\x26\x7c\xaf\xbf\xde\xc1\x65\xc2\x51\x05\xa4\x7c\x35\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xe5\x04\x9d\x5b\x11\xd9\x5a\x29\x22\x70\x15\xa5\x5a\x0e\xe5\x86\x7d\x3c\xb5\x75\x7f\x8a\xac\x43\x8f\xce\x90\x15\xc8\x9d\x1e\xb3\x33\xaf\x13\x05\x05\x15\xa1\x79\xcb\x2a\x23\x08\x5a\x6e\x38\x36\x16\x15\xd8\xf6\xeb\xb3\xd3\x37\x6f\x2e\x6f\xfc\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xce\x79\x60\x8d\xfa\x65\x7e\x58\x6e\x02\x63\x08\xef\x09\xa6\x25\x8e\xc1\x85\x6c\xca\x6a\xa7\xcf\x55\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\x8e\xcd\x5f\xf2\x9e\xe5\x9b\x0f\x89\x19\x89\x2f\xf9\x7f\x12\xda\xd9\x83\xb3\x0d\x2c\x3d\x7f\x04\xe2\x3d\xb0\xa9\x03\x4d\x31\xb2\xbb\x83\x49\xef\x73\xa8\x10\x84\xfb\x06\x7b\xc5\x32\xc5\xf1\xe8\x09\x9b\x11\x9b\x16\x0b\x86\x91\xbb\xaf\xab\x3f\xf6\x10\xd0\x58\x81\x20\xe6\xc1\x8e\x7d\xf3\x6a\x23\x1b\xca\x9f\xdd\x0f\x49\xe7\xaf\x81\x97\x70\xd0\x38\xfd\x7a\xdc\xed\xd8\x57\x91\xf6\x86\xee\xc9\xbd\x7d\x95\xb2\x55\x8a\x7d\x83\xee\x3d\x25\x71\x9f\xdd\x0c\x68\xfa\x08\xe2\x69\x50\x1d\xdf\x3d\xf1\x75\x7e\xaf\xfa\x1a\xf5\x17\xeb\xe8\x53\xbe\xd9\x97\x91\x7a\xcf\xeb\x86\xcb\x74\x3f\x24\x28\xaa\x56\xcf\xe1\xbd\x15\xe4\x99\x9f\x30\xe7\xc1\x59\x18\xa9\x13\x43\x51\x0d\x4b\xcc\x56\xbd\xd8\x3b\xd3\x00\x15\xbc\x2e\xd1\x6a\x19\xa2\x5b\xcf\xa5\xdc\xf2\xef\x16\x6d\x05\x67\x67\x49\xe7\x9b\x4a\x69\x70\x4b\xc9\x25\xfa\x76\xaf\x89\x68\x68\x4c\xb3\x55\xd5\x93\x5e\xc7\x37\x93\xe0\x1a\x9b\xd0\x9a\xa3\x6d\x00\x77\x9c\xe4\xcb\x52\x46\x45\x79\xc7\x14\x58\xd8\x69\x58\x4e\x53\xf2\xe1\x0f\xfd\x3d\x51\x4a\x01\xed\x86\x15\x9b\xdc\x1b\xd2\x6b\x2b\x5e\x35\xaf\xe8\x1f\xed\x88\x22\x3f\xc7\x73\xdc\xa1\xbc\x5a\x05\x44\xc9\x73\x55\xa8\x5f\x94\x4e\x88\x3a\x44\x05\x53\xa2\x8e\xb4\x6a\xb1\x05\xc6\x90\x90\x3e\x43\x82\xde\x67\xa2\x4e\xd0\x04\x7c\x12\x31\x42\x6e\x38\xbd\xb2\x94\xef\x59\x75\xfa\xe1\x88\x1d\x73\x78\x18\xf8\xed\xe6\xcc\x61\x0d\x77\x5b\x35\xd9\x53\x24\x63\x1b\x75\xaa\xde\x44\xd1\x19\x7a\xa2\xf7\xad\xec\x76\x8c\xbb\x70\x25\xd7\x63\xc2\xdc\xe3\x2b\xca\x54\xec\x3c\x5e\x58\x70\xc4\x9b\xd3\xc2\xb8\xf7\x54\x70\x66\xab\xca\x6a\xd5\x29\xb8\xd0\x2b\x5f\xc1\x1c\x28\xc4\x0c\x9e\xfc\x99\x69\x8e\xec\x6a\xc1\x5a\x99\x5a\x0b\xa6\xa1\x22\x26\xa8\x82\x48\x1e\xdc\x0e\x78\xf4\xe2\xd5\x0d\xee\x06\xd0\x8c\xc1\x97\xdb\x2e\x40\xb0\x9f\xe6\xcc\xd5\x69\xe7\x51\x00\x31\xd7\xce\x57\x92\xa8\xe5\x38\x11\x2a\x5f\x6c\xba\x37\xaf\x91\x3c\xbc\x48\x92\xc8\xaa\xb4\xa5\xae\x6b\x74\xe9\x16\x3b\x6e\x06\xb0\x7b\x75\xbc\xca\x71\xe3\x2d\xc0\x74\xe8\xd3\xc4\x3c\xb9\xe0\x4d\x65\x77\x9b\xb1\x01\x11\xfb\xc8\xee\x36\x81\xe7\x0f\x6d\xb9\x19\x24\x12\x49\x04\x57\xdf\x54\x3b\xb9\x94\x49\x19\x55\x29\xfe\xbf\xf8\xb8\xfc\x97\x44\x50\xe8\x66\x18\x84\x82\x9b\x9a\x9c\x41\xbb\xc7\xaf\x60\xb2\x3d\x6b\x89\x72\xa0\xf1\xe4\x5e\x36\x27\x26\xf1\xf1\x5e\xa0\x35\xf2\x9d\x4e\x56\x15\xbf\x23\xe1\xf5\xa0\xc7\xee\xef\xe4\x2b\xb1\xdf\x7f\xc1\xaf\x3d\xfb\x93\xca\x19\x3f\x7f\x24\xfa\x8b\xcf\x05\x12\xbd\xe5\xc7\xdc\x30\x61\xcd\x41\xe7\x93\xb4\x86\x90\x75\xfd\xb1\xe7\x51\x8a\xc2\xfb\x24\xfd\x13\xff\x4a\x5f\xf0\x2f\x1d\x0a\x73\x04\xb7\xc6\x41\x35\x03\x1e\x11\xfa\x47\x82\xe5\xa9\x97\xb2\xe7\x09\xe2\x54\x15\x60\x5f\xbd\xa9\x0c\x90\xaf\x18\x24\xbb\x3d\x7b\x8e\xf0\xbc\x5b\x6b\x57\x94\x82\xfb\x1a\x9c\xc8\x1b\x6f\x50\x83\x3b\x34\x8a\xea\x48\x1c\xab\x51\x16\xd3\xb7\x25\x24\x5a\xfa\xa7\x79\xb8\x13\xda\xe7\x38\x26\x10\x20\x22\xb9\xff\x94\xde\x50\x8a\x42\x94\x61\x56\xa2\xa0\xc8\x1f\xde\x0e\xdc\xe4\xf3\x12\xb6\xb5\xd7\xf8\x20\x92\x27\x1e\xd9\x13\x8a\x60\x72\x71\x3f\x12\xee\x63\xd5\x8b\x07\x2c\xbe\x12\xf5\xcf\x96\xa3\x20\xf9\x4c\x60\x68\x6f\x73\x76\x56\x7c\x9b\x1f\xe4\x27\x61\x5a\xaf\x13\xbe\x94\x2f\x49\x86\xeb\xab\x80\xc2\xf3\xd5\xc1\x43\x18\x51\x1a\xbe\xb2\xef\xc4\x3a\x30\x1b\x77\xc4\x72\x06\xb7\x19\xd3\xc5\x20\x7f\x29\x2a\xd5\x73\x56\xa8\x2c\x2d\x07\xff\x4b\xcd\x99\xc8\xa5\x6f\x89\x79\x88\x4d\xf9\x42\xbe\x5c\x4e\x21\x7e\x6e\xe7\xd8\x3d\x34\xcd\x5c\x91\x2f\xf9\xbf\x4b\x25\x82\xd1\xf5\x43\xff\x9d\x5b\xaf\x5c\xf8\x65\x5d\x4a\xae\x4f\xfa\xe4\xd9\x70\x2e\x82\xac\x9a\x77\xe1\x39\x6c\xf9\x44\xfb\xc8\x0f\xb3\x17\x84\xff\x36\x73\xe5\xcf\xf8\x67\xba\x19\xd5\xe2\x26\x37\x9c\xdb\x41\x33\x21\x0c\x35\x35\x09\x26\xcd\x85\x90\xd2\xe2\x76\x0a\x98\xe4\xe7\x3a\x82\xbd\xa4\x84\x90\xb4\xa2\x8a\x59\xf2\x1b\xd4\x0c\x61\x70\x1a\x9e\xb6\x16\xbe\xf4\x01\x71\x58\x3f\xc7\xfd\x0c\x80\xa4\x9b\xf9\x04\x28\x5b\x25\x3c\x1c\x0d\x7c\x08\xa4\x86\x33\xc7\x10\x86\xb3\xe7\xe7\x87\xa6\x76\x38\x41\x92\x99\x91\xcc\xb1\x28\x9d\xe3\x3a\x80\xb0\x6b\xf3\xc5\xdb\xa8\x19\x57\x99\x36\x16\xd5\x07\x84\xf6\xf9\x9c\xb2\xef\x17\xc0\xa6\x2b\xcc\xb8\xf2\x59\x82\x3a\xcb\xa4\xc5\xc5\xce\xce\x56\x73\x54\x65\x98\x47\x02\x46\x26\x22\x93\x20\xc2\x89\x4f\x9b\x89\x12\x77\x52\xd4\x10\xe6\x68\xcd\x23\xba\xd1\x92\x77\x4c\xaf\x87\xe0\x1b\xb5\xc7\xab\x3e\x52\x4e\x25\x1c\xc8\x35\xe3\x9c\x19\x5f\x6f\x70\x9c\xf2\x14\x3e\x01\xe0\x96\x53\xa0\x9d\x5e\xc0\xa7\x4d\x96\x77\x64\xd7\xd5\x42\x4d\x14\x53\x85\x64\x96\x8b\x6c\x7e\xab\x65\x64\x9e\x71\x89\xeb\x48\x91\x2d\xbb\x15\x60\xfb\xd5\x22\x17\x2e\x61\xa2\x48\xa7\x97\x40\xf9\x16\xe6\x38\x67\xc6\xb2\x2f\xdc\x0e\x98\x37\x75\x93\x20\x4c\xa5\x00\xb9\xc4\xc7\x14\x88\x18\xee\x54\xf5\xe6\x5d\x40\x3c\xa7\xed\xa0\x6b\xb2\x61\xf6\xa5\x70\x25\x5e\xc3\xb3\xa2\xfd\x8a\x72\xec\x76\xc8\x7c\x55\xec\xb4\x17\x0d\x9c\x12\xf1\xf3\x8e\x76\x7c\x01\x69\x68\x54\x82\x57\x12\x66\x81\x40\xe4\x3b\xbd\xff\xfe\xc7\x0f\x1d\x4f\x83\x37\x81\xbf\xff\xe9\x03\xc9\x33\xf7\xdf\xff\xfc\x01\xb6\xef\x51\xe1\x6c\xc9\xa6\x9f\x71\x0d\x28\x68\xd0\xbb\xb6\xfc\x54\x35\x7b\x18\x3c\xf4\xd3\xf3\x87\xcf\x32\x15\x9f\xfb\x78\x89\xbb\xcb\xa8\x83\x15\x5e\xb8\xac\x78\x85\xd7\xfb\x6d\xa6\x63\xec\x84\x03\xd8\x2f\x57\xdc\x30\x90\xe5\xdc\xe4\xef\xee\x37\x0f\xb7\x2a\x78\xb0\xd4\x79\x13\xe3\xfe\x49\x7e\x3d\xc5\x40\x78\xe8\xbf\xbb\x96\x9a\xc0\x6a\x7e\x23\xf7\x69\x59\xea\x75\xf6\xfb\xdb\xb2\x9f\xc5\x5c\xc9\x82\x06\xa0\xcb\x71\x96\xf6\x22\x06\x51\xd7\x4c\xe4\x18\x78\x5b\x02\x31\x06\xf7\x16\x3f\x07\x99\xc3\xca\x04\x68\xaa\x36\x65\xb5\x9e\x4a\xce\x06\xf9\x82\x6b\xc5\x94\x6c\x43\xdf\x86\x26\xe9\x92\xab\xc3\x7e\x7e\x63\x2d\x22\x4f\x90\x44\xb9\x74\xf5\x2c\x09\xe3\xf5\x02\x16\x56\x18\xa1\x79\xa8\xea\x9c\x27\xd0\xdf\xd8\xc4\xae\xd1\xb0\x27\x57\xf8\xb0\x64\xb9\x96\xa8\x9e\xd4\x8e\x36\x23\xf3\x8f\x26\xda\x45\x15\x92\xd7\x49\x7d\x01\xc7\xb6\xcb\x29\x7c\x0e\xc1\x49\x11\x68\x55\x67\xe6\x90\xad\x22\x3d\x31\x4b\x76\x3a\x92\x11\x11\x19\xf1\x7d\x3c\xb5\x28\x1e\xbd\x3b\x14\x1d\x53\x05\x57\x48\x74\x4a\xc3\xd5\x5a\x16\x30\x13\xfc\x46\xff\x1c\x5e\x07\xde\x11\xd6\x3f\x6e\x85\xba\x4f\xff\x2c\x49\xf6\x45\x5b\x74\x7e\xdf\x8e\xf3\x17\xcd\xa6\xf1\xfb\x3a\x7e\x0d\x01\xc4\xc2\x77\xbf\x18\xc8\x66\x92\xed\x69\x5b\x57\x2f\x08\x37\xde\x79\x04\x72\x62\x30\x92\x31\x70\x13\x8a\x33\xdd\x0d\x01\xe9\x20\xee\x09\xd8\x0d\xec\x71\x2d\xea\x6c\x03\x50\x67\x62\x9c\x04\x9b\xb2\x25\x8b\x94\x11\xda\x8e\x59\x66\xaf\x6a\xb9\x86\xce\x75\xf3\xe9\x69\x60\x4e\xd6\x9a\x8f\x5b\x8f\xa7\x9b\xf6\x66\x64\xe9\xe9\x17\x8e\xa9\x10\x3a\x05\x2b\x6a\x97\x13\xe9\x89\xb7\x82\xea\x12\x9c\xa2\xae\x17\xdd\x34\x9c\x0d\xd4\x80\xfb\x43\x93\x3a\x7d\x0b\xf1\x78\x78\x23\xc8\x53\x2e\x6c\xb7\x8c\x40\xfe\x5a\x7e\x36\xa8\x16\x17\x4a\x9f\xc0\x4f\x6a\xd8\xa0\xb6\xf0\x24\xd5\x2f\xcd\xd7\x2d\xce\xa9\x88\xcf\xf1\x5b\x3b\xa1\x30\xc4\x9b\xdb\xb2\xdb\x6f\xb0\x07\xe0\x78\x4d\x7e\x2c\xe5\x60\xc8\x80\xf8\x88\x7f\x25\x96\x01\x6b\x2b\x60\xe4\xc8\xb5\xf3\x7e\xce\x9d\x97\x8b\x1c\x2e\x91\xb9\xb2\xe6\x35\x2d\xc9\x60\xf4\x04\xc2\xf7\xe8\xad\x7e\xf6\x31\x0d\xc3\xd4\x30\xdb\x72\xd5\x9b\xd1\x62\x80\xa9\x79\xd9\x1f\x78\xea\xe4\xfc\x9d\x91\x2b\xd6\x85\xee\x97\x70\x33\x26\x0e\xf6\x08\x6d\x3c\xe2\x1d\xb9\x50\x6e\xf6\x4f\xf8\x21\x3c\x4d\x51\x39\x90\xd7\xc3\x20\x39\x0a\x82\x05\x6d\x93\xca\x14\x87\x53\xa5\x6d\x49\x8d\x62\x17\x2f\x4c\x85\x14\xde\xfa\x98\xaf\x04\x19\xf3\xc4\x37\x11\x31\x9f\xaf\x6b\xfa\xcf\x2e\xdd\xea\xcf\xe7\x59\xc8\xc9\x40\x3a\xfe\x67\x04\x35\x54\x6a\x7d\x9e\x58\x2d\x31\xd7\x65\x67\x0e\x36\x9a\xaf\x7b\x1e\xcd\xa2\xf4\xda\x79\x8c\x4b\x86\x9e\xeb\x84\x48\xa6\xfe\x92\x82\xcd\xcb\x50\x07\xea\x8e\x37\x1c\x75\xe6\x75\x06\xcb\x2a\xf2\x23\x6f\x36\xe2\xbd\x56\x98\x21\x1e\x0e\x6a\x10\x9b\xc8\xa0\xc5\xa0\x5a\x58\x2e\x8f\xd5\xfc\xa0\xbf\xbb\x6e\x23\x40\xf1\x2f\x67\x7a\xe3\x13\x94\x4d\xc5\xe1\x3e\x8c\x72\x4c\xf3\x3e\xda\xe4\x54\x68\x1e\x71\x6f\x10\xeb\x0b\xa1\xa7\x91\x7b\xd3\x70\x83\xa8\x5c\xef\xa5\xf8\x80\xa2\x2f\xd0\xc5\x88\xb0\x02\xfb\x49\xa0\xe9\x7b\xcd\x28\xc8\x9e\x50\xe3\x82\xdc\x69\x55\x6e\x08\x50\x78\x05\xf9\x7e\x17\xb5\xdd\x64\xc5\x9e\x50\xac\xd1\xb3\x9a\x94\x7e\xa5\xf8\x35\xec\x82\x09\x98\xc3\xaa\x9d\xa8\x16\x8f\x88\x38\xee\x9c\x97\xbe\x5c\x76\x93\xa5\x15\xd8\x8c\x08\x75\xea\xc6\xad\x47\x64\xca\xb6\xa3\xea\x07\x2b\x73\x12\x3b\xb6\xd9\xe2\x1e\x59\x98\x31\x71\x72\x11\xe6\xfa\x41\x9f\xd3\x88\xd9\x4a\x93\x7e\x6f\xe1\x5d\x7e\x88\x07\x59\x8a\x27\x22\xff\x0f\x33\xdc\xfd\x7f\xad\x2a\x93\x3d\x4b\x6b\x44\xe5\x9a\xe2\xef\xc5\x9f\xb8\x5b\x58\x0f\x6e\xa9\xba\x87\xdb\xed\xc3\xa2\x78\x30\x31\xea\x60\xc3\x72\xc3\x1e\x38\x94\xa8\x6e\x38\xd8\xb9\x82\x9a\x82\xdd\x7f\x1a\x77\x0c\x10\xcd\xd3\x3b\x66\xdc\x25\x1f\x0c\xa4\x85\xc7\x1b\xb6\xa6\x60\xee\x3a\x66\x0d\xcd\x8e\xd0\xee\x0e\xa9\x79\x89\xc9\xed\x9e\x70\x24\x03\xb9\x29\xc8\x1a\x5c\x42\xbc\xb3\x7b\x86\x07\xdd\x72\xf9\xbc\x6a\x7b\x04\x25\x12\x92\xe9\x28\x42\x02\x79\xc5\x23\xd5\xc9\x2c\x13\x80\x53\x12\x8b\x6f\xfb\x3f\x52\x6a\x99\x6a\x7c\x8a\x04\xbe\x24\xb7\x4c\xc5\x95\xb3\xb4\x99\xd0\x37\x9c\xc6\xe5\xcb\x67\x05\x41\x0c\x74\xff\x09\x7e\x7b\xb0\x75\xd3\x7c\x94\x40\x0e\x73\x7c\xfa\x9c\x55\xd5\x5b\x26\x07\xce\x7a\x19\xe7\x92\x34\x50\x2d\xc2\xf8\x75\xcf\x38\x61\xa2\x8b\x05\xcf\x71\x9b\xfd\x5d\x2c\x45\xe7\xf8\x95\xfe\x4f\x26\x0c\x07\xa2\x1e\xdf\x97\x16\xb8\xe3\x9a\xfd\xbe\x5d\xae\x7a\xdc\x06\x4d\xa9\x83\xf0\xb8\x2d\x75\x5e\x65\x4b\xbb\x1c\x9c\xf9\xd3\xfc\xca\x36\xd0\xe8\x78\x76\xca\xeb\x3a\xbe\x1c\x36\xf3\xb5\xbb\xeb\x25\x6c\x92\xd7\xcf\x4b\xbb\xa1\x32\x06\x73\x27\x50\xfe\x56\x4a\x7c\x5e\xc6\x2e\x31\xb5\x38\x9d\xe2\x66\x0a\xdf\x60\xe1\xa4\xf8\x3a\x0c\xd1\x9d\x8b\xd4\xa5\x7a\x10\x74\x33\x38\x98\x74\x41\xf7\x10\xfb\x10\x77\xd3\x58\x04\xeb\xe4\xbc\x51\xef\xd8\x88\xbf\xb5\xe8\x6f\xb9\xd3\xa9\x3a\x9c\xac\x06\xe7\x77\xa1\x2b\x9d\x0f\xaa\x20\x0e\xdb\xd6\x55\xe4\x05\xd3\x3b\xb8\x9e\x00\x4c\x07\x47\x78\x03\x40\x43\xca\x25\xf1\x0f\xf1\x80\x92\x62\x79\x74\xbd\xa7\x0f\xec\x0a\xe2\xb5\x30\xcf\x17\x1f\x5d\x8f\x98\x3d\x95\x6d\x8f\x8b\x35\x63\xb4\xb3\x63\x2f\x2d\xa0\xec\x47\x6a\xe6\x21\x64\x0c\x89\x2d\x86\x41\xc8\xfa\xab\x96\x01\x3e\xe0\xc8\xc5\x8e\x59\x9f\xaa\x62\x4f\xd4\xc7\x73\x71\x57\xbd\x3f\xc5\xf5\xd2\x8a\xc7\xc9\xe1\xd1\xba\x07\xf3\xc9\x12\x74\x85\x7b\xfe\x7c\xa1\x0d\x37\xab\x96\xfe\xc2\x60\x37\xd5\x32\x33\x21\xa7\x83\x2a\x0e\x70\xf1\x2f\xf5\x37\x67\x42\x56\x25\x7c\x08\xae\x24\xe2\xed\x69\xa2\xd4\x2f\xe9\x68\x3e\x62\x6c\xc9\x6d\x2c\x27\x79\x7d\xd1\x99\x65\x44\x08\x03\x2c\x0d\xea\x03\xc2\x02\x97\x13\x9b\x7d\x1e\x3e\x07\x47\xba\x15\xe5\xc3\xdc\x29\x42\x92\xa8\xea\xc5\x66\x0f\xe7\x39\x66\x46\x1c\xab\xf0\x44\x79\xf0\x89\xb3\x75\xc9\x1d\x94\xc0\x3b\xc9\xf3\xc0\x26\xc2\xec\xa0\xaf\x38\x7a\x15\x04\xbc\x1a\x35\xed\xaf\xc6\x9c\x78\x6f\x0e\x77\xd6\xcd\xb2\x29\x3b\xb1\xd4\x45\xb9\xe3\x88\x69\xec\xcd\xb8\x94\xdd\x56\x78\xfe\x17\x5a\xfd\xe9\xae\x56\xc5\x09\x65\xaa\x59\x73\x8d\xd2\xbb\xa6\x58\xb4\x1c\x3f\xf3\x0b\xad\xfd\x6c\xad\x85\x5b\xd6\xc7\xb2\xdc\x05\x4d\xc4\xdd\x0f\x5c\xc5\xc1\x3c\x63\x2f\x93\x09\x8e\xa6\xb7\x88\xec\xda\xe1\x11\x26\x1e\xec\x84\x81\x1b\x83\xed\x66\x5f\xb8\x37\x31\x5e\x20\x66\x98\x42\xd0\x57\x18\xa7\x1c\x0c\x2b\xe6\x59\xc0\xb9\xe1\xac\x67\x2c\x79\xa2\x2a\x71\x02\x1c\xf8\x57\xf8\x7b\x88\xae\x6b\x56\xa0\x3d\xde\xbd\xd8\xcf\x2b\x9d\xf0\xef\x72\xa0\xec\x44\x1b\x12\x6b\x2a\xae\xd3\x3c\x9e\xb3\x20\xf9\x78\x81\x81\xc3\x72\x54\x57\xec\xb0\x1c\x74\x50\xa8\xe8\x58\x3d\x67\x93\x75\x28\xe5\x85\x53\xcb\xd7\x8d\x2b\x5c\x2c\xcd\x34\x06\x8e\x06\x2c\x1e\xde\xec\xd4\xdc\xc3\xba\x09\x22\x30\x88\x17\x35\xf6\xa2\xb0\x23\xb3\x78\xac\x07\x11\x4f\x14\x2f\x2a\xac\x0c\xa4\x18\xdb\x5b\x4c\x94\x81\xaa\xb8\xdd\xd3\xd6\xb9\xa9\x3e\xc2\x7e\x41\x84\x29\x21\x2a\x2f\xaf\x6f\x60\xb4\xa0\x05\x40\xfb\xe8\x8a\xf9\x6e\xfa\x97\x75\x59\x23\x42\x1b\x47\x8a\x54\x46\xb4\x58\xf0\xe5\x87\xaa\xd6\x20\x56\x87\xd2\x5c\x52\xeb\x62\x23\x6c\x2b\xbc\x46\x62\xd2\x83\x18\x2f\x52\x44\x83\xe4\x95\xd6\xed\xca\x05\xc9\xc4\x33\x3e\x8c\x68\x6b\xc4\x6e\x4e\xcd\xde\x79\xa7\x27\x85\x1b\x09\x5c\x1a\xd8\xc6\x11\xa0\x45\x51\x12\xda\xec\x74\x0f\x1e\xa1\x67\x08\x3a\x25\x05\x1b\x86\xef\x92\x81\xc1\x5f\xc5\x13\xb2\x62\x76\x9d\xea\x09\xff\x5d\x0e\xe6\x47\xfb\x10\x06\x11\x93\xa6\xbf\x20\x0a\x0f\xab\x9a\x79\x7d\xdc\x94\xf0\x09\x90\x6e\xd7\x88\x6f\xda\x5b\xfd\x1c\x03\x89\xb6\xc4\x3d\x79\x29\x5f\x63\x90\x9d\x46\x27\x71\x71\x4a\xc6\x20\xf3\xa6\x60\xfd\xe7\x19\xfd\x1b\x0b\xd1\x2e\x92\xb1\x49\xd2\x20\xce\x1d\xdf\x88\x95\xb3\x3f\xce\x20\x74\x97\x9b\xa5\xdc\x6e\x66\x8b\x0b\xd4\x3d\x31\x02\xb1\x47\xa4\x04\xbf\x63\x8f\x1c\x54\xa0\xf7\x74\xe0\x82\x8e\x90\x3e\xa1\x85\x47\x6f\xb4\x85\x97\x99\x86\x7d\x82\x2d\xd9\xfa\xf5\x4a\x64\x10\x4c\x03\x94\x5b\x89\xbf\x74\xc2\x5b\x0b\xeb\x85\x76\xba\x63\x1b\xd0\x4e\x62\x2e\xf1\xed\x0a\x22\x6a\x04\x0c\x30\x10\x91\x61\x25\x68\x6c\xe0\x10\x69\xf7\x04\x41\x6c\x40\xd8\xb8\x47\xea\x4c\xca\x08\x12\x37\xd2\x11\x84\x3f\x7b\x02\x90\x5d\xdb\x18\xee\x33\x0a\xee\x75\x85\x97\xd1\x7a\x08\x38\x4a\x14\x62\x1a\x1d\xd5\x48\x4a\x62\xdb\x63\x4e\x61\x26\xbf\xc0\x90\xc6\xb8\x62\xe7\xb1\x60\x75\xf3\x36\x4d\xc2\x91\x48\xd1\x6d\xb9\xca\xdb\xc2\xc2\x28\x28\xa7\x61\x97\x78\x70\x94\xf0\x96\x5c\xbe\x21\xe5\x5b\xab\x20\xce\x48\x20\x1f\xd9\x59\x85\xe6\x9b\x65\x1c\xb3\x37\xb0\xb4\x58\x08\x1b\xe3\x0b\x48\xc4\x5c\xf6\x3b\xe6\x37\xc2\xbc\xac\x1d\x0c\xf9\xfb\x7f\xbe\xbe\x7c\x73\x92\x7e\x7e\x78\x38\x1c\x1e\x72\xf1\x87\xfb\x76\xc3\x57\x75\x0a\x0e\xd3\xf0\x3f\x2e\x5e\x9f\xa4\x65\xbf\xf8\x61\x46\x8a\x3a\xd8\x90\x5f\xdd\xea\x25\x07\x6b\x31\x53\x17\x8b\x8e\xff\x38\x7b\xd2\x15\xa3\x41\x7c\xc3\xe8\x3e\xe1\x06\xc9\xb3\x67\x47\xf2\x3a\x99\x72\x34\xef\x95\xc3\x72\xd1\x96\x38\xd1\xc6\x47\x90\xb1\x21\x9d\x60\xea\x7a\xee\x10\xa4\xa2\x76\xb4\x1b\xaf\x16\x1a\x44\x78\x00\x62\x07\x38\x67\x38\xba\x71\x99\x98\x38\xb7\xad\x70\x24\xa6\x6e\xdd\xec\x37\x45\xcc\x31\x09\x67\x3a\x11\x65\xf1\xeb\xb0\x30\x1c\xc3\x10\x71\xf4\x49\xfa\xcf\x6c\x29\xe2\x89\x12\xda\xe2\x2c\xa3\x2d\x00\xcf\x86\x85\x11\x1a\x2b\x10\x8c\x69\x00\x12\xf2\xcb\x04\x73\x9f\xe7\x84\xf3\x51\x25\xaa\xbf\xf1\x51\x78\x9f\x6e\x9d\x3e\x07\x5a\x93\xea\xc6\x45\x62\x3b\xdd\x74\xb6\xe1\x45\x9c\xcd\x24\x12\x71\xbe\x32\x23\xd6\x14\x1e\x52\xf1\x8a\x9b\x44\x51\xc0\x1f\x01\xca\x5c\x24\x74\xd3\xf3\x6b\x17\x8c\x29\xd5\x58\x70\xe5\x30\xc3\x1b\x7a\xcf\xcb\x1e\x97\x47\xa7\xd6\xa2\x68\xd4\x6e\xd6\xfc\xea\x31\xfe\xa6\x3b\x9c\x48\x26\x72\x8f\x20\xe2\x1e\x60\x1d\xb1\xcc\x75\x18\xee\x62\x43\x71\x4b\x79\x93\x17\x65\x94\x37\x8d\xb6\x6b\x05\x1c\xb4\x31\xda\x25\x55\x3a\x1e\xcb\xfc\xbe\x85\x63\x02\x81\x38\x5e\x64\x3a\x4a\x8b\xea\x80\xcb\x58\xe7\x2e\x2d\x16\xaf\x6c\x95\x82\xef\xc6\x4b\x94\x11\x22\xeb\x28\xe4\xa8\x2c\xa8\xc5\xc7\xb4\x0c\x82\x3b\x84\xec\x34\x6d\x0e\xc6\xa3\x1b\x94\xa1\x08\x2d\xb5\xda\x6d\x18\xb9\xb5\x33\xc8\x1c\x46\x4d\x1f\xae\x6c\x92\xd5\xe4\x41\x87\x33\xf9\x0a\xb1\xb5\xdb\x34\xb7\x76\xc9\xf4\x1c\xbf\x34\x7a\x43\x38\x32\x0f\xa6\x83\xf2\x90\x81\xf1\xa5\xc9\xe2\xea\xfe\x1a\xc4\xf1\x53\x11\xb7\x66\x7d\x17\x45\x09\x26\x54\x63\x22\x83\xf7\x44\xf7\x26\xee\x29\x3a\xa8\xe1\x8d\xca\x73\xd7\xc2\x91\x1b\x95\x71\xd1\xf0\x56\x65\x50\xf4\x2b\x6e\x55\xc6\x48\x1a\xdf\x99\xf4\x43\xfd\x8a\x6b\x93\x53\x83\x1e\xcb\xb5\x53\x88\x9f\x28\x30\x25\xdd\x16\xe1\xd8\xbe\xe2\xfa\xe4\x40\xb3\xfd\x1a\x01\x77\xaa\x27\x1e\x25\x01\x72\xbf\x64\xf1\x2d\xaa\xe5\x72\x36\x6f\x9b\x43\xc7\x77\x14\x11\x82\x9c\xb9\x2c\xff\x4e\xaf\xf1\x5b\x40\xf8\x74\x16\x44\x21\x1f\x92\xa8\x4e\x20\x4f\xf4\x44\x4c\x12\x59\x94\x18\x85\x5a\x3e\xa7\x1c\x44\x37\xe6\x88\xec\x1c\x6d\x41\x72\x66\x52\x84\x36\xba\x43\xc6\x5f\xb8\x5d\x09\xeb\x33\x1b\x4b\x51\xe8\x9a\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\xff\x48\xe3\x5f\x40\x7c\xf5\x96\x23\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\xb7\xa8\x08\xc2\x70\xe9\x21\x14\x41\x58\xf4\xcf\x5e\xbd\x91\x9f\x70\x2a\xd6\x68\x20\xf0\x2a\xe6\x43\xd3\xc4\x5c\x95\x67\x53\x2e\xcb\x96\x27\xae\xdf\x62\xe6\xb0\xc7\x68\xf0\xcb\x41\x14\x6d\xbe\xc4\x31\x10\xff\x77\xa9\x24\x03\xfb\x62\x57\x6d\xf9\x70\x58\x8c\x90\x23\xa8\xbe\xc6\x87\x4b\xd7\x63\x1c\xfe\xe7\xd2\x72\x9c\xaa\x3f\x09\x46\xee\x31\x62\x67\xc4\x44\x77\xf7\xbb\xb4\xab\xd8\x76\xaa\x04\x3a\x68\x10\xd4\xe1\x03\x5c\x82\x76\xf0\x3c\x8b\x41\xd0\x0e\xed\x2e\x4a\xd2\x66\x5d\xcb\x5d\x2d\xcb\x83\xda\x6a\x11\x89\xa2\x32\x3e\xca\xa5\x59\x83\xbd\x63\x3b\xe5\x63\xf7\x5f\x84\xfe\xf2\x2c\x0a\xf0\xd5\x71\x36\x07\x75\xeb\xd9\x70\x22\x9c\x39\x53\x71\x96\xe2\xb7\x83\x32\xc9\x90\xc9\x25\xdb\x16\x81\x70\x28\x04\x14\x6e\x2b\x17\x79\xfb\x91\x03\x80\xc3\xe7\xc7\x2a\x38\xb4\x1a\x45\x86\xff\x87\x33\xa6\x81\xe7\xaf\xe4\x6b\xd4\x60\xec\xa7\x8b\xd2\xb0\x07\x18\x33\x75\x05\x58\x9a\x15\x91\xec\xb5\x7c\xc9\x13\x3a\x43\xca\x18\x5f\x19\xa6\xbc\x87\xc3\x79\x0b\xe0\x1d\xa2\xff\x52\xfe\x9f\xff\xf5\xbf\xd9\x5c\xda\xd0\x6e\x89\xfb\xfd\x1a\x5a\xce\xcf\xbb\xdd\xf2\xf1\xcf\x17\x3c\x04\x8f\x0e\x3a\x22\xe8\x4f\xf5\xca\x3c\x7d\x8d\x68\x94\x63\x88\x1b\x7d\xb3\xe7\xd3\x80\xc8\xa1\x24\x7a\x32\xc7\xd1\xe3\xb0\x0e\x23\xaa\x4c\xf7\x08\x17\xda\xca\x26\x17\x93\x26\x01\x63\x94\xe8\xa6\xb7\x94\xe4\x7d\xd3\xae\x3e\xf8\x00\x88\x6e\x22\xa2\xe0\x87\xd0\x0c\x3d\x8c\x21\xec\x05\x93\xdf\xf8\x05\x19\xd1\xb4\x25\xda\x2a\x3c\x75\xec\x46\xa1\x04\x24\x93\x70\x15\xae\x92\xb0\xa1\x07\x9d\xc5\xac\xd0\x40\xbc\x88\x0a\x31\x11\x38\x24\x0c\x86\x41\x8a\xb6\x8a\xc7\x12\x68\x4d\x4f\xba\xa3\xa7\xa8\x70\xcf\xc4\x6c\x9b\x26\x06\x16\x89\x1e\xc1\xf2\xdd\x07\xfe\xe0\x58\x78\xfc\x4c\x0f\x93\x9f\x1c\x9e\xbd\x42\x02\xad\x6b\x24\x20\xce\x23\x6e\x77\xf0\xff\x04\xd1\xb5\xd4\x00\xc7\xa9\xfa\xa5\xe9\x83\x08\x5e\x51\x24\xf1\xe0\x06\x0c\x22\xfb\x45\xe1\xc1\xb9\x72\x20\x6a\xe2\xf4\x7d\x14\xef\x11\x33\x83\xd4\xbb\xa0\xa3\x8b\x8c\x0f\x36\x38\x71\xd1\xf0\x30\xb0\x63\xb3\x23\x4e\x2d\xb2\x21\x48\x06\xd1\x06\xeb\xc8\x33\xb0\x9b\xf9\x66\x82\x25\xb3\x96\xa3\x79\x5f\x0c\x4f\x66\xcc\x69\xf1\xfc\x2a\xf0\x7c\xf6\x50\x75\x5d\x20\x24\xa0\x8c\x4f\x4e\x37\xa4\x20\x6c\x22\x35\x0f\x15\xb1\x28\xf7\xeb\x91\xab\x7c\xe3\xc8\x9c\xdf\x7e\x99\x6f\x5c\xc7\xdd\xd7\xf9\xfe\xd1\x53\xe1\xe9\xa8\x5b\xa1\x2d\x6b\x10\x7e\xcb\x65\x4d\xc5\xe1\xfa\x77\x9c\xd1\x12\x49\x69\x37\x46\x6b\xdb\x85\xd7\x3a\x52\xc6\x9d\x21\x1e\x8f\x88\xea\x82\x11\x8d\xe2\x6d\x1d\x3b\xf1\x8d\xe2\x50\x7e\x85\xb4\x17\x8f\x38\x10\xf4\xa2\x5e\x39\x84\xb0\x9d\x2f\x0e\x20\x70\x4c\x7b\xf3\x82\x6b\xc4\x33\x86\x3a\xde\xe8\x36\x3b\x46\x7a\x67\x91\xf8\x6e\x7b\xd8\x4d\x67\xd5\x0b\x8e\xe6\xd4\xd0\x2f\xb7\xda\xc5\x54\xfd\xe5\xab\xed\x47\xce\x3e\xee\xba\xe3\x3e\xec\x25\xf3\x1a\xe7\xff\x1e\x76\xf2\xce\x12\xe1\x36\x1b\x1f\x9f\xff\x7b\xee\xbd\x4f\x9f\x2f\xb0\x0e\x78\x30\xd3\x17\x36\x65\xc3\x9f\x37\x28\xb0\x0e\x61\xf8\x12\x25\xc3\x33\x5c\x8f\xb9\x3d\xde\x58\xea\x87\x9d\xe6\x18\x1e\xc2\xbd\x67\x7a\x9c\x66\x21\x6f\x06\xe9\x9e\xf5\xc1\xff\x54\x0f\x0c\x3d\x90\xfc\x86\xb8\x33\x99\x33\x2c\x1f\xb7\x11\xbb\x7b\x5b\xaa\x3b\xe2\xb9\xc0\x87\x4b\x27\xac\x2d\x4a\xdc\x83\x3e\x93\x2f\x97\xa3\xba\x96\xc6\x96\xf5\x9d\x90\xb8\xa1\xb8\xa2\x11\xa4\xea\xae\xa7\xb8\xe6\xab\xa0\x34\x29\xb7\x3b\x9e\xc2\xdc\x05\xd2\xe3\x69\x12\x40\x15\x37\xb5\x57\x90\x90\x7f\x19\xd6\x25\x6f\x28\xe8\xee\xf9\xa6\x39\x24\xb2\x75\xce\xe0\x75\x2e\x71\x2e\x35\x25\xee\x92\xa4\xb1\x8c\xa2\xc1\x54\x52\xb9\xa9\xae\xe1\x36\xc6\xf9\x83\xbb\xd1\xd8\x39\xdc\xad\x68\x0b\x5b\xcb\x02\x28\xa4\x06\x5c\x47\x65\xb9\x3e\x24\x8e\x99\xd6\x0a\x01\xd6\x37\x2b\x92\x68\xd4\x6e\x08\xf1\x35\x0d\x73\x3f\x47\xcd\x9d\x98\x7d\x0b\x51\xcc\xd4\xf0\x26\x61\xa8\xa4\x15\x79\x27\xc6\xf5\xc3\x3d\x42\xe4\xfb\x11\x42\x7c\x4d\x3f\xb8\x15\xf8\xf1\x62\x12\xef\xea\x0f\x29\x87\x1a\x94\x2d\x3a\xc8\x1f\x76\xd1\x5f\x0e\xbe\x09\xf6\x6b\x38\x8f\x14\x03\xf9\x83\xcd\xc9\xe3\x8d\x53\x72\xe4\x90\x77\x42\x44\x10\x1f\x9f\xc9\x38\x34\x5f\x5e\xe2\x70\x98\xe6\x92\x0e\x34\xf0\xde\xf1\x60\x53\xbb\x90\xf6\xcb\x8b\x74\x90\xb1\x2e\x54\xae\x93\xcc\x2f\x6f\xbc\x02\x67\x11\x58\x44\xbe\x0b\xb7\x0c\x08\x78\x36\x93\x85\xc4\xf0\x76\x6b\x9c\x59\x5d\xd0\xea\xb8\x32\xc7\xaa\x01\xe5\x58\xf4\x18\xce\x78\x67\x28\x9d\x05\xc6\x56\x66\xca\x27\x26\xb3\x3a\xd7\x02\x40\x6d\xf3\xdb\xc8\x79\x07\x3e\xba\xdb\xf8\x09\xc7\x3b\x76\xec\x71\x57\xfc\x5e\x2d\x81\xb1\x1d\xc1\x1c\x35\xca\xcc\xc2\xa5\x3e\x26\x10\x4f\x76\xab\x16\xbe\xe4\x36\xd7\xcc\x2c\x02\x52\x40\x85\xbf\xb8\x51\xba\x57\xca\x3c\x37\xc0\xe9\x31\x55\xf4\xe0\x2e\xa6\xf0\x0d\x1d\x00\xdb\xb8\xbb\x07\x60\x0b\x72\x83\x88\xba\x11\xb0\x80\xbb\x3a\xa2\xcf\x8b\x7d\x7d\x47\xc0\x37\xbe\xb2\x23\x27\xd6\x0b\x0d\x2a\x5b\x14\x93\xeb\xff\xae\xfe\x0d\xd4\x1d\x10\x67\x14\xb5\x78\x40\xf0\xd1\xdb\xb7\x8e\xe8\x03\x37\x36\xab\x16\x0e\x13\xea\x56\xa7\xdb\x99\xaf\xaa\xa6\x29\x84\x2a\x5b\xf7\xa1\xeb\x5d\x1c\xb8\x81\xbd\xbe\xfa\xf6\x56\x45\x12\x1e\x5c\x1c\x37\xc2\x7b\xdc\x88\x12\x86\x23\x60\x89\x64\xfd\x1e\x68\xff\x70\xe4\x8d\x6d\x79\xfa\x4e\x8e\xc1\xba\xe8\x29\xe6\x71\x50\xe1\x3b\x03\x3a\xc7\x81\xac\x87\x11\xcd\x3b\x89\x5f\xb4\x32\x59\xce\x5e\x17\x4b\xd4\xd3\x88\x19\xeb\x2d\xe1\x60\x8b\x87\x1e\x17\x1c\xcb\xb3\xa9\x2b\xf1\x69\xb9\x90\x2f\x1a\x7b\xc2\xa6\x18\xb5\xc3\x70\x0c\x30\x7f\x0f\xd2\x8f\x0e\xc6\x45\xb6\x31\xa9\x20\x20\xdf\x41\x7e\x10\x60\x18\xae\xec\xad\x85\x4c\xf6\x35\xa0\x27\x30\x61\xee\x83\x9e\x69\x3f\x50\xe9\xbe\x9b\x6a\x31\xe3\x83\xd1\x54\x8f\x85\xdd\xcb\xb8\xcc\x24\x38\x8a\x66\xc1\x51\x34\xe5\xad\xc1\x93\x20\x21\xc2\x79\x98\xb1\x73\xf1\x0a\xa3\xe4\x78\xe3\xf3\xe9\x08\x92\x11\x27\x71\x64\x8c\x28\x21\x5f\x8c\x5a\x31\x03\x76\x98\x66\x2e\x72\x3e\xc5\x9c\xe5\xa2\xda\xe3\x98\x75\x61\x96\x78\x18\x46\x49\xfa\x9e\x59\x3c\x12\xb1\xa9\x86\x69\x9b\x66\xc5\x71\xc5\xed\xf5\xca\x60\x78\x2a\x3b\xc7\x75\x9a\xb7\x74\x54\x05\xee\xca\x85\x29\x38\xd7\xea\xf3\x2e\x2e\x8d\x25\x18\x26\xe8\x3d\xe3\x11\x20\xe9\xd4\xf9\x62\x8d\xf1\xcf\xa6\x08\xc9\x54\x63\x47\x4c\xfa\xb4\xf3\x04\xa4\xbc\x39\x97\xda\x0b\x73\x93\x30\xfc\xb6\x2f\x1e\xf4\x0b\x72\xf9\xf6\x41\x9d\x69\x58\xbf\x46\x23\xf2\xf0\x55\x04\x17\xc2\x2f\xbd\xc4\x8a\xeb\xee\x2c\x14\xec\x62\x7c\x4b\x5d\xc3\x06\x6a\x49\x91\x38\xee\xd8\xce\x7c\xcd\xba\x31\xaa\xc3\x47\xee\x75\xb5\xce\xcb\x09\x2c\xdd\x98\x47\x88\x23\x92\xaf\xaa\x63\xd0\x4b\x0f\xe1\xaa\xf9\xf6\xae\xc2\x7a\xc6\x61\x3e\x60\x91\x8b\x3a\x19\xb1\x35\x03\xf9\x42\x0d\x83\x2e\x4e\x56\xf1\x0d\x9d\xe4\x47\x30\x57\x0b\xf7\x74\xdf\x39\x87\x8b\x6d\xe7\x1c\x50\x84\xf7\xb0\x72\x61\xb7\xa5\x22\x0b\xdc\x74\xf1\xbb\x7a\x86\x0e\xb1\xce\x3d\x55\xfd\xb1\xbe\xb5\x65\x77\x5b\x2f\x32\xbc\xe0\xd8\xad\xf5\xa0\xf2\x6d\x29\xb6\xf2\x07\x33\x4a\x7b\x94\x6b\x54\xa8\x12\x47\x7a\xdd\x03\x89\xa7\xfd\xfd\x82\xd2\xe1\x3f\x4c\x5b\xdc\x43\xf0\x44\x94\x36\x01\x8e\xc4\xb3\xfe\x87\x3b\x1b\x1a\x8c\x25\x60\x88\x01\x6e\x5b\x74\x85\x5f\x80\xfe\x8a\x11\x04\x87\xe4\xe1\x30\x98\x0c\x74\xf5\x83\x57\x84\x0f\x47\x30\xe2\xbe\x67\x87\x07\x0e\x00\xcc\xde\x1c\xea\x25\xa5\x1b\x9a\xbd\xd0\xa9\xc6\xa3\x23\x03\x0a\xdb\xbd\x63\x86\x1e\x44\xbd\xf8\xf2\x18\xc3\x4d\x48\xde\x44\xde\xef\xf0\x22\xbe\x7b\x0c\xf9\x1d\x7e\x87\x4c\x41\x62\x79\x67\xab\xa6\x6d\x68\x7a\x24\x66\x8a\xc6\xf7\x7e\x61\x69\xdd\x44\x01\x98\xc0\x6f\xb3\xbd\xc6\xb9\xb1\x32\x17\x48\x26\xf9\x81\x83\xde\xf8\x52\x7d\xd3\xe7\x1b\x2b\xc3\x16\xc8\x85\xda\xad\x6f\x38\xc3\x4a\x9d\x5a\x46\x50\x52\xcb\x34\x73\x76\xd5\x47\x11\x05\xbe\xd4\x94\x00\x16\xc7\x1c\x1c\x88\x84\xd0\xb5\xdf\x65\x3c\x54\x44\x4c\x90\xe4\xf4\x35\x92\xd3\x1b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\x3a\x56\x8e\x2f\xa7\x0f\xcb\x3c\xe7\x3b\xec\x43\x78\xc3\xdc\xba\xcc\x77\x23\xbc\xbd\xa4\xc4\x11\xd6\x00\x39\x46\x00\x60\x8f\x63\x21\x2c\x55\x15\x50\xac\xc2\x12\xaf\x28\xe9\x18\x34\x3c\x00\x86\xf0\x78\xab\xfe\x48\x09\xdd\xb3\x87\xbd\xd2\x33\x9b\x51\xaf\x9a\xf9\xdf\xf0\xc0\xba\x42\x5f\xca\xcf\x00\x6a\xde\x34\x3d\x3f\xf7\xb8\x63\x71\x0b\x9e\x59\x82\xa6\x67\x96\xce\xe2\xd6\xe2\xe3\x08\x53\x02\x3d\x46\x95\x40\x1f\xc7\xd5\x96\xa3\xc8\x51\x5b\xed\x7e\xc1\x2f\xd1\x77\xae\xc1\x8b\x6b\x8e\x3e\x77\xed\x32\x46\x2d\x8e\x4a\x86\x14\x3a\x2c\x3c\xd5\xf2\x82\x84\x88\x72\xb2\xe9\x33\xce\xb9\xb3\xed\x51\xd9\xb0\xf1\x51\xf1\xa9\x95\x82\xe7\x2b\xd8\xe8\x3c\xdf\x2f\x3e\x96\x3d\x5f\xf7\x59\x67\x38\x61\x0e\xeb\xba\x32\xb0\xf4\x19\xc0\xd2\x97\x04\x96\xde\xc8\x2b\xe9\xe3\x5a\x69\xd3\xd9\x96\x7d\x0e\x4f\x81\xa0\x96\x17\x67\x34\x03\x9c\x5c\xe4\x53\xa5\x60\x9d\xc9\x54\xca\xd6\x55\xc8\x82\x4f\x50\x83\xbe\xdf\x2e\x82\xf7\xa9\x03\x99\xaa\x8d\xd5\x00\xd9\xfd\x16\xb7\x0b\x79\x9b\x81\x15\x03\xea\xc3\x5b\x49\x09\x60\x11\x64\x9a\x60\x8d\x47\xe2\x50\x1c\xd1\xa6\x09\xfc\x26\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\xbb\xe2\x7b\xc5\x53\x80\xbb\x5c\x16\xd3\x51\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\x09\x2a\x85\xad\x88\xa6\x26\x7e\xf3\x1a\xab\x99\x68\x0e\x3e\x4a\x70\x9b\xb7\x48\xcd\x9c\xa6\xb0\x5f\x7c\xbd\x57\xc1\x44\x7a\x85\xcc\x2a\x29\x26\x6f\xe1\x65\x2a\xfb\xb6\xbc\x28\xc6\x87\xa4\x45\x4f\x09\x6b\x9a\x5d\x4b\x75\xb1\x8a\x34\x3d\x8c\x45\xa1\x35\x42\x30\x35\x97\x95\xf8\x95\x46\xf5\x5c\x11\x40\x89\x9c\x28\x27\x49\x9b\xb0\x30\x94\x06\x93\xc2\xe3\x0a\x5e\x43\x9f\x08\xc6\x76\xf4\x95\x17\x8b\x8f\xfb\x95\x0f\xbd\xf8\xd1\x04\x38\xc6\x41\x77\x8c\xdd\xaa\xcb\x42\x74\x0e\xc3\xeb\xe6\x03\xf4\x32\xb8\x62\x38\x02\xc5\xc9\x77\xf8\x2e\x71\x70\xfc\x68\x28\xc7\x41\x1f\x1e\x54\x57\x47\xbe\x51\x0d\x41\x99\xe0\x15\x7a\x76\x9f\x94\x6b\x9c\x53\x28\xf2\xd6\x41\xc3\x90\x7b\x30\x07\xd0\x77\x1e\x2d\xc5\xb8\x98\x7e\xc7\xeb\xff\xc9\x53\x66\x61\x07\xfc\x83\x66\x47\xda\xff\x0f\x79\xd0\x6c\x68\x99\x75\x2f\x9a\xe1\xc5\xa6\x19\x2e\xbe\xc4\xeb\x38\x3a\xb8\x8a\xd6\x33\x4a\x84\xeb\x14\x09\xf1\x51\x3e\x92\xbc\xd9\xd7\x2c\xbe\x62\xb5\xc1\x12\x1d\xb6\x17\xdc\x55\x8a\x5a\x93\x12\xe3\xb0\xcd\x71\x17\x24\x65\x7c\x5a\x24\xe9\x6a\x8d\x48\x35\x68\x67\xa9\xd6\xa3\x19\x4c\x12\x7a\x44\x63\x69\xc3\x18\x93\x30\x26\xe9\xd2\x1e\x74\x39\x5e\xdc\x51\xaf\xa5\x90\x04\x51\xb0\x6b\x50\x93\xcc\x44\x01\x83\xa1\x48\x4a\x18\xe3\x4d\x52\xe4\x05\x1f\x3c\x69\x29\x5f\x9a\x3e\xf6\xc2\x08\x7a\xac\xd5\xc4\x4d\x07\x95\x02\x68\x92\x57\x05\x7d\x19\xfa\xa7\x4a\x2a\xee\x06\xb1\x33\x6d\xd7\x6b\xca\x4e\x9f\x03\xe6\xb8\x6d\x92\x02\x65\xbf\x80\x97\x1b\xeb\xf6\xe7\x6f\xc2\xf4\xe0\xd5\x1f\xe4\xba\x67\x7f\x74\x5c\xbc\xb9\x68\x94\x19\x6c\x2a\x1a\x19\xf3\x19\xfb\xed\x68\xef\xfb\xbe\xad\xe6\x7b\x3e\x1f\x53\x7f\x00\x26\x6a\x39\x48\x77\x79\x23\xd8\x6e\x6f\xee\xf6\xd7\xfa\x75\x1c\x76\xf0\xa0\xf0\x00\x4e\x22\xda\x58\xff\x24\x9e\x8d\x55\x01\xf3\xb2\x03\x90\x43\xa7\x08\x62\xcb\xcc\x35\xeb\x72\x5e\x1e\xc4\x9b\x8a\xf4\xfa\x54\x73\xba\x6d\xbf\xb3\x40\xc7\xd7\x17\x37\x57\xc7\xa7\x8f\x21\x75\x1e\x00\x18\x4c\x06\x67\xe9\x84\x20\x2b\x98\x15\x7d\x1c\xab\x97\x77\x8b\xe4\x61\xa8\x9b\xd7\xd7\xf4\xb9\x68\x6f\xe5\xa4\x49\xeb\xf8\x58\xed\x18\x4c\x5f\xa2\xe4\xaa\x28\x05\xb0\x7f\x46\x8a\x4d\x3c\x1f\x49\x90\x8a\x57\x2d\xdc\x4c\x5c\x9d\x5e\x40\xeb\xa3\xa4\x90\x94\xb4\x69\x44\x35\xb1\x27\xec\x7d\x27\x68\x9c\x8d\x3e\x61\xaf\x16\x59\x5d\x0c\xfc\x04\x23\x7b\x17\xef\x3a\xab\x27\x08\x23\x31\x58\x57\xfa\xd8\x96\x4e\xc3\x68\xb7\x8b\x4d\xc3\xd8\xc9\xdc\xae\x17\x2e\xa8\x70\x33\x8e\x1a\xf8\xca\xa7\xb1\xc2\xba\x82\x5d\xeb\x8e\xbe\x4e\xde\x43\x8f\x63\x5c\x87\x80\x99\x2c\x70\x0b\xa8\x1f\x55\xec\xdf\x4f\x18\x15\x88\x22\xeb\x47\x85\xa6\xfd\x0c\xee\x8a\xa9\x2f\x56\x07\xd3\xf6\x9d\x51\x5d\xb5\xfd\xd8\xb6\xae\xb0\xf9\x6e\xe7\xf8\x4d\xf0\xd4\x01\x48\x24\x00\xf9\x24\xab\x26\x80\x20\x82\xeb\x06\xf5\xc8\x85\x98\x10\x88\xef\xc5\x28\xc0\x90\x69\x69\x72\xb3\x5c\x72\xac\x1c\x8e\x27\xa6\x01\x1b\x10\x3a\xe7\x82\x3d\x4c\xad\xa4\x5c\xf3\xca\xd8\xfc\x00\x75\x9e\xc7\x74\xae\x77\xbf\xde\x22\x91\x25\x39\x03\x6f\xf7\xee\x59\xce\xb7\x7b\x68\xab\x6d\x98\xa5\x0d\x71\x56\xd8\x08\xb6\xc0\x96\xf4\x4a\x8b\xc8\x1d\xec\x7f\x6f\x29\x99\xb8\x61\xbf\x76\x08\x66\x9b\xfe\x22\x93\x00\xc5\x41\x19\x9c\x28\x2c\xe0\x27\x3c\x2e\x44\xfd\x1e\x97\xa0\x7e\x1f\x01\x97\x53\x66\xdb\x30\xae\xf1\x4b\x58\x8d\xeb\x31\xfb\xae\x29\x15\xd9\x80\x25\x6d\xf8\x62\x6c\x88\x83\x62\xee\x09\xe3\xdc\x4e\x21\x26\x49\x83\x20\xc3\x5d\xcf\xa7\x86\x3b\x8d\x4f\x0d\xf7\x4c\x9f\xaa\x1d\x1b\xf4\xa0\xeb\x36\x36\x11\xd7\xd7\xaf\xe3\xd9\xf6\xb9\xc1\xab\x08\xec\xfc\x72\x8f\x03\x0b\xae\x48\x85\xbd\x97\xf2\xed\xa7\x1f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x63\x53\xf5\xe5\xcf\x83\x2a\x8c\x59\x46\x4b\xa6\x5a\x1c\x41\x8c\x31\xca\xf8\x0d\xb5\x54\xee\x8c\x56\x6d\x69\xdb\xd3\x59\xe0\xc4\x39\x22\x66\xcf\x6c\x1d\x29\x87\x8c\xd6\x3a\xc6\x3e\xf3\x6d\x90\x41\x1a\x7a\xdf\xcb\x83\x4f\xec\x77\xf6\xd6\xaa\x79\x86\x64\xdf\x43\x09\x87\x68\xe1\x11\xd5\x45\xd9\xfa\x87\xe8\x86\xaf\x6a\x78\xb5\x5b\x11\x0c\x05\x8e\xa8\x08\xb9\xc3\xfd\x7f\x13\xb8\xa5\x1a\x98\x3d\xe4\x08\x93\xc3\xe8\xcd\x47\xd8\x1a\xf4\xc9\x47\x63\x0c\x72\x87\x8a\x1d\xc8\xb3\x8d\xda\xd7\xe5\x9e\x15\xdc\xc8\xd3\xd7\x30\xa8\xbb\x7e\x13\x37\xf7\x2f\x05\x46\x85\xde\x72\x9e\x7f\x6c\x7d\x5c\xd8\xae\x5f\xba\x49\xb4\xeb\x4d\x93\x93\xf8\xc7\xbe\xdc\x53\xe5\x65\xbd\x02\xe9\xfc\x89\x7f\xa6\xaf\xf1\xd3\xcd\x95\xdc\x5b\x82\xba\xcd\xde\xd2\x4f\xec\x26\x13\xb4\x6e\x4a\x71\xb3\xf4\xc5\x7d\x39\x40\x72\xc8\x99\x2f\xf0\x7b\xba\x83\x0a\x3b\x16\x33\xe3\x7c\x23\x28\xa2\xf3\x26\x20\xa6\x97\xbf\xbd\xbe\x1c\x40\x4e\x2c\x50\xcd\x99\x58\xd0\x9a\x33\xb1\x7c\xe5\xac\xc8\x0d\x01\xe7\x43\xd3\x23\x10\xc8\xa3\x03\x10\x1a\xf2\x47\xbf\x20\x9e\xc9\x8a\x94\xda\x8a\x7c\x27\x2b\x46\xe9\x4c\x7e\xc7\x40\xc1\xe3\x19\x02\x65\x6f\x67\x8c\x5a\xad\xc3\x36\x6b\x39\xe7\xf0\xfc\x40\x7c\x10\x02\x7e\x20\xbe\xbc\x93\xdd\x33\x68\xd2\x89\x3f\x55\x85\x3e\x33\x22\xf0\x57\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x72\xd2\xdb\x19\x7e\x45\x53\xa7\x0b\x91\xd7\x8b\xc0\xfa\x65\xc8\x2f\x48\x4a\x09\x03\x5e\x2d\x1c\x62\xcc\x62\xf5\xe2\xcc\x3f\x2b\x02\xe3\xd6\x60\x30\x9b\x6a\x59\x3a\x53\x98\x8e\xe6\x35\xa5\x45\xc0\xeb\xbe\xdf\x75\x76\x17\x15\x8f\x60\xa4\x97\xf4\x63\x30\x88\xb0\x2a\x1d\xc9\xa8\xa6\x5d\x05\xf3\x64\x80\x17\x49\x98\xc6\xb8\x41\x2b\xdf\x0e\xc0\x95\x71\x0f\xd9\xad\xbd\x62\x1d\xac\x10\xff\xa4\xac\xdf\x9f\x5d\xeb\xbc\x2f\x4f\xb6\xcc\x50\xba\x73\x31\x0c\x76\x2e\x73\x47\x98\x2d\x5a\x89\x8b\xc5\xff\x6e\xf8\xa0\xd8\xe5\x84\x6b\xcf\xd2\x3a\xa2\xbd\x62\x2f\xb7\x79\xf4\xd3\xc3\x7b\xf7\x05\x41\x93\x65\x4c\x84\x7e\x8e\x01\xca\xcf\xe5\x62\x1f\x9c\x5b\xfc\x26\xbf\xd5\x50\xe8\xab\x69\xcc\xfb\x70\x5f\x23\xec\xf7\x95\xa4\x04\x30\x53\xc1\xf1\xac\xeb\xf0\xa1\x34\x5f\xca\xa3\xed\xbb\xe6\xa1\x26\x31\x94\xb9\x74\x98\x1b\x85\xfc\xcc\x36\x72\xb9\x63\xe0\xe5\x61\xb0\xa1\x14\x12\xa6\x21\xc0\x4e\xe0\x51\x63\x79\x13\x1d\xb7\xac\x66\xc7\x2c\x6b\x37\x0b\x60\x21\x8a\x07\x8f\xe1\x49\x1f\x24\xff\x4b\x3e\x5c\xc9\x7b\x71\x9a\xf8\x30\x78\xfb\xc7\xec\x9b\x81\x9f\x4e\x74\xc1\xe8\x7e\xa7\x57\x8b\xea\x20\xa6\x96\xfc\x2a\x46\xaf\x7a\x58\x48\xd0\x1f\x7d\xa8\xd0\xe8\x21\xce\x61\x48\x71\x17\xe2\x19\xb5\xb2\xe3\x93\x84\x8f\x0f\x7a\xf0\xa8\x6b\x17\x8f\xee\x87\xd1\x9b\xd9\x90\x15\x07\x46\x8d\xaa\x94\xd1\x59\x18\xec\xdf\x35\xf4\xb4\xfc\x0e\xeb\x15\x6b\x8d\x54\xcd\x71\x54\x5d\x6c\xe8\x61\x24\xed\x20\x5a\x78\x53\x7f\x4b\x45\x2e\xac\x8e\x8e\xcf\x7e\x0f\xb0\x2d\x38\x9b\x46\x98\x9f\x00\xdc\x13\xe7\x0b\x44\x1e\x4f\xf4\xe3\x6e\x44\xc5\xb8\x1f\x22\x4a\x63\xee\xfe\x14\x44\x61\xc5\xdd\x41\xc9\xa8\x3a\x8d\x94\x28\x61\x69\x7f\x72\xcf\x8a\x24\xef\x39\x58\xe8\x87\x24\x5f\xf1\x98\xe8\x6f\x82\x77\x7b\xc4\xcd\x18\x54\x40\x9f\x89\xfc\xe4\xaf\x1f\xb9\xe2\x1f\x49\xf7\x5d\x70\xb4\xd1\xfb\x5d\xf2\xe3\x16\x09\x5b\xd2\x04\x69\xb1\x73\xc2\x1a\x09\xfc\x60\x14\x7e\x16\xf8\x59\xe4\xb7\xf8\x75\xc0\xaf\x43\x59\x7e\x94\xc2\xe0\x5b\x54\x9c\x74\xc9\x35\x52\x6e\xf1\x9b\xe3\x4f\xf2\x4f\x69\x47\x23\x49\xdb\x0f\x04\x09\xe5\xe6\x34\xdd\x7e\x50\xba\xbc\xf0\xfb\xc4\x3f\xf6\x7b\x9f\x8f\xf5\x6e\x35\x09\x5f\x94\xc2\xcd\x6b\x92\x7c\xde\x07\xf3\x21\x0d\x59\x2b\x94\x6f\x4a\xe5\x7e\x68\xa2\x7c\x52\x5a\x9b\x1f\x32\xdf\x2f\xfd\x42\xaa\xef\x95\x7e\x11\x7a\x8b\xb6\xd9\x71\xc0\xc0\x0f\xee\x15\x2e\xff\x2a\xcb\x39\xe5\x69\x50\x14\x44\x89\xe3\x8b\x87\xfc\xd4\x91\xbc\x05\xc8\xd7\xf2\x66\x89\x05\xf2\xac\xea\xdd\xde\x69\x65\x3e\xda\xac\x80\xf9\xc8\x2a\xe2\x6b\xca\x4f\x2d\xc8\x3b\x34\x34\xbb\xd9\x1c\x3b\x0b\xb4\xbd\xae\xfa\x7b\xf9\xfd\xbf\xfe\x2b\xc0\xe9\xf3\xdf\xfe\x2d\xbd\x78\xf6\x43\x5a\x7e\xe6\x38\x51\xfc\xb4\xfd\xe7\x6a\xbb\xdf\x1a\x14\xfd\x7c\x1e\x01\xf2\x65\x3c\x78\x0d\xaa\x05\x5e\x9f\x03\x85\xd9\xfd\xff\x06\x00\x00\xff\xff\x76\x9c\x09\x9e\x68\xa3\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x09\xff\xdd\x1d\x21\x97\xa3\xbb\xff\x7b\x89\x0e\xdb\xbd\xb2\xd4\xbe\xcc\xb1\x2c\x8d\x25\xcf\xec\xac\xc3\xc1\x61\x15\x59\x55\x1c\x57\x91\xd5\x24\xcb\x65\xcd\x89\x13\xb1\xaf\xb1\xaf\xb7\x4f\xb2\xc0\x0f\x40\x5e\x48\x96\x6c\xcf\x9c\xd8\xfd\x22\xb1\x32\x91\x37\x24\x12\x09\x20\x91\xc8\x7c\xb7\xcb\x8a\xb2\x5b\xa4\x4f\xd2\xd3\x74\x97\x57\xf5\xa6\xec\xba\xb4\x2b\x37\xcb\x87\xeb\xa6\xeb\xcb\x22\x7d\x51\xf5\xf4\xbb\xfd\x54\x2d\xca\x24\x59\x37\xdb\x92\x40\x5f\xd2\xbf\xa4\xc8\xbb\xf5\xbc\xc9\xdb\x82\x12\xce\xed\x3b\x29\x3f\xef\x36\x4d\xcb\x40\xbf\xc9\x57\xb2\x2e\x37\x3b\x2e\x43\xff\x92\xae\x5a\xd5\x59\x55\xd3\xcf\x6b\xfa\x4a\x5f\xd5\x49\xd7\x2c\xaa\x7c\x93\x05\x19\x48\xb0\xfc\x5f\xd2\x9f\xea\x22\xbd\xee\xcb\x5d\xfa\xb8\xdb\xe6\x9b\xcd\xd3\xbc\x43\x91\xbe\x4c\xf3\xc5\xa2\xd9\xd7\xfd\xe3\x47\x92\x21\x95\x37\xfb\xde\x6a\xbf\xdc\xf7\x92\xb6\xdf\x59\xd2\xbb\x5d\xd2\x96\xab\x8a\x06\xd6\x52\xd2\x5b\xfd\x4c\x0e\xe5\xbc\xab\x7a\xee\xf4\x9f\xe5\x2b\xf9\x54\xb6\x5d\xd5\x70\x7f\xfe\x24\x5f\xc9\x2e\x5f\x31\xc0\x15\xfd\x4b\xfa\x72\xbb\xdb\xe4\x28\x70\xa3\x9f\xc9\x26\xaf\x57\x7b\x81\x79\xad\x9f\xc9\xa2\x2d\x29\x2b\xab\xcb\x03\xa5\x9e\xe1\x47\x4a\x3f\x66\xb3\x59\xb2\x27\x9c\x66\xbb\xb6\x59\x56\x9b\x32\xcb\xeb\x22\xdb\x0a\xd6\xde\x51\x7a\xaa\xe9\x29\xa5\xa7\x9c\x8e\x61\x94\x05\x21\x28\xcb\x3b\x1d\x0b\x4d\x0d\xe1\x2b\xef\x12\x54\x55\xe7\x5b\x2b\xcd\x9f\x49\xb9\xcd\xab\x0d\x4f\xc2\x43\xfe\xa0\xce\x77\xdd\xa1\xc1\x54\x5d\xe9\x27\x21\x22\xeb\x6f\x77\x25\xf0\xf0\xf0\x86\xbe\x92\x45\xbe\xeb\x17\xeb\x9c\xfb\x2a\x5f\x09\x01\xed\x1a\x42\x48\xd3\xde\x02\xce\x7e\x24\x4d\xbb\xca\xeb\xea\xef\x79\x2f\x48\xba\x0c\x7e\x26\xdb\xaa\x6d\x1b\xc6\xef\x05\x3e\x12\x1a\x71\xc6\xf5\x50\xca\x1b\xc2\x44\x50\x0b\xe7\x6c\xab\x55\x2b\xa8\xe4\xcc\x0b\xfc\xe2\x5a\x38\x6f\xd9\xb4\x1f\x35\xe3\x39\x7f\x0e\x8a\x52\x27\x34\x37\x6e\x3f\xaf\x09\xf9\x9a\x7b\x81\x1f\x11\x40\x97\xe4\xc5\x96\x50\xb9\xcb\xeb\x92\x71\x74\xca\xbf\x08\x2f\xf4\x2b\x51\x9a\xca\xba\xb2\xef\xab\x7a\xc5\xc8\x3e\x95\xa4\xf4\x5a\x93\x92\x20\xcf\xa5\xdd\x36\x7b\x37\x9d\x94\xfe\x17\xfa\x99\x5e\xc9\x4f\xc9\x0b\x0a\x21\xd3\x95\xe4\x91\x74\xd9\xb2\x2c\x0b\x19\x4b\x97\x3e\xa7\xef\x64\xb7\xdf\x6c\x08\x6b\xbf\xef\xcb\xae\xe7\x42\x57\xf4\x9b\xc6\x2f\xbf\x93\xaa\xeb\xe8\x83\x92\x5f\xe1\x23\xa1\xa9\xab\x17\x18\xcc\x19\x3e\x92\xe4\x7d\x57\xe6\xed\x62\xfd\x21\x91\xff\xe8\x2b\x7f\x30\xed\x1d\x9b\x54\x26\x24\x25\x22\x69\xc1\x1a\x48\x16\x4d\xc1\x3f\xce\xe8\x1f\x55\x5d\xd5\x5d\x4f\x2b\xee\x43\xa2\x1f\x0c\x26\x5f\x32\x01\x7d\xd5\x03\x0b\x9a\x88\xe5\xdb\xf1\x0c\xa6\xcf\xab\xb6\xeb\x1f\xf6\x15\x11\xeb\xdb\x7d\x9d\xf0\xf8\x68\xb5\x65\xc5\xdc\x98\xd0\x8b\x86\x50\x84\xe4\x96\xc6\x77\x71\x7b\xfd\xc7\xd7\x27\xe9\x15\x71\xa2\x55\x5b\xd2\x77\x4a\x75\xd0\x3f\x2a\xf3\xf3\x2c\xa1\x52\xd6\xd2\x79\xde\xe7\xf3\xbc\x2b\x3d\x5a\x39\x53\xa8\xdb\xe5\x81\xc6\x99\xab\x81\x83\x75\x7d\x34\xde\xa9\x15\x42\x75\xe8\xba\x72\x75\xbc\xe1\xc5\x45\xe9\xcc\xd4\x50\xf8\x6a\x53\x72\x3a\x55\x95\xbe\x7a\xf3\xe6\xf2\xfc\x59\x5a\xd6\xab\xaa\x2e\xd3\x43\xd5\xaf\xd3\x7d\xbf\xfc\xaf\xd9\xaa\xac\xcb\x96\x78\xdc\xa2\x4a\x69\x4d\xb5\x44\x09\x29\x11\xb6\x0c\x6e\x96\x74\xdd\x86\xd6\x3e\xd0\x7b\x7d\xfd\x3a\xbd\x60\x14\xef\xf2\x7e\x8d\x8e\xf4\xeb\xa4\xfb\x7d\xc3\x28\x72\x0d\xde\xac\xcb\x14\x54\x06\xa0\x66\x69\xf8\x48\x0b\xed\xe3\x2c\x29\xdb\x36\x23\xb6\xd4\xdf\x66\x5a\x58\xeb\x1b\x42\x4a\x15\x44\x3a\x75\xd3\xa7\xf3\x32\x45\x99\x59\x92\x58\x87\x0d\xbb\xa7\xbb\xdd\xa6\x5a\xc8\x5a\x7f\x21\x79\x1e\xd1\xbc\x83\x28\x96\x42\x38\x20\xca\xf2\x02\x74\x11\x7b\xe6\xf5\x90\x46\x0c\x04\xe5\xd7\x25\x31\xc0\xf5\x7e\x25\x6c\x6f\xd3\xec\x8b\xef\x40\xa9\xd6\x7b\x4f\xa8\xe9\xdb\x86\x3a\x0c\xec\x38\x00\xdf\xc4\x29\x51\x1c\x6f\x5a\x6d\xb9\x6d\x88\xaf\x38\x62\xaf\x88\xa0\x0e\x15\x65\xd2\x48\xbb\xfc\x13\xad\xb7\xbe\x49\xfb\x75\xd5\xa5\x05\x11\xdb\x82\x2b\xa6\xa5\xb1\xa7\xed\x42\xc8\x82\x08\x54\x48\xc3\xd2\xe2\x39\x00\xd4\x76\x4f\xd4\xb4\xa6\xca\x78\x33\xe2\x9d\x93\xaa\x9c\xea\x27\x86\x44\xf5\x80\xbe\x89\x72\x1b\xe2\xca\xcc\x37\xcf\xf1\xa1\xbf\xc3\xfa\xa9\x57\xf9\x72\x49\xbd\xea\x88\x2a\x5e\xa6\x8b\x4d\x43\x24\xf5\xee\xed\xeb\x8e\x09\x66\x9d\xed\x9a\x16\xdb\x1c\x65\x5d\xd1\xa7\x4b\x0b\x10\xcd\x10\xf5\x7e\x3b\xa7\x5f\x87\x75\x45\x1c\x00\x68\xe7\x12\xbc\x9b\x53\x2a\x35\xb1\xef\x68\x0a\x4f\x52\x22\x61\x1a\x01\xa1\x0c\x04\xc0\x63\x28\xaa\x2e\x9f\xd3\xdc\x33\xf8\x92\xb6\xad\x7d\x4b\x64\xb5\xee\xfb\x9d\xb5\xfc\xf2\xe6\xe6\x4a\x9a\x76\xa9\x77\xb5\x9d\x07\x94\x81\x39\xd8\xf0\xc6\x5b\xa7\x4d\x3d\x03\x91\xec\xdb\xcd\x80\x7e\x68\xac\x96\x73\x04\x2f\xdc\x85\x47\xfc\xe7\xda\xa3\x07\x78\xee\x48\x3a\x39\x80\x9a\x08\xc7\x25\x36\x40\x22\xea\x66\xc7\xf5\x06\x54\x7d\xa9\x09\x9e\x94\xb1\x69\xba\x7c\xd9\x3a\x29\x17\xb2\x4f\xc0\xfe\xb7\x34\x60\x65\x23\xd7\x17\x84\x06\xf0\x12\xa4\x2e\xdb\x66\x4b\xa9\xcf\xe9\x9f\x4f\xf0\xdd\xbf\xe0\xfa\x00\x93\x17\x05\xf1\xb7\xee\x24\x7d\xfb\xfc\x2c\xfd\x4f\x3f\xff\xf4\xd3\x2c\x7d\xd5\xf3\x4a\x64\xe2\xfc\x1b\x13\x15\x7d\xca\x1e\xee\x40\x89\x65\xf4\x44\x77\xf7\x78\x65\xdd\x4b\x1f\x23\xf7\xbf\x95\x9f\x73\x92\x3f\xca\xd9\xa2\xd9\x3e\x65\xae\xb2\xcd\xfb\x59\xc2\x39\x44\xae\x4a\xc7\xd7\x65\x5d\xd0\x87\x4a\x02\x9a\x17\xb0\x3b\xcd\x0f\xe4\x02\x91\x8a\xb2\x45\x53\x2f\xab\x96\x07\xf4\x5b\x0d\x6a\x30\x79\x89\xf6\x01\xe4\xd8\x76\x4b\x48\x23\x0e\x52\x2d\x6f\x3d\x28\x86\xfa\x86\x13\x75\x42\x13\xa1\xba\x4c\x45\x49\x87\xe5\x6b\x21\x46\x9e\xb7\x4b\x1a\x5e\x6b\xf8\xee\x3c\xc2\x9b\xe5\x72\x43\x1c\xd5\xb8\xa4\xb6\x70\x29\xa9\xc2\x30\x43\x10\x22\xc6\x1d\x24\xbe\x73\x25\xe2\xb3\xf3\x37\x69\xf9\x89\xa8\x8d\xc8\x81\xb6\xe8\x62\xbf\x00\x85\x31\xec\x49\xca\xfb\x13\xe1\x97\xd6\xc6\x42\xf8\x6a\xc0\x24\xb8\x6b\xcc\x89\x16\x04\x44\xbc\x41\x17\x45\x46\x12\xca\x27\xe2\xa0\x6d\xd0\xc4\x0b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x9a\x71\xa2\x0a\xe9\x45\x27\x9d\x92\x6c\x22\x77\xa2\xe3\x3d\x49\xd2\x79\x41\x7d\x99\xdf\x82\xef\x74\x4c\x0c\x45\xb9\xcc\xf7\x9b\xde\xf7\x4b\x26\xae\x35\x99\xcc\x5a\xba\x66\x61\x3e\xcc\x9b\x2c\x30\xea\x20\xa8\xa7\x1b\x96\x25\x32\xac\x37\xb7\x29\x04\x28\xd0\xab\x88\xb8\x26\x8b\x77\xb3\x44\x37\x6f\x93\xe8\xb3\x4f\x15\xa4\x5f\x47\x42\xc8\x35\xf1\x9e\x79\xcd\x9f\x18\x80\xc5\xea\x6e\xb2\xac\xeb\xd8\x25\x37\xdc\x39\xc9\x57\xf0\xc0\x5d\x40\x0b\x2c\x9e\x13\xe6\x3e\x55\x60\xbd\x3a\x89\xe8\x2b\xcd\x24\x9a\xa6\xa6\xba\xb2\x44\x0d\x54\xfe\x11\xd5\x89\x32\x33\x95\x06\x55\x40\x33\x41\x84\x84\xb4\xb4\x68\x52\xde\x19\xc1\xdf\xa9\xb4\x0d\xb5\xd6\xe1\xeb\x98\xd3\xb6\x5a\xad\x89\xdf\x35\x87\x13\x41\xda\x61\xdd\x94\x4c\xd3\xaf\xce\x9f\xfc\x28\xfd\x58\x31\xb7\x77\x85\x78\x9f\xc8\xf7\x34\xe1\x84\x51\x25\x2d\xe9\x82\xdb\x6f\x01\x39\x92\x3b\x05\x68\x28\xe9\x9b\x2c\x3b\x16\x5f\x74\xfd\x86\x79\xba\x70\x3d\x8c\x94\x1e\x68\x0b\x2a\xd6\x65\xab\x06\xf2\xaa\x89\x71\xbc\x77\x91\xea\xd3\xf5\xd9\xaa\xea\xb3\x25\x33\x12\xae\xf3\x39\x97\xe5\xad\x94\x72\xd2\x07\x94\xf5\x20\x25\x6e\x44\x42\x78\xf1\x4b\x7a\xff\x93\xca\x2f\x3f\x33\x87\xc8\x88\xa6\xab\x0d\x26\x43\xa5\xe0\xb6\x14\xf1\xc9\xd4\xad\xa2\xa1\xf5\xc7\x38\xef\xf6\x3b\xec\x34\x2a\xb2\x9c\xa4\x3b\x01\x2c\x9a\x43\xcd\x6b\x01\xac\x90\x56\x7d\x05\x65\x71\x5e\xd5\x39\x6d\xb7\x56\x0b\x58\xec\x7d\xa2\x86\x37\x97\x37\x00\x5c\x35\xf3\x7d\xb5\x29\x0c\x60\x46\x23\xfc\x94\x6f\xaa\x82\x05\x4f\x9d\xf7\x50\xc8\xb3\xa4\x4a\xfa\xb2\x68\x5a\x96\x0f\x30\x1a\x2b\x78\x44\x30\x69\x79\xc3\x47\x32\x95\x55\x58\x94\x73\x32\x04\xa3\x81\x26\x1e\x12\x39\x4b\x18\xa0\x98\xaa\xab\x1f\xf4\xe8\xe9\x62\x4f\x6d\xd1\xa4\x73\x32\x15\xec\xd2\x87\x4f\xe9\x6f\xc2\xf2\x8a\xf0\xe3\xd5\x18\xf1\x9c\x99\x4a\xe6\x5e\x56\x69\xd4\xd5\x88\xbc\x1d\x75\x19\xf1\x06\x63\x0d\xfb\x6b\x24\xd0\xed\x85\x5e\x59\x33\xde\xd0\xb4\x96\xdf\xd1\xc7\x03\x5a\xc0\xab\x0d\x26\x21\x87\x38\x47\x72\x6d\x43\x78\x63\x02\x39\x91\xe5\xb2\xa4\xa1\x31\x67\xeb\xf3\x8f\xd4\xb7\x9c\xc5\x87\xe4\x3d\x5b\x0f\x3e\x24\x7b\x91\x08\x9b\x4d\xe1\xa4\x6f\xd0\x74\xd3\x0e\xb5\x55\x0f\xe4\xe8\xb5\x23\xb1\x7a\xb1\xce\x9c\xed\x81\x91\xd2\x97\x9f\xb1\x17\x23\xcb\x9b\x22\x98\xd8\x39\x2b\xd9\xde\x62\xba\x78\x10\x17\xb7\x7e\xb6\x48\x1e\xa4\x25\x42\x3a\xcb\xbc\x61\xac\x7d\x2a\x1d\xd4\x59\x98\x1a\x17\xa0\xba\x48\x72\xd5\xaa\x62\xa5\x92\xb2\x44\xf3\xd5\x5c\xd1\x7e\xbb\x04\x4c\x4c\x0d\x27\xe0\x75\x34\x9f\xaa\xc0\xcd\x68\x62\xa0\x1d\x5a\xcb\xc4\x11\x6f\x65\x5d\x04\x6d\x26\xef\xd5\xa8\xf2\x21\x31\xb8\xb7\x71\x3e\x71\x13\xd2\xf4\xbc\xb5\x21\xb3\xd9\x75\x56\x07\x56\x92\x95\xa1\xf8\x0d\x7e\x5d\xee\x58\x16\xd8\x76\x20\x8b\x0d\x41\x16\xb7\x2a\xcd\x3a\x02\xf9\x55\x58\x35\x51\x0c\x31\xb8\xef\xcc\x5c\xf3\x8d\x55\x3c\xab\x88\x14\x50\x3e\xde\x7a\xc4\x04\x42\x42\x27\xec\x3e\x6d\x7b\x7b\x92\x46\x9b\xd8\x3a\xef\x88\x7d\xd3\xce\xad\xc5\x8a\x99\xe9\x5b\x3c\xed\xf9\x42\xd6\x0c\x4c\x37\xa0\x72\x29\xd9\xb4\xc3\x3d\x91\x7b\x28\x1c\x4e\x5b\x71\x92\x0c\xe4\x94\x50\x9c\x99\x68\x93\x10\xb6\x2d\x59\x98\xcd\xb6\x62\x2d\x91\x5f\xe9\x45\x99\x90\xc4\xb5\xa2\x05\x6d\x04\xfb\x84\x95\xdc\x15\x64\x7e\xa5\x57\x06\x28\xfb\x90\x05\x2b\x84\xa5\xfc\x6a\x26\x2a\xe2\x0c\x07\x58\x00\x68\x6d\x8f\xd0\x4f\x9b\x15\x65\xcf\x8c\xa5\xcb\x8e\x0d\xc1\xab\x23\x6e\xe1\x91\x78\xca\xe6\xa5\x34\x84\x52\x01\xd8\x0f\x8b\x0b\x30\xd7\x78\x3c\x7f\x7a\xbf\x7b\xfc\x68\xfe\xd4\xf1\xd6\xc5\xba\x5c\x7c\x14\xfa\xab\xea\x79\xf3\x19\x2a\x2c\x4d\x3c\xe3\xb8\xe6\x35\x76\xbf\x48\xd7\x94\x0b\x2d\x87\x78\x01\x15\x23\xc4\x73\x6e\x34\x69\xd4\x19\x66\x19\x33\x33\xf6\xb9\xdd\xc5\x08\x89\x4a\xa3\x11\xe9\x59\x42\xd3\xc8\x8b\x0f\xeb\xc0\xd3\xed\x29\xa7\x32\xe5\x62\x9f\xf0\xa4\x8b\xf1\x6e\xaa\x6d\xd5\x8f\x48\x87\x19\x51\xae\x24\xa8\x96\x13\xc3\x25\xea\x02\x36\xd0\x17\x62\xe7\x54\x0d\x6d\xbc\x46\x4e\x87\x9c\xb4\x9f\x9f\x53\x22\xa1\x3d\x6d\x63\x3c\x26\xea\x26\xf1\xf3\x9c\x77\x6e\xd2\x7c\xf2\x2e\xdb\xd7\x8a\xd6\xb2\x30\x62\x7a\x59\x61\x97\xe1\x76\x8d\xe4\x03\x28\xc3\xbc\x0a\xf0\xe9\xf7\x0e\xe3\x3f\x90\xb4\xbf\x74\xc5\x98\xf5\x73\x87\x2a\x16\x36\xf3\xc9\xc9\x23\xd6\x58\x97\xa2\xb0\x02\x03\x0c\xc7\x13\x4d\x5a\x8f\x9f\x3d\x52\x9d\x3e\x52\x0a\x26\x64\xbe\xef\xfb\x86\x95\x89\x0d\x53\x8d\x94\xb1\x5e\x9f\x01\x10\xfa\x91\xaf\x0f\x13\x12\xe2\x49\xe6\xa6\x34\xe1\x3e\xf3\x66\x57\x55\xc3\x06\xa3\xd3\xbd\xd2\x81\x15\x62\x00\xc9\xeb\x5b\x23\x65\x22\x08\xee\x05\x37\xd8\x4f\xf7\xe5\xfb\xb6\xfc\xc1\xf7\xc6\xad\x19\x94\xb0\x1e\x49\xf1\x60\x3d\xbd\x45\xae\x18\xdc\x6c\xd5\xd9\xd6\xa7\x66\x2b\x4f\x1f\x6d\x8c\x5e\xe4\xf3\xca\x20\x06\x4b\x72\x67\x01\x44\xd3\x28\x50\x7a\x36\x68\xcb\xeb\x71\x63\x0c\xf6\x71\x97\xfd\x0e\xd6\x37\x4d\xd6\xad\x45\x67\xb6\xee\x91\xbe\x5d\xaf\x22\xc3\x0b\x8c\xee\x20\xba\xff\xcc\xfb\x24\x69\x26\xf9\xe6\x43\x72\x0b\x0b\xdf\x5f\x88\xc3\xd7\xb0\x9d\x36\x09\x65\x88\x96\x75\x81\x0f\x02\x65\x95\xef\x43\xc2\x7b\xe8\x9b\x81\x5c\xc8\x5b\x84\xa6\x05\x02\x0a\xb2\x7e\x8b\xc4\x3d\x9b\xc2\xe4\x6a\x42\x86\x7c\x5b\x7a\x1b\x31\xbe\xdc\x10\xaf\xaf\x5f\xde\x98\x0e\x77\xfd\x32\xfd\x58\x6a\xe5\x2f\xfb\x7e\xd7\xbd\x83\x3e\x2f\xca\x39\x6b\xf2\x57\xf9\x2d\x4b\x6d\x92\xac\x3f\x90\x71\x53\xe6\x5b\xed\x25\x7f\x4a\x15\xa7\xb4\x9d\x69\x22\x7f\xd2\x2e\x17\xd8\x89\x12\xc8\x2f\x36\x04\x11\x66\x54\x6e\x70\xfa\x43\xa9\x06\xe8\xbf\x8e\x8c\x5b\x7f\x4d\xf2\xcd\x6e\x9d\x43\x80\x08\xc0\x60\xc7\x21\x20\x4c\x7c\x0a\x10\xd0\xc2\x7e\x5b\xb6\xd5\x02\xda\x16\x15\xf8\xfe\x61\xf6\x03\x4c\x78\xb4\x50\x48\x92\x8c\x2b\x2b\x68\x91\xfc\x43\x15\xf2\x37\x4b\x99\x61\xbd\x5d\xf5\x77\x1b\x45\x54\x1d\xa7\x13\xcf\x21\x08\xc8\x74\x1e\xca\x01\x61\x63\x64\xf9\xae\x67\xb3\x0e\x25\x90\x0c\x19\x55\xbd\xcd\x3f\x7f\xa9\xe0\xb6\x99\x28\x27\xac\xc0\x17\xb2\x05\xaf\x43\x8c\xd9\x01\xc1\xb3\xe1\xe6\x28\x34\x4d\x3d\x83\xd4\x1f\x69\x57\xab\x1d\xd8\x3b\xf9\x9d\xe2\xf7\x2f\x76\x1c\x41\x5b\x88\x4a\xe0\xa9\x3b\x98\xa0\xcd\xb9\x60\xbe\x09\x49\x7a\xe6\x97\x5b\x28\x5d\x3b\x72\x86\x86\xad\x8a\x8f\x63\x1c\xac\x56\x43\xd1\x20\x92\x9a\xf9\x33\x94\x8c\xf7\xc8\x8c\xa5\xd6\x3a\x94\x4d\xdd\xee\x69\xfb\x0b\x20\xc4\x92\x9e\x8d\xcb\x0d\x16\xdc\xd1\xe2\x24\x0a\x4c\x94\xbe\x1c\x9b\x46\x8f\x94\xef\x69\xc9\x4c\x54\xe0\x56\xd2\xd1\x82\x32\x99\x28\x44\x23\x2f\x46\xbc\x60\x5c\x90\xc1\x48\x6f\xda\x6c\xca\x15\xdb\xd0\xac\xe1\xa8\x35\x25\x21\xda\x0c\x04\x2c\x24\x20\x8f\x61\x37\x59\xe1\xbc\x86\x5a\x80\x9b\xa3\x58\xff\xa2\x5e\x93\x3c\x4f\x9f\x5c\x32\xd0\xc2\xb4\x1b\xba\x93\x6f\x59\xe1\xe8\xf6\xcc\x9a\x59\x39\x11\xe9\x24\x9e\x0d\xde\x78\x51\x55\x89\x26\x8e\x57\x4f\xb4\xc8\x1a\xdb\x97\xea\x07\xd8\x37\x56\x1d\xea\xeb\xe3\x8a\xb5\x72\x07\x74\xac\x5a\xa7\x51\x96\x9f\x2b\xd8\x23\x5f\x54\x6c\xe7\x82\x4e\xe9\x54\x69\xe4\xcd\x92\x0d\x31\x03\xd6\x5d\x64\x54\x22\xc7\x36\x9f\x58\xf5\xe3\xf6\x38\x57\xca\x89\x7d\x52\x07\xc5\xf3\xac\xda\x29\x69\x83\xcd\xa1\x2c\x4e\x68\x8b\xe7\x12\xd4\x4f\xb0\x8d\x7c\x73\xc8\x6f\x3b\x18\x59\x8c\xe3\xb0\x2d\x56\x8a\x33\x3b\x21\x01\x60\x85\x5e\x85\x16\x7f\x5a\x71\x86\x09\x36\x5d\xf3\xe6\xe1\xb6\xe9\x03\xf4\x4b\x70\x0b\x35\xdb\x90\xda\xce\xdb\x9e\x33\x60\x13\x38\xeb\xc6\xac\x49\xb2\x8c\x2f\xd9\x41\x45\x38\x44\x52\xce\x3f\x51\xf6\x84\xc5\x23\x6a\x86\x85\x15\xe2\xc7\x82\x6b\x92\xff\x08\xb3\xe8\x52\x60\x6c\xd8\x53\xfd\x0f\x45\x2e\xae\x08\x87\xac\x67\x79\xfd\x9b\xf7\x26\x9a\x15\xb3\x58\x4b\x3a\xb4\xe7\xa4\xeb\x69\x09\x30\xa6\xed\xe0\xf3\x2f\x22\x5f\xa9\xce\xcd\xb9\x58\x62\x40\x53\xb7\xae\x76\x69\x03\x2b\x68\x88\x42\x4f\xb6\x81\x88\xc9\xb6\xf9\x12\x72\x37\x9b\x83\xdb\xbc\xee\x96\x25\xec\xc2\xdb\x74\xc9\x67\x6b\x33\x6d\x9a\x25\x56\x39\x00\x3d\xd2\xb2\xe8\x30\x68\x3a\xdc\x2d\x30\x77\xc1\x44\xc5\x4d\xcb\x41\x01\x6c\x8f\xe8\x03\xb0\xea\x6b\xea\xac\x0f\x4c\x66\x23\x14\x40\x6a\x8c\x8e\x7d\xac\x37\x9f\xca\x10\x11\xcb\x7f\x74\xe4\x01\xd6\xd5\xf4\x2d\xe7\x05\xf1\x34\x49\xa3\x30\x77\xe0\xd4\x6e\x7e\x1b\x8f\x9e\x8b\x3a\x0a\xe0\x33\xa4\x4f\xa5\xb6\xc2\x0b\x83\xd7\xca\xa0\x42\x98\x39\xbc\xae\x90\xf4\x39\x54\xbe\x39\x75\x71\xb1\x8e\x56\xe7\x0d\x72\x52\xc9\x19\x2d\xd0\xe4\x3d\x37\x4d\x6a\xfc\x3a\xaf\x57\x65\xe6\x6c\xcc\x67\xf8\xad\x12\xba\xda\x8c\xfb\xd4\x0c\xcb\x6c\xf9\xb7\x22\x62\x46\xbe\xb3\x64\x55\x9b\xc5\xa7\x4b\xfe\xd6\x90\x0c\x01\x53\xf1\x1f\xe8\x8b\xa5\xdf\x3a\x89\x4e\xcb\x06\x76\x06\xa8\x07\x55\x7f\x8b\x63\xbc\x39\xc9\xc0\xa2\xa4\x51\x0a\xa9\xb9\xe0\x0e\x30\x7d\x3c\xb7\x6f\x9a\x8f\x9c\x99\x1e\x2f\x6d\xf9\x52\x38\xb1\x43\x3d\xb7\xef\x84\xb5\xe4\xed\x0c\x9b\x03\x0b\xd3\xb0\xba\x07\x5b\xc2\x83\xfb\xdd\x03\x9e\x30\xcb\x9b\x05\xf0\xbb\xbc\x27\xb6\x58\x8b\x8a\x22\x1c\x2a\x2c\xaa\xd9\xae\x0a\x70\x15\x01\x9b\xe1\x8c\x5c\x50\xf1\x21\xf1\x47\xf7\x76\x6a\x3f\x65\x51\x55\x16\xd3\xa9\xcc\xfb\xaf\xf4\xa9\x16\x91\xd4\x39\xae\xa8\xaa\x8a\x83\x51\x3b\xcd\xea\xe2\xc3\xad\x2e\x51\x1b\x52\x6c\x40\x52\xf2\x7e\x92\x9e\xcb\x87\x29\xbd\xfb\x0a\x63\xaa\x8a\x24\xd9\x01\xef\x81\xa3\x81\x4e\x84\xeb\xb4\x3a\x94\x78\x23\x76\x3b\xdc\xd9\x09\x0b\x52\x0b\x08\xd7\xce\x3a\x20\x05\xf0\xa9\x74\xa0\xb0\xb1\x75\x16\x9a\x5c\x1d\x9c\xe3\xf0\xe9\x04\xeb\x9f\x04\x76\x28\xe7\x29\xdb\x4b\x89\x70\x48\x2f\xd2\x81\x6e\x73\x52\xa9\x3e\x55\xb9\xb3\xcc\xd0\x6c\xb1\x2b\x83\xee\xa2\xcf\xd9\x8d\x01\x67\xc3\x63\x9f\x1b\x3e\x68\xd1\xb3\x8b\xd7\xfa\x99\xec\x77\x05\xdb\xb4\xfc\x80\xdf\x21\xc1\x0d\x38\xce\x0f\xcc\x95\x18\xba\x15\x73\xd2\x8c\x80\x17\xa9\xc2\x71\xcf\x6e\x67\xb6\x7c\x26\xfc\x68\x74\x09\x15\x43\x90\xf0\x94\x40\xb2\x54\x69\x35\x80\x99\xf0\x1e\xa0\x57\x0e\x2c\x81\x10\xda\x2b\xd3\x75\x73\x48\x37\x55\xfd\xb1\x53\xfc\x3a\x7b\x88\xe9\xc9\xe9\x39\x12\x08\x58\x2c\x35\x2c\x56\x55\xf5\xbe\xfc\x35\xb1\x2f\xb1\xe4\xe3\x73\xec\xf9\x51\xca\xae\x38\x64\x06\x7a\x00\x73\x26\x47\x4d\xa7\x48\x9e\x84\xf5\x7a\xae\x16\xc1\x19\x79\x70\x28\xbc\x2c\x59\xc0\x06\x3b\xb4\x53\x2c\xc2\x4f\xd3\x74\x6a\x7b\xf4\xec\x87\xd3\x60\xa8\x50\x28\x9d\x2d\x07\xa1\x93\x79\x6a\x67\x67\x58\x8d\x89\x9d\x76\x59\x7f\xb0\xb6\xb3\x6a\x2b\xce\x55\xef\xec\x2c\x0c\x33\xeb\xf4\x0a\x64\xcf\x48\x53\x1e\x0c\x26\x3c\x72\x78\xd3\xd8\x49\x9b\xf1\x51\xcb\x3c\x31\x71\x41\x10\x82\xcd\x3e\xea\xec\x90\xb2\xb4\x02\xb3\x9e\x7f\x81\xc0\x8c\x7c\xc2\x93\x18\xe1\xcd\x8e\xb5\x34\x9b\x48\x28\x3c\xd3\x73\x00\x97\xcf\x98\x0d\xf2\xdf\xe0\xcc\x6c\x68\x6d\x88\x34\x25\xad\xe1\xa8\x34\x3d\xe8\xd3\x68\xed\x58\xb9\x03\x8d\x2d\x1c\x8e\x11\xfc\x4c\xa8\x3f\x87\x65\x58\x8e\xd5\xe0\x4f\x20\xf4\x52\xe3\x4c\x4e\xaa\x20\x04\x40\xe1\xe8\xbc\x9e\x71\x2a\xdc\x88\x2d\xea\xe2\xad\xe5\x00\xd4\x61\x2b\xd6\x27\x4b\x3b\x9c\x0f\x19\xdb\xae\xa5\x49\xa7\x8d\x77\x60\x89\x1a\xb1\xb4\x88\x7d\x81\x7b\x35\x38\x69\xf6\x5c\x8b\x34\x48\xad\x8b\xf9\x3f\xbe\x2c\xc5\x5b\x2f\x4b\xb6\x6e\x59\xa3\xca\xac\x5d\xae\xb0\xec\x84\xfa\x80\x35\x50\x3a\xf3\x44\x01\x4c\xc4\x5d\x04\x58\x08\x62\x96\x50\x4b\xce\x22\x3b\x2f\x2c\xb6\xff\xcf\x6c\xbb\x51\x83\xce\xb6\xeb\xbb\x3a\x20\x1b\xee\xe3\x60\xc7\x19\x11\x10\x65\x60\xff\xd5\xa9\x0f\x76\x55\x9d\x7c\xb7\xb9\x72\x33\x22\xd3\x33\x9a\x28\x09\x5b\xb0\x12\x01\x38\x2c\x0b\x78\xf0\x26\x81\x2b\x94\x08\xf8\xdd\xc8\x0c\x19\xf3\xd7\x53\x68\x30\x84\x15\x81\x65\x79\x80\x37\x34\x91\xfe\x54\x23\xda\x32\x22\xe4\xdc\xd6\x79\xf6\x8c\x8e\x66\x4e\x54\x6d\x58\x57\xab\x35\x8d\xab\xda\xf2\x99\x25\xb8\xb6\x1d\x8c\x79\xad\x8e\x7f\xd1\xc2\x6b\x56\x35\xdb\x70\xb8\x05\x71\xe5\x71\xdc\xf6\x71\xd7\xb7\x4d\xbd\x7a\x7a\xde\xb0\xba\xc5\x96\x10\xde\x2a\x7e\x7d\xfc\x48\xd3\x89\x65\xf0\x1c\xb2\x83\xeb\x8b\xaa\x7f\xb9\x9f\x3f\xe8\xd2\x15\xc9\x06\xd8\x40\x1e\xe7\xe9\xba\x2d\x97\x4f\xee\xdd\xef\xee\x3d\xd5\x83\x6a\xf1\xb3\x3a\xd4\x0e\x2d\x8f\x1f\xe5\x4f\x59\x7a\xee\x9a\x0d\x09\xb5\x71\x91\x66\xbb\x95\xf9\x25\xf6\xb7\x15\x48\xf4\x1f\x67\xdb\x65\x0d\xcc\x95\xad\xe2\x87\x2a\x9c\x39\x5a\xf7\xf3\xa3\xd3\x66\x62\x52\x64\x5f\x50\x41\x85\x81\x71\x64\x57\xf7\x01\xd3\x64\xdb\x42\xea\x8a\x61\x83\x1d\x17\xc3\x44\xb2\xb9\xc6\x9b\x36\xcc\x38\x01\x09\x1a\x75\x58\x79\x2a\x4a\x3d\x11\x49\x83\xd3\xac\x4d\xd9\x38\xe9\xcb\x48\x2b\xa0\x5f\xe6\xa9\x66\xca\x84\xc0\xe8\x8d\x20\x4c\xb0\x11\x0d\x7f\x67\x0c\x40\x46\xaf\xcb\xdf\x46\x80\x3c\x91\x64\x14\x27\x02\x01\x3f\x98\x01\x8c\x51\xb3\x0a\x7d\x60\x9e\xd6\x0b\xb0\x32\xd5\x41\xc4\x51\x45\x04\x32\x21\x49\x92\xd0\x99\xbd\x7d\xa5\xec\x30\x6a\xd7\x0f\xdc\x9a\xf3\x47\x5f\xe8\xcb\x70\xc4\x8c\x31\x8c\xe9\x14\xe8\xa0\xb1\xc0\xa6\xa0\x33\xf5\x5a\x2d\x08\xc8\xa0\x6d\x38\xd0\x16\xde\x34\x7a\xe2\x92\x5a\x22\xe6\x84\xd4\x83\xbe\x8c\x16\x33\x77\x02\x6e\x69\xe2\xe2\x01\xa3\xc4\x7f\x49\x8b\x9c\x38\x41\xdf\x7c\x24\x62\x1a\x17\x41\xfa\xb1\x42\x8e\xc3\x98\x8c\xae\xfc\xe5\xd4\xb3\x87\xa1\xd4\xae\x07\x9c\x47\x59\x4c\xc0\x59\xb4\x56\xe7\xfa\x22\x16\x95\x12\xb2\xf1\xbc\xaa\x0b\xe1\x24\xca\x08\xd4\x97\xc4\x71\x00\x92\x2f\x6a\x06\x82\xd9\x93\x3f\xf4\x77\x38\x2d\x51\xfd\xc1\x72\x21\x06\xbe\xaf\x03\x06\x2a\xe4\x90\x09\x2a\xdc\x20\xaf\x48\x05\x83\x7f\xdb\xa9\x54\x78\xc3\xd9\x9d\x3a\x77\xea\x39\xb1\x15\x79\xa1\x89\x58\x03\x00\x14\x84\x77\x0e\x11\xf8\xe5\xb5\x71\xab\x45\x7d\x00\xd4\x73\x0d\x73\x40\x54\x67\x2c\x73\x2d\x3e\x01\xe9\xe9\xd5\x2b\xda\x33\x5c\x83\x56\xe9\x6f\x39\xc9\x91\xd2\x85\x83\xb3\x04\x30\xb1\x0d\x79\xae\x3b\x41\x92\xe2\x66\x78\x44\x49\x2c\x71\x37\xa8\xd1\x80\x64\x30\x71\xbe\xe0\xb8\xec\x02\xeb\x88\xb4\x86\x9e\x0c\x77\x2b\x37\xd4\xef\x08\xb3\xce\x46\xc7\x4b\x6b\x77\xcb\xfc\x3f\x70\xff\xc9\x05\x43\x07\x70\xf0\x81\xdf\x11\x41\xc2\x42\x90\xf2\x12\x6e\x1d\xff\xb0\x0e\x9b\x00\x11\x4c\x65\xc8\x46\x26\x27\xd3\x33\x95\xc9\x62\x53\x9c\x65\x67\xf5\xc4\x63\xfe\x12\x9f\x61\xc2\xf7\xfa\xeb\x1d\x5c\x26\x1c\x55\x40\xca\x57\x93\xcd\x3a\x8a\x96\xa6\x07\xfc\x26\x95\x8d\x50\x4e\xd0\xb9\x15\x91\xad\x95\x22\x02\x57\x51\xaa\xe5\x50\x6e\xd8\xc7\x53\x5b\xf7\xa7\xc8\x3a\xf4\xe8\x0c\x59\x81\xdc\xe9\x31\x3b\xf3\x3a\x51\x50\x50\x11\x9a\xb7\xac\x32\x82\xa0\xe5\x86\x63\x63\x51\x81\x6d\xbf\x3e\x3b\x7d\xf3\xe6\xf2\xc6\x6f\xd3\xbc\x0e\xea\x82\x84\x89\xef\x9c\x07\xd6\xa8\x5f\xe6\x87\xe5\x26\x30\x86\xf0\x9e\x60\x5a\xe2\x18\x5c\xc8\xa6\xac\x76\xfa\x5c\x35\xe0\x3d\x0d\xf7\xc5\x78\x79\xd4\xff\xe2\xd8\xfc\x25\xef\x59\xbe\xf9\x90\x98\x91\xf8\x92\xff\x27\xa1\x9d\x3d\x38\xdb\xc0\xd2\xf3\x47\x20\xde\x03\x9b\x3a\xd0\x14\x23\xbb\x3b\x98\xf4\x3e\x87\x0a\x41\xb8\x6f\xb0\x57\x2c\x53\x1c\x8f\x9e\xb0\x19\xb1\x69\xb1\x60\x18\xb9\xfb\xba\xfa\x7d\x0f\x01\x8d\x15\x08\x62\x1e\xec\xd8\x37\xaf\x36\xb2\xa1\xfc\xc9\xfd\x90\x74\xfe\x1a\x78\x09\x07\x8d\xd3\xaf\xc7\xdd\x8e\x7d\x15\x69\x6f\xe8\x9e\xdc\xdb\x57\x29\x5b\xa5\xd8\x37\xe8\xde\x53\x12\xf7\xd9\xcd\x80\xa6\x8f\x20\x9e\x06\xd5\xf1\xdd\x13\x5f\xe7\xf7\xaa\xaf\x51\x7f\xb1\x8e\x3e\xe5\x9b\x7d\x19\xa9\xf7\xbc\x6e\xb8\x4c\xf7\x43\x82\xa2\x6a\xf5\x1c\xde\x5b\x41\x9e\xf9\x09\x73\x1e\x9c\x85\x91\x3a\x31\x14\xd5\xb0\xc4\x6c\xd5\x8b\xbd\x33\x0d\x50\xc1\xeb\x12\xad\x96\x21\xba\xf5\x5c\xca\x2d\xff\x6e\xd1\x56\x70\x76\x96\x74\xbe\xa9\x94\x06\xb7\x94\x5c\xa2\x6f\xf7\x9a\x88\x86\xc6\x34\x5b\x55\x3d\xe9\x75\x7c\x33\x09\xae\xb1\x09\xad\x39\xda\x06\x70\xc7\x49\xbe\x2c\x65\x54\x94\x77\x4c\x81\x85\x9d\x86\xe5\x34\x25\x1f\xfe\xd0\xdf\x13\xa5\x14\xd0\x6e\x58\xb1\xc9\xbd\x21\xbd\xb6\xe2\x55\xf3\x8a\xfe\xd1\x8e\x28\xf2\x73\x3c\xc7\x1d\xca\xab\x55\x40\x94\x3c\x57\x85\xfa\x45\xe9\x84\xa8\x43\x54\x30\x25\xea\x48\xab\x16\x5b\x60\x0c\x09\xe9\x33\x24\xe8\x7d\x26\xea\x04\x4d\xc0\x27\x11\x23\xe4\x86\xd3\x2b\x4b\xf9\x9e\x55\xa7\x1f\x8e\xd8\x31\x87\x87\x81\xdf\x6e\xce\x1c\xd6\x70\xb7\x55\x93\x3d\x45\x32\xb6\x51\xa7\xea\x4d\x14\x9d\xa1\x27\x7a\xdf\xca\x6e\xc7\xb8\x0b\x57\x72\x3d\x26\xcc\x3d\xbe\xa2\x4c\xc5\xce\xe3\x85\x05\x47\xbc\x39\x2d\x8c\x7b\x4f\x05\x67\xb6\xaa\xac\x56\x9d\x82\x0b\xbd\xf2\x15\xcc\x81\x42\xcc\xe0\xc9\x9f\x99\xe6\xc8\xae\x16\xac\x95\xa9\xb5\x60\x1a\x2a\x62\x82\x2a\x88\xe4\xc1\xed\x80\x47\x2f\x5e\xdd\xe0\x6e\x00\xcd\x18\x7c\xb9\xed\x02\x04\xfb\x69\xce\x5c\x9d\x76\x1e\x05\x10\x73\xed\x7c\x25\x89\x5a\x8e\x13\xa1\xf2\xc5\xa6\x7b\xf3\x1a\xc9\xc3\x8b\x24\x89\xac\x4a\x5b\xea\xba\x46\x97\x6e\xb1\xe3\x66\x00\xbb\x57\xc7\xab\x1c\x37\xde\x02\x4c\x87\x3e\x4d\xcc\x93\x0b\xde\x54\x76\xb7\x19\x1b\x10\xb1\x8f\xec\x6e\x13\x78\xfe\xd0\x96\x9b\x41\x22\x91\x44\x70\xf5\x4d\xb5\x93\x4b\x99\x94\x51\x95\xe2\xff\x8b\x8f\xcb\x7f\x4d\x04\x85\x6e\x86\x41\x28\xb8\xa9\xc9\x19\xb4\x7b\xfc\x0a\x26\xdb\xb3\x96\x28\x07\x1a\x4f\xee\x65\x73\x62\x12\x1f\xef\x05\x5a\x23\xdf\xe9\x64\x55\xf1\x3b\x12\x5e\x0f\x7a\xec\xfe\x4e\xbe\x12\xfb\xfd\x67\xfc\xda\xb3\x3f\xa9\x9c\xf1\xf3\x47\xa2\xbf\xf8\x5c\x20\xd1\x5b\x7e\xcc\x0d\x13\xd6\x1c\x74\x3e\x49\x6b\x08\x59\xd7\xef\x7b\x1e\xa5\x28\xbc\x4f\xd2\x3f\xf2\xaf\xf4\x05\xff\xd2\xa1\x30\x47\x70\x6b\x1c\x54\x33\xe0\x11\xa1\x7f\x24\x58\x9e\x7a\x29\x7b\x9e\x20\x4e\x55\x01\xf6\xd5\x9b\xca\x00\xf9\x8a\x41\xb2\xdb\xb3\xe7\x08\xcf\xbb\xb5\x76\x45\x29\xb8\xaf\xc1\x89\xbc\xf1\x06\x35\xb8\x43\xa3\xa8\x8e\xc4\xb1\x1a\x65\x31\x7d\x5b\x42\xa2\xa5\x7f\x9a\x87\x3b\xa1\x7d\x8e\x63\x02\x01\x22\x92\xfb\xff\xd2\x1b\x4a\x51\x88\x32\xcc\x4a\x14\x14\xf9\xc3\xdb\x81\x9b\x7c\x5e\xc2\xb6\xf6\x1a\x1f\x44\xf2\xc4\x23\x7b\x42\x11\x4c\x2e\xee\x47\xc2\x7d\xac\x7a\xf1\x80\xc5\x57\xa2\xfe\xd9\x72\x14\x24\x9f\x09\x0c\xed\x6d\xce\xce\x8a\x6f\xf3\x83\xfc\x24\x4c\xeb\x75\xc2\x97\xf2\x25\xc9\x70\x7d\x15\x50\x78\xbe\x3a\x78\x08\x23\x4a\xc3\x57\xf6\x9d\x58\x07\x66\xe3\x8e\x58\xce\xe0\x36\x63\xba\x18\xe4\x2f\x45\xa5\x7a\xce\x0a\x95\xa5\xe5\xe0\x7f\xa9\x39\x13\xb9\xf4\x2d\x31\x0f\xb1\x29\x5f\xc8\x97\xcb\x29\xc4\xcf\xed\x1c\xbb\x87\xa6\x99\x2b\xf2\x25\xff\x77\xa9\x44\x30\xba\x7e\xe8\xbf\x73\xeb\x95\x0b\xbf\xac\x4b\xc9\xf5\x49\x9f\x3c\x1b\xce\x45\x90\x55\xf3\x2e\x3c\x87\x2d\x9f\x68\x1f\xf9\x61\xf6\x82\xf0\xdf\x66\xae\xfc\x19\xff\x4c\x37\xa3\x5a\xdc\xe4\x86\x73\x3b\x68\x26\x84\xa1\xa6\x26\xc1\xa4\xb9\x10\x52\x5a\xdc\x4e\x01\x93\xfc\x5c\x47\xb0\x97\x94\x10\x92\x56\x54\x31\x4b\x7e\x83\x9a\x21\x0c\x4e\xc3\xd3\xd6\xc2\x97\x3e\x20\x0e\xeb\xe7\xb8\x9f\x01\x90\x74\x33\x9f\x00\x65\xab\x84\x87\xa3\x81\x0f\x81\xd4\x70\xe6\x18\xc2\x70\xf6\xfc\xfc\xd0\xd4\x0e\x27\x48\x32\x33\x92\x39\x16\xa5\x73\x5c\x07\x10\x76\x6d\xbe\x78\x1b\x35\xe3\x2a\xd3\xc6\xa2\xfa\x80\xd0\x3e\x9f\x53\xf6\xfd\x02\xd8\x74\x85\x19\x57\x3e\x4b\x50\x67\x99\xb4\xb8\xd8\xd9\xd9\x6a\x8e\xaa\x0c\xf3\x48\xc0\xc8\x44\x64\x12\x44\x38\xf1\x69\x33\x51\xe2\x4e\x8a\x1a\xc2\x1c\xad\x79\x44\x37\x5a\xf2\x8e\xe9\xf5\x10\x7c\xa3\xf6\x78\xd5\x47\xca\xa9\x84\x03\xb9\x66\x9c\x33\xe3\xeb\x0d\x8e\x53\x9e\xc2\x27\x00\xdc\x72\x0a\xb4\xd3\x0b\xf8\xb4\xc9\xf2\x8e\xec\xba\x5a\xa8\x89\x62\xaa\x90\xcc\x72\x91\xcd\x6f\xb5\x8c\xcc\x33\x2e\x71\x1d\x29\xb2\x65\xb7\x02\x6c\xbf\x5a\xe4\xc2\x25\x4c\x14\xe9\xf4\x12\x28\xdf\xc2\x1c\xe7\xcc\x58\xf6\x85\xdb\x01\xf3\xa6\x6e\x12\x84\xa9\x14\x20\x97\xf8\x98\x02\x11\xc3\x9d\xaa\xde\xbc\x0b\x88\xe7\xb4\x1d\x74\x4d\x36\xcc\xbe\x14\xae\xc4\x6b\x78\x56\xb4\x5f\x51\x8e\xdd\x0e\x99\xaf\x8a\x9d\xf6\xa2\x81\x53\x22\x7e\xde\xd1\x8e\x2f\x20\x0d\x8d\x4a\xf0\x4a\xc2\x2c\x10\x88\x7c\xa7\xf7\xdf\xff\xf8\xa1\xe3\x69\xf0\x26\xf0\xf7\x3f\x7d\x20\x79\xe6\xfe\xfb\x9f\x3f\xc0\xf6\x3d\x2a\x9c\x2d\xd9\xf4\x33\xae\x01\x05\x0d\x7a\xd7\x96\x9f\xaa\x66\x0f\x83\x87\x7e\x7a\xfe\xf0\x59\xa6\xe2\x73\x1f\x2f\x71\x77\x19\x75\xb0\xc2\x0b\x97\x15\xaf\xf0\x7a\xbf\xcd\x74\x8c\x9d\x70\x00\xfb\xe5\x8a\x1b\x06\xb2\x9c\x9b\xfc\xab\xfb\xcd\xc3\xad\x0a\x1e\x2c\x75\xde\xc4\xb8\x7f\x91\x5f\x4f\x31\x10\x1e\xfa\x5f\x5d\x4b\x4d\x60\x35\xbf\x91\xfb\xb4\x2c\xf5\x3a\xfb\xfd\x6d\xd9\xcf\x62\xae\x64\x41\x03\xd0\xe5\x38\x4b\x7b\x11\x83\xa8\x6b\x26\x72\x0c\xbc\x2d\x81\x18\x83\x7b\x8b\x9f\x83\xcc\x61\x65\x02\x34\x55\x9b\xb2\x5a\x4f\x25\x67\x83\x7c\xc1\xb5\x62\x4a\xb6\xa1\x6f\x43\x93\x74\xc9\xd5\x61\x3f\xbf\xb1\x16\x91\x27\x48\xa2\x5c\xba\x7a\x96\x84\xf1\x7a\x01\x0b\x2b\x8c\xd0\x3c\x54\x75\xce\x13\xe8\x6f\x6c\x62\xd7\x68\xd8\x93\x2b\x7c\x58\xb2\x5c\x4b\x54\x4f\x6a\x47\x9b\x91\xf9\x47\x13\xed\xa2\x0a\xc9\xeb\xa4\xbe\x80\x63\xdb\xe5\x14\x3e\x87\xe0\xa4\x08\xb4\xaa\x33\x73\xc8\x56\x91\x9e\x98\x25\x3b\x1d\xc9\x88\x88\x8c\xf8\x3e\x9e\x5a\x14\x8f\xde\x1d\x8a\x8e\xa9\x82\x2b\x24\x3a\xa5\xe1\x6a\x2d\x0b\x98\x09\x7e\xa3\x7f\x0e\xaf\x03\xef\x08\xeb\x1f\xb7\x42\xdd\xa7\x7f\x96\x24\xfb\xa2\x2d\x3a\xbf\x6f\xc7\xf9\x8b\x66\xd3\xf8\x7d\x1d\xbf\x86\x00\x62\xe1\xbb\x5f\x0c\x64\x33\xc9\xf6\xb4\xad\xab\x17\x84\x1b\xef\x3c\x02\x39\x31\x18\xc9\x18\xb8\x09\xc5\x99\xee\x86\x80\x74\x10\xf7\x04\xec\x06\xf6\xb8\x16\x75\xb6\x01\xa8\x33\x31\x4e\x82\x4d\xd9\x92\x45\xca\x08\x6d\xc7\x2c\xb3\x57\xb5\x5c\x43\xe7\xba\xf9\xf4\x34\x30\x27\x6b\xcd\xc7\xad\xc7\xd3\x4d\x7b\x33\xb2\xf4\xf4\x0b\xc7\x54\x08\x9d\x82\x15\xb5\xcb\x89\xf4\xc4\x5b\x41\x75\x09\x4e\x51\xd7\x8b\x6e\x1a\xce\x06\x6a\xc0\xfd\xa1\x49\x9d\xbe\x85\x78\x3c\xbc\x11\xe4\x29\x17\xb6\x5b\x46\x20\x7f\x2d\x3f\x1b\x54\x8b\x0b\xa5\x4f\xe0\x27\x35\x6c\x50\x5b\x78\x92\xea\x97\xe6\xeb\x16\xe7\x54\xc4\xe7\xf8\xad\x9d\x50\x18\xe2\xcd\x6d\xd9\xed\x37\xd8\x03\x70\xbc\x26\x3f\x96\x72\x30\x64\x40\x7c\xc4\xbf\x12\xcb\x80\xb5\x15\x30\x72\xe4\xda\x79\x3f\xe7\xce\xcb\x45\x0e\x97\xc8\x5c\x59\xf3\x9a\x96\x64\x30\x7a\x02\xe1\x7b\xf4\x56\x3f\xfb\x98\x86\x61\x6a\x98\x6d\xb9\xea\xcd\x68\x31\xc0\xd4\xbc\xec\x0f\x3c\x75\x72\xfe\xce\xc8\x15\xeb\x42\xf7\x4b\xb8\x19\x13\x07\x7b\x84\x36\x1e\xf1\x8e\x5c\x28\x37\xfb\x17\xfc\x10\x9e\xa6\xa8\x1c\xc8\xeb\x61\x90\x1c\x05\xc1\x82\xb6\x49\x65\x8a\xc3\xa9\xd2\xb6\xa4\x46\xb1\x8b\x17\xa6\x42\x0a\x6f\x7d\xcc\x57\x82\x8c\x79\xe2\x9b\x88\x98\xcf\xd7\x35\xfd\x67\x97\xae\xf5\xa3\x26\xdd\xac\xad\x19\x49\xfb\xe7\xaa\xa7\xd2\xff\xff\x07\xa3\x51\x92\xf6\xb3\x90\x5d\x82\x3e\xfd\xcf\x08\x6a\xa8\x39\xfb\x3c\x31\x8d\x82\xa0\xca\xce\xbc\x78\x34\x5f\x37\x56\x22\x15\x41\x8d\x73\x4b\x97\x0c\x3d\x3c\x0a\x67\x92\x7a\x4d\x5a\x3c\xaf\x75\xc5\xa6\x3b\x43\x99\x45\xa8\x81\x14\xdb\xfa\x96\x98\x6a\x5c\xce\xcd\xa8\x5a\xb7\xb8\x15\x26\x5e\xdb\x52\x05\xc7\xaf\xc9\xe6\x6c\x51\xab\x45\x4b\xcf\x9d\x5d\x7e\xba\x2e\x85\x2d\xf6\xde\x8d\x98\xb1\x48\x85\x60\x7b\x0a\x58\x96\x5b\xbe\x79\x9d\xc1\xf4\x8c\x6e\x44\xee\x7e\xb4\x39\xd9\xc0\x19\xe2\xe1\x60\xf4\x62\x34\x1a\x74\x25\xa8\x16\xa6\xdd\x63\x35\x3f\xe8\xef\xae\xdb\x56\xa8\x38\xe0\xf3\x82\xe4\x23\xa6\x4d\xc5\xf1\x50\x6c\x69\x99\x69\xe2\x68\x93\x53\xb1\x8b\xc4\xff\x43\xcc\x53\x84\xa3\x46\x2e\x96\xc3\x4f\xa4\xea\xa3\x09\x1d\x2e\x79\x4c\x6e\xbc\xf2\x02\x03\x53\x60\x0a\xf1\xaa\x63\x90\x3d\xa1\xe7\x06\xb9\xd3\xba\xee\x10\xa0\xf0\x16\x84\xfb\x5d\xd4\x76\x93\xd1\x94\x67\xaa\x88\x10\x9b\x64\x02\xc0\xaf\x61\x17\x4c\x02\x1f\x56\xed\x64\xd9\x78\x44\xb4\x25\xcd\x99\x37\xca\x6d\x40\xe1\x3d\x81\x51\x8d\x50\xa7\x7e\xee\x7a\x86\xa8\xfb\x5a\x54\xfd\x80\x75\x4d\x62\xc7\xa4\x11\x5c\xb4\x0b\x33\x26\x8e\x76\xc2\x5c\x3f\xe8\x73\x1a\x31\x9b\xb1\xd2\xef\x2d\xfe\xcd\x0f\xf1\x20\x4b\x71\xd5\xe4\xff\x61\x86\x0b\x90\xa0\x55\x65\xb2\x42\xb4\x46\x54\xae\x29\x3e\x70\xc0\x89\xbb\xa6\xf6\xe0\x96\xaa\x7b\xb8\xdd\x3e\x2c\x8a\x07\x13\xa3\x0e\x76\x74\x37\xec\x81\xc7\x8d\x2a\xcf\x83\xe5\x1f\xd4\x14\x88\x47\xd3\xb8\x63\x80\x68\x9e\xde\xf1\xce\x56\xf2\xc9\x49\x5a\x78\xbc\x61\xef\x0e\xe6\xae\x63\xb6\xd6\xec\x08\xed\xee\x14\x9f\x97\x98\x5c\x7f\x0a\x47\x32\x10\x2c\x83\xac\xc1\x2d\xcd\x3b\xbb\x67\x78\x50\x99\x84\x59\xd2\xf6\x08\x4a\x24\x66\xd5\x51\x84\x04\x02\x9d\x47\xaa\x13\xea\x26\x00\xa7\x44\x3a\xdf\xf6\x7f\xa4\x58\x37\xd5\xf8\x14\x09\x7c\x49\xb0\x9b\x0a\xbc\x67\x69\x33\xa1\x6f\x78\xd5\xcb\x97\xcf\x0a\xa2\x3c\xe8\xde\x19\xfc\xf6\x60\xeb\xa6\xf9\x28\x91\x2e\xe6\xf8\xf4\x39\xab\xaa\xb7\x4c\x8e\x2c\xf6\x32\xce\x25\x71\xa9\x5a\x84\x01\xfe\x9e\x71\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\xbb\x98\xd2\xce\xf1\x2b\xfd\x1f\x4c\x18\x0e\x44\x5d\xe2\x2f\x2d\xb2\xc9\x35\x3b\xc6\xbb\x5c\x75\x49\x0e\x9a\x52\x0f\xea\x71\x5b\xea\xdd\xcb\x47\x11\x72\xb2\xe8\xdd\x1d\x2a\xdb\xfc\xa3\xf3\xeb\x29\xb7\xf4\xf8\xf6\xdc\xcc\xd7\xee\xee\xdf\xf0\x99\x85\x7e\x5e\xda\x15\x9e\x31\x98\x3b\xa2\xf3\xd7\x76\xe2\x03\x45\xf6\x19\xaa\xc5\x2b\x17\x57\x77\xf8\x8a\x0f\x27\xc5\xf7\x85\x88\xee\x5c\x28\x33\x55\x14\xa1\xbc\xc2\x03\xa7\x0b\xba\x87\xe0\x90\xb8\xbc\xc7\xd2\x46\x27\x07\xb2\x7a\x09\x49\x1c\xd2\x45\xc1\xcd\x9d\xd2\xd9\xe1\xe8\x39\x38\xe0\x0c\x7d\x0d\x7d\xd4\x09\xf1\x68\xb7\xae\x22\x2f\x98\xde\xc1\xfd\x0d\x60\x3a\x38\xe3\x1c\x00\x1a\x52\x2e\x89\x7f\x88\x8b\x98\x14\xcb\xa3\xfb\x4f\x7d\x60\x78\x11\xb7\x8e\x79\xbe\xf8\xe8\x7a\xc4\xec\xa9\x6c\x7b\xdc\x3c\x1a\xa3\x9d\x3d\x9f\x69\x01\x65\x3f\x52\x33\x0f\x21\x63\x48\xf0\x35\x0c\x42\xd6\x5f\xb5\x0c\xf0\x01\x4f\x37\xf6\x5c\xfb\x54\x15\x7b\xa2\x3e\x9e\x8b\xbb\xea\xfd\x29\xae\x97\x56\x3c\x8e\x56\x8f\xd6\x3d\x98\x4f\x56\x31\x2a\x04\x42\xe0\x1b\x7f\xb8\x7a\xb6\xf4\x37\x2a\xbb\xa9\x96\x99\x09\x39\x25\x5d\x71\x80\x9b\x91\xa9\xbf\x5a\x14\xb2\x2a\xe1\x43\xf0\xb5\x11\x77\x58\x13\xa5\x7e\x49\x47\xf3\x11\x63\x4b\xae\xab\x39\xc9\xeb\x8b\xde\x3e\x23\x42\x18\x60\x69\x50\x1f\x10\x16\xf8\xe4\xd8\xec\xf3\xf0\x39\x7a\xd4\xad\x68\x67\x26\xd7\x86\x24\x51\xd5\x8b\xcd\x1e\xde\x85\xcc\x8c\x58\x18\x3e\x51\x1e\x7c\xe2\x8c\x81\x72\x49\x27\x70\xdf\xf2\x3c\xb0\x89\x30\x3b\xe8\x2b\xce\xa6\x05\x01\xaf\x46\x4d\xfb\xbb\x43\x27\xde\xdd\xc5\x39\x03\xb0\x6c\xca\x5e\x3e\x75\x51\xee\x38\xa4\x1c\xbb\x7b\x2e\x65\xb7\x15\x9e\xff\x85\x56\x7f\xba\xab\x55\xf1\xd2\x99\x6a\xd6\x7c\xc7\xf4\x32\x2e\x16\x2d\x07\x18\xfd\x42\x6b\x3f\x5b\x6b\xe1\x96\xf5\xb1\x2c\x77\x41\x13\x71\xf7\x03\x5f\x7a\x30\xcf\xd8\x0d\x67\x82\xa3\xe9\x35\x2b\xbb\x97\x79\x84\x89\x07\x3b\x61\xe0\xe7\x61\xbb\xd9\x17\x2e\x96\x8c\x17\x88\x59\xee\x10\x15\x17\xd6\x3b\x07\xc3\x96\x8b\x2c\xe0\xdc\xf0\x66\x34\x96\x3c\x51\x95\x78\x49\x0e\x1c\x50\xfc\x45\x4d\xd7\x35\x2b\xd0\x1e\xef\x5e\xec\x08\x97\x4e\x38\xc0\x39\x50\xf6\x32\x0e\x89\x35\x15\xdf\x72\x1e\xcf\x59\x90\x7c\xbc\xc0\xc0\xa3\x3b\xaa\x2b\xf6\xe8\x0e\x3a\x28\x54\x74\xac\x9e\xb3\xc9\x3a\x94\xf2\xc2\xa9\xe5\xfb\xd8\x15\x6e\xde\x66\x1a\x24\x48\x23\x3a\x0f\xaf\xbe\x6a\xee\x61\xdd\x04\x21\x2a\xc4\xcd\x1c\x7b\x51\xd8\x91\x59\x3c\xd6\x83\x88\x27\x8a\x17\x15\x56\x06\x52\x8c\xed\x2d\x26\xca\x40\x55\xdc\xee\x69\xeb\xdc\x54\x1f\x61\xe0\x21\xc2\x94\x18\x9e\x97\xd7\x37\xb0\xea\xd0\x02\xa0\x7d\x74\xc5\x7c\x37\xfd\xf3\xba\xac\x11\xc2\x8e\x43\x69\x2a\x23\x5a\x2c\xf8\x76\x48\x55\x6b\x94\xaf\x43\x69\x3e\xbb\x75\xb1\x11\xb6\x15\xde\xb3\x31\xe9\x41\xac\x3b\x29\xc2\x65\xf2\x4a\xeb\x76\xe5\x82\x64\xe2\x19\x9f\xd6\xb4\x35\x82\x5b\xa7\x66\x10\xbe\xd3\xd5\xc4\x8d\x04\x3e\x1f\x6c\x04\x0a\xd0\xa2\x28\x09\x8d\x9a\xba\x07\x8f\xd0\x33\x04\x9d\x92\x82\x0d\xc3\x77\xc9\xc0\xe0\xaf\xe2\x2a\x5a\x31\xbb\x4e\xd5\x05\xe2\x2e\x0f\xfc\xa3\x7d\x08\xa3\xac\x49\xd3\x5f\x10\x85\x87\x55\xcd\xbc\x3e\x6e\x4a\xf8\x04\x48\xb7\x6b\xc4\x79\xef\xad\x7e\x8e\x81\x44\x5b\xe2\x9e\xbc\x94\xaf\x31\xc8\x4e\xc3\xb7\xb8\x40\x2e\x63\x90\x79\x53\xb0\xfe\xf3\x8c\xfe\x8d\x85\x68\x17\xea\xd9\x24\x69\x10\xe7\x8e\xaf\x0c\xcb\xe1\x28\x67\x10\xba\xcb\xcd\x52\xae\x7f\xb3\xc5\x05\xea\x9e\x18\xb0\xd8\x65\x54\xa2\x03\xb2\xcb\x12\x2a\xd0\x8b\x4c\xf0\xd1\x47\xcc\xa3\xd0\x3a\xa5\x57\xfe\xc2\xdb\x5e\xc3\x3e\xc1\xd8\x6e\xfd\x7a\x25\x32\x08\xa6\x01\xca\xad\x04\xa8\x3a\xe1\xad\x85\xf5\x42\x3b\xfe\xb2\x0d\x68\x27\x41\xa9\xf8\xfa\x09\x11\x35\x22\x2a\x18\x88\xc8\xb0\x12\x55\x37\xf0\x18\xb5\x8b\x94\x20\x36\x20\x6c\xdc\x23\xf5\xb6\x65\x04\x89\x9f\xed\x08\xc2\x1f\xce\x01\xc8\xee\xb5\x0c\xf7\x19\x05\xf7\xba\xc2\xcb\x68\x3d\x04\x1c\x25\x8a\xc1\x8d\x8e\x6a\xa8\x29\xb1\x4e\x32\xa7\x30\xe3\x64\x60\x04\x64\x5c\xb1\x77\x5d\xb0\xba\x79\x9b\x26\xe1\x48\xa4\xe8\xb6\x5c\xe5\x6d\x61\x71\x26\x94\xd3\xf0\x9d\x01\x70\x94\xf0\x1a\x61\xbe\x21\xe5\x5b\xab\x20\xce\x48\x20\x1f\xd9\x9b\x87\xe6\x9b\x65\x1c\xb3\x37\xb0\xb4\x58\x08\x1b\xe3\x1b\x5a\xc4\x5c\xf6\x3b\xe6\x37\xc2\xbc\xac\x1d\x0c\xf9\xfb\x3f\x5c\x5f\xbe\x39\x49\x3f\x3f\x3c\x1c\x0e\x0f\xb9\xf8\xc3\x7d\xbb\xe1\xbb\x4c\x05\xc7\xb1\xf8\xef\x17\xaf\x4f\xd2\xb2\x5f\xfc\x30\x23\x45\x1d\x6c\xc8\xaf\x6e\x75\x23\x84\x39\x9d\xa9\x8b\x45\xc7\x7f\x9c\x3d\xe9\x8a\xd1\x28\xc7\x61\xf8\xa3\x70\x83\xe4\xd9\x33\x9f\x05\x9d\x4c\xf1\x5d\xf0\xca\x61\xb9\x68\x4b\x1c\xf9\xe3\x23\xc8\xd8\x90\x4e\x30\x75\x7f\x79\x08\x52\x51\x3b\xda\x8d\x57\x0b\x8d\xb2\x3c\x00\xb1\x13\xae\x33\x9c\x6d\xb9\x4c\x4c\x9c\xdb\x56\x38\x54\x55\xb7\x6e\xf6\x9b\x22\xe6\x98\x84\x33\x9d\x88\xb2\xf8\x75\x58\x18\x9e\x73\x08\xc9\xfa\x24\xfd\x03\x5b\x8a\x78\xa2\x84\xb6\x38\xcb\x68\x0b\xc0\xb3\x61\x61\xc4\x0e\x0b\x04\x63\x1a\x80\xc4\x44\x33\xc1\xdc\xe7\x39\xe1\x7c\x54\x89\xea\x6f\xec\x2b\xd0\xa7\x5b\xa7\xcf\x81\xd6\xa4\xba\x71\x91\xd8\x4e\x37\x9d\x6d\x78\x11\x6f\x3c\x09\xd5\x9c\xaf\xcc\x88\x35\x85\x87\x54\xdc\x06\x27\x51\x14\xf0\x47\x80\x32\x17\x09\xfd\x18\xfd\xda\x05\x63\x4a\x35\x58\x5e\x39\xcc\xf0\x86\xde\xf3\xb2\xc7\xed\xda\xa9\xb5\x28\x1a\xb5\x9b\x35\xbf\x7a\x8c\xbf\xe9\x0e\x27\x92\x89\x5c\xb4\x88\xb8\x07\x58\x47\x2c\x73\x1d\x86\xbb\xd8\x50\xdc\x52\xde\xe4\x45\x19\xe5\x4d\xa3\xed\x5a\x01\x07\x6d\x8c\x76\x49\x95\x8e\xc7\x32\xbf\x6f\xe1\x98\x40\x20\x9e\x29\x99\x8e\xd2\xc2\x5e\xe0\xb6\xda\xb9\x4b\x8b\xc5\x2b\x5b\xa5\xe0\xbb\xf1\x12\x65\x84\xc8\x3a\x0a\x39\x2a\x0b\x6a\xf1\x39\x36\x83\xe0\x92\x25\x7b\x95\x9b\x07\xf6\xe8\x8a\x69\x28\x42\x4b\xad\x76\x5d\x48\xae\x35\x0d\x32\x87\x61\xe5\x87\x2b\x9b\x64\x35\x79\xf1\xe2\x4c\xbe\x42\x6c\xed\x36\xcd\xad\xdd\xc2\x3d\xc7\x2f\x0d\x6f\x11\x8e\xcc\x83\xe9\xa0\x3c\x64\x60\x7c\x69\xb2\xb8\xba\xbf\x04\x81\x0e\x55\xc4\xad\x59\xdf\x45\x51\x82\x09\xd5\x98\xc8\xe0\x3d\xd1\xbd\x89\x8b\x9c\x0e\x6a\x78\xe5\xf4\xdc\xb5\x70\xe4\xca\x69\x5c\x34\xbc\x76\x1a\x14\xfd\x8a\x6b\xa7\x31\x92\xc6\x97\x4a\xfd\x50\xbf\xe2\x5e\xe9\xd4\xa0\xc7\x72\xed\x14\xe2\x27\x0a\x4c\x49\xb7\x45\x38\xb6\xaf\xb8\x5f\x3a\xd0\x6c\xbf\x46\xc0\x9d\xea\x89\x47\x49\x80\xdc\x2f\x59\x7c\x8b\x6a\xb9\x9c\xcd\xdb\xe6\xd0\xf1\x25\x4e\xc4\x68\x67\x2e\xcb\xbf\xd3\x6b\xfc\x16\x10\x3e\xbe\x06\x51\xc8\x87\x24\xaa\x97\xcc\x13\x3d\x11\x93\x44\x9c\x1d\x0e\x63\x51\x9f\x53\x8e\x9c\x23\xbe\x21\x4d\xec\xd4\x72\x66\x52\x84\x36\xba\x43\xc6\x5f\xb8\x7e\x0a\xeb\x33\x1b\x4b\x51\xe8\x9a\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\x41\x4b\x03\x84\x40\x7c\xf5\x96\x23\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\xd7\xcc\x08\xc2\x70\xe9\x21\x14\x41\x58\xf4\xcf\x5e\xbd\x91\x9f\xf0\xba\xd6\x70\x29\x70\xbb\xe6\x03\xdf\xc4\x7c\xb9\x67\x53\x3e\xdd\x96\x27\xbe\xf1\x62\xe6\xb0\xd7\x7a\xf0\xcb\x41\x14\x6d\xbe\xc4\x31\x10\xff\x77\xa9\x24\x03\xfb\x62\x57\x6d\xf9\x70\x58\x8c\x90\x23\xa8\xbe\xc6\x87\x4b\xd7\x63\x1c\xfe\xe7\xd2\x72\xb8\x1d\x3c\x09\x46\xee\x31\x62\xe7\xdb\x44\x77\xf7\xbb\xb4\xab\xd8\x76\xaa\x04\x3a\x68\x10\xd4\xe1\x23\x80\x82\x76\xf0\x7e\x8d\x41\xd0\x0e\xed\x6e\x92\xd2\x66\x5d\xcb\x65\x36\xcb\x83\xda\x6a\x21\x9b\xa2\x32\x3e\x0c\xa8\x59\x83\xbd\xe7\x3f\xe5\x63\xf7\x5f\x84\x17\x0a\x58\x14\xe0\xbb\xf5\x6c\x0e\xea\xd6\xb3\xe1\x44\x38\x73\xa6\xe2\x2c\xc5\x6f\x07\x65\x92\x21\x93\x4b\xb6\x2d\x02\xe1\x50\x08\x28\xdc\x56\x2e\xf2\xf6\x23\x47\x48\x87\x53\x94\x55\x70\x68\x35\xcc\x0e\xff\x0f\x67\x4c\x23\xf3\x5f\xc9\xd7\xa8\xc1\xd8\x91\x19\xa5\x61\x0f\x30\x66\xea\x0a\xb0\x34\x2b\x22\xd9\x6b\xf9\x92\x37\x86\x86\x94\x31\xbe\x53\x4d\x79\x0f\x87\xf3\x16\xc0\x3b\x44\xff\xb9\xfc\xdf\xff\xf3\x7f\xb1\xb9\xb4\xa1\xdd\x12\x01\x10\x34\xf6\x9e\x9f\x77\xbb\x06\xe5\xdf\x77\x78\x08\x1e\x1d\x74\x44\xd0\x9f\x6a\x4c\x01\xfa\x1a\xd1\x28\x07\x59\x37\xfa\x66\xd7\xb0\x01\x91\x43\x49\xf4\x64\x8e\xa3\xc7\x61\x1d\x46\x54\x99\xee\x11\x2e\xf6\x97\x4d\x2e\x26\x4d\x22\xea\x28\xd1\x4d\x6f\x29\xc9\xfb\xa6\x5d\x7d\xf0\x11\x22\xdd\x44\x44\xd1\x21\xa1\x19\x7a\x18\x43\xd8\x0b\x26\xbf\xf1\x13\x3b\xa2\x69\x4b\x38\x5a\xb8\x32\xd9\x95\x4b\x89\xd8\x26\xf1\x3c\x5c\x25\x61\x43\x0f\x3a\x0b\xea\xa1\x91\x8a\x11\x36\x63\x22\xb2\x4a\x18\x2d\x84\x14\x6d\x15\x8f\x25\x12\x9d\x9e\x74\x47\x6f\x75\xe1\x22\x8e\xd9\x36\x4d\x0c\x2c\x12\x3d\x82\xe5\xcb\x21\xfc\xc1\xc1\x02\xf9\x1d\x23\x26\x3f\x39\x3c\x7b\x85\x04\x5a\xd7\x48\x40\x20\x4c\x5c\x7f\xe1\xff\x09\xc2\x8f\xa9\x01\x8e\x53\xf5\x4b\xd3\x07\x21\xce\xa2\x50\xeb\xc1\x15\x21\x84\x3e\x8c\xe2\xa7\x73\xe5\x40\xd4\xc4\xe9\xfb\x28\x20\x26\x66\x06\xa9\x77\x41\x47\x37\x3d\x1f\x6c\x70\xe2\xa2\xf1\x73\x60\xc7\x66\x4f\xa5\x5a\x64\x43\x90\x0c\xc2\x31\xd6\x91\xeb\x64\x37\xf3\xcd\x04\x4b\x66\x2d\x47\xf3\xbe\x18\xde\x14\x99\xd3\xe2\xf9\x55\xe0\xf9\xec\xa1\xea\xba\x40\x48\x40\x19\x9f\x9c\x6e\x48\x41\xd8\x44\x6a\x1e\x2a\x62\x51\xee\xd7\x23\x77\x1d\xc7\xa1\x4b\xbf\xfd\xb6\xe3\xb8\x8e\xbb\xef\x3b\xfe\xa3\xa7\xc2\xd3\x61\xc9\x42\x5b\xd6\x20\x3e\x99\xcb\x9a\x0a\x54\xf6\x4f\x9c\xd1\x12\x49\x69\x37\x46\x6b\xdb\xc5\x1f\x3b\x52\xc6\x9d\x21\x1e\x0f\x19\xeb\xa2\x35\x8d\x02\x92\x1d\x3b\xf1\x8d\x02\x75\x7e\x85\xb4\x17\x8f\x38\x10\xf4\xa2\x5e\x39\x84\xb0\x9d\x2f\x8e\xb0\x70\x4c\x7b\xf3\x82\x6b\xc4\x33\x86\x3a\xde\xe8\xba\x3f\x46\x7a\x67\x91\xf8\xf2\x7f\xd8\x4d\x67\xd5\x0b\x8e\xe6\xd4\xd0\x2f\xd7\xfe\xc5\x54\xfd\xe5\xbb\xff\x47\xce\x3e\xee\x0a\x02\x30\xec\x25\xf3\x1a\x77\x41\x20\xec\xe4\x9d\x25\xc2\x6d\x36\x3e\x3e\xff\x67\x02\x03\x4c\x9f\x2f\xb0\x0e\x78\x30\xd3\x17\x36\x65\xc3\x9f\x37\x28\xb0\x0e\x61\xf8\x12\x25\xc3\x33\x5c\x8f\xb9\x3d\x1e\xa1\xea\x87\x9d\xe6\x20\x27\xc2\xbd\x67\x7a\x9c\x66\x31\x81\x06\xe9\x9e\xf5\xc1\x41\x57\x0f\x0c\x3d\x90\xfc\x86\xb8\x33\x99\x33\x2c\x1f\xb7\x11\xfb\xc3\x5b\xaa\x3b\xe2\xb9\xc0\x87\x4b\x27\xac\x2d\x4a\x5c\x14\x3f\x93\x2f\x97\xa3\xba\x96\x06\xdf\xf5\x9d\x90\xc0\xaa\xb8\xc3\x12\xa4\xea\xae\xa7\xb8\xe6\xbb\xb2\x34\x29\xb7\x3b\x9e\xc2\xdc\x45\x1a\xe4\x69\x12\x40\x15\x37\xb5\x57\x90\x90\x7f\x19\xd6\x25\x8f\x4c\xe8\xee\xf9\xa6\x39\x24\xb2\x75\xce\xe0\x96\x2f\x81\x40\x35\x25\xee\x92\xa4\xb1\x8c\xa2\xd1\x66\x52\xb9\xca\xaf\xf1\x48\xc6\xf9\x83\xcb\xe3\xd8\x39\xdc\xb5\x71\x8b\xeb\xcb\x02\x28\xa4\x06\xdc\xd7\x65\xb9\x3e\x24\x8e\x99\xd6\x0a\x01\xd6\x37\x2b\x92\x68\xd4\x6e\x08\xf1\x35\x0d\x73\x3f\x47\xcd\x9d\x98\x7d\x0b\x61\xde\xd4\xf0\x26\x71\xba\xa4\x15\x79\x48\xc7\xf5\xc3\xbd\xd2\xe4\xfb\x11\x42\x7c\x4d\x3f\xb8\x15\x38\x3a\x63\x12\xef\xea\x0f\x29\x87\x1a\xb5\x2e\x3a\xc8\x1f\x76\xd1\xdf\x9e\xbe\x09\xf6\x6b\x38\x8f\x14\x03\xf9\x83\xcd\xc9\xe3\x8d\x53\x72\xe4\x90\x77\x42\x44\x10\x1f\x9f\xc9\x40\x3d\x5f\x5e\xe2\xf0\x28\xe7\x92\x0e\x34\xf0\xde\xf1\x60\x53\xbb\x90\xf6\xcb\x8b\x74\x90\xb1\x2e\x54\xae\x93\xcc\x2f\x6f\xbc\x02\x67\x21\x6a\x44\xbe\x0b\xb7\x0c\x08\x78\x36\x93\x85\x04\x39\x77\x6b\x9c\x59\x5d\xd0\xea\xb8\x32\xc7\xaa\x01\xe5\x58\xf4\x18\xce\x78\x67\x28\x9d\x05\xc6\x56\x66\xca\x27\x26\xb3\x3a\xd7\x02\x40\x6d\xf3\xdb\xc8\x79\x07\x3e\xba\xdb\xf8\x8d\xcb\x3b\x76\xec\x71\x57\xfc\x5e\x2d\x91\xc3\x1d\xc1\x1c\x35\xca\xcc\xc2\xa5\x3e\x26\x10\x4f\x76\xab\x16\xce\xf6\x36\xd7\xcc\x2c\x02\x52\x40\x85\xbf\xb8\x51\xba\x67\xdc\x3c\x37\xc0\xe9\x31\x55\xf4\xe0\x2e\xa6\xf0\x0d\x1d\x00\xdb\xb8\xbb\x07\x60\x0b\x72\xc5\x8a\xba\x11\xb0\x80\xbb\x3a\xa2\xef\xaf\x7d\x7d\x47\xc0\x37\xbe\xb2\x23\x27\xd6\x0b\x8d\xba\x5b\x14\x93\xeb\xff\xae\xfe\x0d\xd4\x1d\x10\x67\x14\xd6\x79\x40\xf0\xd1\xe3\xc0\x8e\xe8\x03\x37\x36\xab\x16\x0e\x13\xea\x56\xa7\xdb\x99\xaf\xaa\xa6\x29\x84\x2a\x5b\xf7\xa1\xeb\x5d\x1c\xd9\x82\xbd\xbe\xfa\xf6\x56\x45\x12\x1e\x5c\x1c\x58\xc3\x7b\xdc\x88\x12\x86\x23\x60\x09\xf5\xfd\x1e\x68\xff\x70\xe4\x11\x72\x79\x1b\x50\x8e\xc1\xba\xe8\xad\xea\x71\xd4\xe5\x3b\x23\x5e\xc7\x91\xbe\x87\x21\xdf\x3b\x09\xf0\xb4\x32\x59\xce\x9e\x5f\x4b\xd4\xd3\x88\x19\xeb\x2d\xe1\x60\x8b\x97\x30\x17\x1c\xec\xb4\xa9\x2b\xf1\x69\xb9\x90\x2f\x1a\x7b\xc2\xa6\x18\xb5\xc3\x70\x90\x34\x7f\x51\xd4\x8f\x0e\xc6\x45\xb6\x31\xa9\x20\x20\xdf\x41\x7e\x10\x81\x19\xae\xec\xad\xc5\x94\xf6\x35\xa0\x27\x30\x61\xee\x83\x9e\x69\x3f\x50\xe9\xbe\x9b\x6a\x31\xe3\x83\xd1\x54\x8f\x85\xdd\xd3\xc1\xcc\x24\x38\xcc\x68\xc1\x61\x46\xe5\x31\xc6\x93\x20\x21\xc2\x79\x98\xb1\x73\x01\x1d\xa3\xe4\x78\xe3\xf3\xe9\x88\x22\x12\x27\x71\xe8\x90\x28\x21\x5f\x8c\x5a\x31\x03\x76\x98\x66\x2e\x72\x3e\xc5\x9c\xe5\xa2\xda\xe3\xa0\x7e\x61\x96\x78\x18\x46\x49\xfa\xe0\x5b\x3c\x12\xb1\xa9\x86\x69\x9b\x66\xc5\x81\xd7\xed\x79\xcf\x60\x78\x2a\x3b\xc7\x75\x9a\xb7\x74\x54\x05\x2e\x13\x86\x29\x38\xd7\xea\xf3\x2e\x2e\x8d\x25\x18\x26\xe8\x45\xec\x11\x20\xe9\xd4\xf9\x62\x8d\xf1\xcf\xa6\x08\xc9\x54\x63\x47\x4c\xfa\xf6\xf5\x04\xa4\x3c\xca\x97\xda\x13\x7c\x93\x30\xfc\xf8\x31\x5e\x3c\x0c\x72\xf9\xf6\x41\x9d\x69\xdc\xc3\x46\x43\x16\xf1\x55\x04\x17\xe3\x30\xbd\xc4\x8a\xeb\xee\x2c\x14\xec\x62\x7c\x8d\x5f\xe3\x2a\x6a\x49\x91\x38\xee\xd8\xce\x7c\xcd\xba\x31\xaa\xc3\x47\xee\x75\xb5\xce\xcb\x09\x2c\xdd\x98\x47\x88\x23\x92\xaf\xaa\x63\xd0\x4b\x0f\xe1\xaa\xf9\xf6\xae\xc2\x7a\xc6\x71\x50\x60\x91\x8b\x3a\x19\xb1\x35\x03\xf9\x42\x0d\x83\x2e\x4e\x56\xf1\x0d\x9d\xe4\x57\x42\x57\x0b\xf7\xb6\xe1\x39\xc7\xd3\x6d\xe7\x1c\x71\x85\xf7\xb0\x72\x61\xb7\xa5\x22\x0b\xdc\x74\xf1\xbb\x7a\x86\x0e\xb1\xce\x3d\x55\xfd\xb1\xbe\xb5\x65\x77\x5b\x2f\x32\x3c\x71\xd9\xad\xf5\xa0\xf2\x6d\x29\xb6\xf2\x07\x33\x4a\x7b\x94\x6b\xd8\xac\x12\x47\x7a\xdd\x03\x09\x38\xfe\xfd\x82\xd2\xe1\x3f\x4c\x5b\xdc\x43\xf0\x44\x94\x36\x01\x8e\xc4\xb3\xfe\x87\x3b\x1b\x1a\x8c\x25\x60\x88\x01\x6e\x5b\x74\x85\x9f\xc8\xfe\x8a\x11\x04\x87\xe4\xe1\x30\x98\x0c\x74\xf5\x83\x57\x84\x2f\x6b\x30\xe2\xbe\x67\x87\x07\x8e\x90\xcc\xde\x1c\xea\x25\xa5\x1b\x9a\x3d\x61\xaa\xc6\xa3\x23\x03\x0a\xdb\xbd\x63\x86\x1e\x44\xbd\xf8\xf2\x18\xc3\x4d\x48\x1e\x8d\xde\xef\xd8\xa3\x37\x75\xaf\x45\xbf\xc3\xef\x90\x29\x48\xb0\xf3\x6c\xd5\xb4\x0d\x4d\x8f\x04\x95\xd1\x00\xe8\x2f\x2c\xad\x9b\x28\x00\x13\xf8\x6d\xb6\xd7\x40\x40\x56\xe6\x02\xc9\x24\x3f\x70\x54\x20\x5f\xaa\x6f\xfa\x7c\x63\x65\xd8\x02\xb9\x50\xbb\xf5\x0d\x67\x58\xa9\x53\xcb\x08\x4a\x6a\x99\x66\xce\xae\xfa\x7a\x29\x12\xc0\x97\x9a\x12\xc0\xe2\x98\x83\x23\xb5\x10\xba\xf6\xbb\x8c\x87\x8a\x90\x12\x92\x9c\xbe\x46\x72\x7a\xc3\xc9\xe3\x16\xac\x57\xae\xd8\xa0\x53\xc7\xca\xf1\xed\xfd\x61\x99\xe7\x7c\xc9\x7f\x08\x6f\x98\x5b\x97\xf9\x6e\x84\xb7\x97\x94\x38\xc2\x1a\x20\xc7\x08\x00\xec\x71\x2c\x84\xa5\xaa\x02\x8a\x55\x58\xe2\x15\x25\x1d\x83\x86\x07\xc0\x10\x1e\x8f\xf9\x1f\x29\xa1\x7b\xf6\xb0\x57\x7a\x66\x33\xea\x55\x33\xff\x1b\x5e\xa0\x57\xe8\x4b\xf9\x19\x40\xcd\x9b\xa6\xe7\xf7\x30\x77\x2c\x6e\xc1\x33\x4b\xd0\xf4\xcc\xd2\x59\xdc\x5a\x7c\x1c\x61\x4a\xa0\xc7\xa8\x12\xe8\xe3\xb8\xda\x72\x98\x3d\x6a\xab\xdd\x2f\xf8\xa9\xfe\xce\x35\x78\x71\xcd\xe1\xf9\xae\x5d\xc6\xa8\xc5\x51\xc9\x90\x42\x87\x85\xa7\x5a\x5e\x90\x10\x51\x4e\x36\x7d\xc6\x39\x77\xb6\x3d\x2a\x1b\x36\x3e\x2a\x3e\xb5\x52\xf0\xbe\x07\x1b\x9d\xe7\xfb\xc5\xc7\xb2\xe7\xeb\x3e\xeb\x0c\x27\xcc\x61\x5d\x57\x06\x96\x3e\x03\x58\xfa\x92\xc0\xd2\x1b\x79\x46\x7e\x5c\x2b\x6d\x3a\xdb\xb2\xcf\xe1\x29\x10\xd4\xf2\xe2\x8c\x66\x80\x93\x8b\x7c\xaa\x14\xac\x33\x99\x4a\xd9\xba\x0a\x59\xf0\x09\x6a\xd0\x07\xee\x45\xf0\x3e\x75\x20\x53\xb5\xb1\x1a\x20\xbb\xdf\xe2\x76\x21\x8f\x57\xb0\x62\x40\x7d\x78\x2b\x29\x01\x2c\xa2\x70\x13\xac\xf1\x48\x1c\x8a\x23\x1c\x37\x81\xdf\xc4\x8c\x52\x38\x98\x07\x16\xc6\x45\x70\x57\x7c\xaf\x78\x0a\x70\x97\xcb\x62\x3a\x0a\x69\xcd\x1b\xa0\xb5\x3c\x84\xd3\x46\x3b\x41\xa5\xb0\x15\xd1\xd4\xc4\x6f\x5e\x83\x59\x13\xcd\xc1\x47\x09\x6e\xf3\x16\xca\x9a\xd3\x14\xf6\x8b\xcf\x1b\x2b\x98\x48\xaf\x90\x59\x25\xc5\xe4\x2d\x3c\xdd\x65\xdf\x96\x17\x05\x41\x91\xb4\xe8\xad\x65\x4d\xb3\x6b\xa9\x2e\x98\x93\xa6\x87\xc1\x3a\xb4\x46\x08\xa6\xe6\xb2\x12\x3f\x63\xa9\x9e\x2b\x02\x28\xa1\x25\xe5\x24\x69\x13\x16\x86\xd2\x60\x52\x78\x5c\xc1\x6b\xe8\x13\xc1\xd8\x8e\x3e\x83\x63\x01\x84\xbf\xf2\x25\x1c\x3f\x9a\x00\xc7\x38\xe8\x8e\xb1\x5b\x75\x59\x88\xce\x61\xfc\xe1\x7c\x80\x5e\x06\x57\x0c\x47\xa0\x38\xf9\x0e\x1f\x6e\x0e\x8e\x1f\x0d\xe5\x38\xe8\xc3\x8b\xf3\xea\xc8\x37\xaa\x21\x28\x13\x3c\xd3\xcf\xee\x93\x72\x8d\x73\x0a\x45\xde\x3a\x68\x18\x72\x2f\x0a\x01\xfa\xce\xa3\xa5\x18\x17\xd3\x0f\x9d\xfd\x5f\x79\xeb\x2d\xec\x80\x7f\xf1\xed\x48\xfb\xff\x21\x2f\xbe\x0d\x2d\xb3\xee\xc9\x37\x3c\x69\x35\xc3\xc5\x97\x78\x1d\x47\x07\x57\xd1\x7a\x46\x89\x70\x9d\x22\x21\x3e\xca\x47\x92\x37\xfb\x9a\xc5\x57\xac\x36\x58\xa2\xc3\xf6\x82\xbb\x4a\x51\x6b\x52\x62\x1c\xd7\x3a\xee\x82\xa4\x8c\x4f\x8b\x24\x5d\xad\x11\xa9\x46\x35\x2d\xd5\x7a\x34\x83\x49\x42\x8f\x68\x2c\x6d\x18\x84\x13\xc6\x24\x5d\xda\x83\x2e\xc7\x8b\x3b\xea\xb5\x14\x92\x20\x0a\x76\x0d\x6a\x92\x99\x28\x60\x30\x14\x49\x09\x83\xe0\x49\x8a\x3c\x71\x84\x37\x3f\xe5\x4b\xd3\xc7\x5e\x18\x41\x8f\xb5\x9a\xb8\xe9\xa0\x52\x00\x4d\xf2\xaa\xa0\x2f\x43\xff\x54\x49\xc5\xdd\x20\x76\xa6\xed\x7a\x4d\xd9\xe9\x7b\xc9\x1c\xd8\x4e\x52\xa0\xec\x17\xf0\x72\x63\xdd\xfe\xfc\x4d\x98\x1e\x3c\x8b\x84\x5c\xf7\x2e\x92\x8e\x8b\x37\x17\x0d\xc3\x83\x4d\x45\x43\x87\x3e\x63\xbf\x1d\xed\x7d\xdf\xb7\xd5\x7c\xcf\xe7\x63\xea\x0f\xc0\x44\x2d\x07\xe9\x2e\x6f\x04\xdb\xed\xcd\xdd\xfe\x5a\xbf\x8e\xc3\x0e\x5e\x5c\x1e\xc0\x49\xc8\x1f\xeb\x9f\x04\xfc\xb1\x2a\x60\x5e\x76\x00\x72\xe8\x14\x41\x6c\x99\xb9\x66\x5d\xce\xcb\x83\x78\x53\x91\x5e\x9f\x6a\x4e\xb7\xed\x77\x16\x09\xfa\xfa\xe2\xe6\xea\xf8\xf4\x31\xa4\xce\x03\x00\x83\xc9\xe0\x2c\x9d\x10\x64\x05\xb3\xa2\xaf\x87\xf5\xf2\xb0\x93\xbc\x9c\x75\xf3\xfa\x9a\x3e\x17\xed\xad\x9c\x34\x69\x1d\x1f\xab\x1d\x83\xe9\x53\x9d\x5c\x15\xa5\x00\xf6\x4f\x48\xb1\x89\xe7\x23\x09\x52\xf1\xaa\x85\x9b\x89\xab\xd3\x0b\x68\x7d\x94\x14\x92\x92\x36\x8d\xa8\x26\xf6\xc6\xbf\xef\x04\x8d\xb3\xd1\x37\xfe\xd5\x22\xab\x8b\x81\xdf\xa8\x64\xef\xe2\x5d\x67\xf5\x04\x61\x24\x06\xeb\x4a\x5f\x23\xd3\x69\x18\xed\x76\xb1\x69\x18\x3b\x99\xdb\xf5\xc2\x05\x15\x6e\xc6\x51\x03\x5f\xf9\x76\x58\x58\x57\xb0\x6b\xdd\xd1\xd7\xc9\x7b\xe8\x71\x10\xf0\x10\x30\x93\x05\x6e\x2f\x0e\x44\x15\xfb\x07\x26\x46\x05\xa2\xa7\x07\xa2\x42\xd3\x7e\x06\x77\x3d\x3a\x20\x56\x07\xd3\xf6\x9d\x51\x5d\xb5\xfd\xd8\xb6\xae\xb0\xf9\x6e\xe7\xf8\x4d\xf0\x16\x04\x48\x24\x00\xf9\x24\xab\x26\x80\x20\x82\xeb\x06\xf5\xc8\x85\x98\x10\x88\xef\xc5\x28\xc0\x90\x69\x69\x72\xb3\x5c\x72\xac\x1c\x0e\xb8\xa6\x01\x1b\x10\x3a\xe7\x82\x3d\x4c\xad\xa4\x5c\xf3\xca\xd8\xfc\x00\x75\x9e\xc7\x74\xae\x77\xbf\xde\x22\x91\x25\x39\x03\x6f\xf7\xee\xdd\xd2\xb7\x7b\x68\xab\x6d\x98\xa5\x0d\x71\x56\xd8\x08\xb6\xc0\x96\xf4\x4a\x0b\x59\x1e\xec\x7f\x6f\x29\x99\xb8\x61\xbf\x76\x08\x66\x9b\xfe\x22\x93\x08\xce\x41\x19\x9c\x28\x2c\xe0\x27\x3c\x2e\x44\xfd\x1e\x97\xa0\x7e\x1f\x01\x97\x53\x66\xdb\x30\xae\xf1\x4b\x58\x8d\xeb\x31\xfb\xae\x29\x15\xd9\x80\x25\x6d\xf8\xa4\x6e\x88\x83\x62\xee\x09\xe3\xdc\x4e\x21\x26\x49\x83\x20\xc3\x5d\xcf\xa7\x86\x3b\x8d\x4f\x0d\xf7\x4c\x9f\xaa\x1d\x1b\xf4\xa0\xeb\x36\x36\x11\xd7\xd7\xaf\xe3\xd9\xf6\xb9\xc1\xb3\x11\xec\xfc\x72\x8f\x23\x2f\xae\x48\x85\xbd\x97\xf2\xed\xa7\x1f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x7d\x53\xf5\xe5\xcf\x83\x2a\x8c\x59\x46\x4b\xa6\x5a\x1c\x41\x8c\x31\xca\xf8\x91\xb9\x54\xee\x8c\x56\x6d\x69\xdb\xd3\x59\xe0\xc4\x39\x22\x66\xcf\x6c\x1d\x29\x87\x8c\xd6\x3a\xc6\x3e\xf3\x6d\x90\x41\x1a\x7a\xdf\xcb\x8b\x58\xec\x77\xf6\xd6\xaa\x79\x86\x64\xdf\x43\x89\x17\x69\xf1\x23\xd5\x45\xd9\xfa\x87\xf0\x8f\xaf\x6a\x78\xb5\x5b\x11\x0c\x05\x8e\xa8\x08\xb9\xc3\xfd\x7f\x13\xb8\xa5\x1a\x98\xbd\x74\x09\x93\xc3\xe8\x51\x4c\xd8\x1a\xf4\x4d\x4c\x63\x0c\x72\x87\x8a\x1d\xc8\xb3\x8d\xda\xd7\xe5\x9e\x15\xdc\xc8\xd3\xd7\x30\xa8\xbb\x7e\x13\x37\xf7\x4f\x29\x46\x85\xde\x72\x9e\x7f\x8d\x7e\x5c\xd8\xae\x5f\xba\x49\xb4\xeb\x4d\x93\x93\xf8\xfb\xbe\xdc\x53\xe5\x65\xbd\x02\xe9\xfc\x91\x7f\xa6\xaf\xf1\xd3\xcd\x95\xdc\x5b\x82\xba\xcd\xde\xd2\x4f\xec\x26\x13\xb4\x6e\x4a\x71\xb3\xf4\xc5\x7d\x39\x40\x72\xc8\x99\x2f\xf0\x7b\xba\x83\x0a\x3b\x16\x33\xe3\x7c\x23\x28\xa2\xf3\x26\x20\xa6\x97\xbf\xbd\xbe\x1c\x40\x4e\x2c\x50\xcd\x99\x58\xd0\x9a\x33\xb1\x7c\xe5\xac\xc8\x0d\x01\xe7\x43\xd3\x23\x10\xc8\xa3\x03\x10\x1a\xf2\x47\xbf\x20\x9e\xc9\x8a\x94\xda\x8a\x7c\x27\x2b\x46\xe9\x4c\x7e\xc7\x40\xc1\xeb\x22\x02\x65\x8f\x8b\x8c\x5a\xad\xc3\x36\x6b\x39\xe7\xf0\xfc\x40\x7c\x10\x02\x7e\x20\xbe\xbc\x93\xdd\x33\x68\xd2\x89\x3f\x55\x85\xbe\xc3\x22\xf0\x57\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x72\xd2\xdb\x19\x7e\x45\x53\xa7\x0b\x91\xd7\x8b\xc0\xfa\x65\xc8\x4f\x6c\x4a\x09\x03\x5e\x2d\x1c\x62\xcc\x62\xf5\xe2\xcc\xbf\xbb\x02\xe3\xd6\x60\x30\x9b\x6a\x59\x3a\x53\x98\x8e\xe6\x35\xa5\x45\xc0\xeb\xbe\xdf\x75\x76\x17\x15\xaf\x84\xa4\x97\xf4\x63\x30\x88\xb0\x2a\x1d\xc9\xa8\xa6\x5d\x05\xf3\x64\x80\x17\x49\x98\xc6\xb8\x41\x2b\xdf\x0e\xc0\x95\x71\x0f\xd9\xad\x3d\xf3\x1d\xac\x10\xff\xe6\xae\xdf\x9f\x5d\xeb\xbc\x2f\x4f\xb6\xcc\x50\xba\x73\x31\x0c\x76\x2e\x73\x47\x98\x2d\x5a\x89\x8b\xc5\xff\x6e\xf8\xa0\xd8\xe5\x84\x6b\xcf\xd2\x3a\xa2\xbd\x62\x2f\xb7\x79\xf4\xd3\xc3\x7b\xf7\x05\x41\x93\x65\x4c\xc4\xc6\x8e\x01\xca\xcf\xe5\x62\x1f\x9c\x5b\xfc\x26\xbf\xd5\x50\xe8\xab\x69\xcc\xfb\x70\x5f\x23\x2e\xfa\x95\xa4\x04\x30\x53\xc1\xf1\xac\xeb\xf0\xa1\x34\x5f\xca\xa3\xed\xbb\xe6\xa1\x26\x31\x94\xb9\x74\x98\x1b\x85\xfc\xcc\x36\x72\xb9\x63\xe0\xe5\x61\xb0\xa1\x14\x12\xa6\x21\xc0\x4e\xe0\x51\x63\x79\x13\x1d\xb7\xac\x66\xc7\x2c\x6b\x37\x0b\x60\x21\x8a\x07\xaf\x05\x4a\x1f\x24\xff\x4b\x3e\x5c\xc9\x7b\x71\x9a\xf8\x30\x78\x1c\xc9\xec\x9b\x81\x9f\x4e\x74\xc1\xe8\x7e\xa7\x57\x8b\xea\x20\xa6\x96\xfc\x2a\x46\xcf\x9e\x58\x50\xd3\x1f\x7d\x50\xd3\xe8\xa5\xd2\x61\xcc\x75\x17\x03\x1b\xb5\xb2\xe3\x93\xc4\xd7\x0f\x7a\xf0\xa8\x6b\x17\x8f\xee\x87\xe1\xad\xd9\x90\x15\x47\x8e\x8d\xaa\x94\xd1\x59\x9c\xf0\xbf\x6a\x6c\x6e\xf9\x1d\xd6\x2b\xd6\x1a\xa9\x9a\x03\xcd\xba\xe0\xd9\xc3\x50\xe3\x41\x38\xf5\xa6\xfe\x96\x8a\x5c\x58\x1d\x1d\x9f\xfd\x1e\x60\x5b\x70\x36\x8d\x30\x3f\x01\xb8\x27\xce\x17\x88\x3c\x9e\xe8\xc7\xdd\x88\x8a\x71\x3f\x44\x94\x06\x25\xfe\x29\x88\x20\x8b\xbb\x83\x92\x51\x75\x1a\x29\x51\xe2\xf6\xfe\xe4\xde\x5d\x49\xde\x73\xb0\xd0\x0f\x49\xbe\xe2\x31\xd1\xdf\x04\x0f\x1b\x89\x9b\x31\xa8\x80\x3e\x13\xf9\xc9\x5f\x3f\x72\xc5\x3f\x92\xee\xbb\xe0\x68\xa3\xf7\xbb\xe4\xc7\x2d\x12\xb6\xa4\x09\xd2\x62\xe7\x84\x35\x12\xf8\x45\x2d\xfc\x2c\xf0\xb3\xc8\x6f\xf1\xeb\x80\x5f\x87\xb2\xfc\x28\x85\xc1\xb7\xa8\x38\xe9\x92\x6b\xa4\xdc\xe2\x37\xc7\x9f\xe4\x9f\xd2\x8e\x86\xda\xb6\x1f\x08\x12\xca\xcd\x69\xba\xfd\xa0\x74\x79\x02\xf9\x89\x7f\x0d\xf9\x3e\x1f\xeb\xdd\x6a\x12\xbe\x28\x85\x9b\xd7\x24\xf9\xbc\x0f\xe6\x43\x1a\xb2\x56\x28\xdf\x94\xca\xfd\xd0\x44\xf9\xa4\xb4\x36\x3f\x64\xbe\x5f\xfa\x85\x54\xdf\x2b\xfd\x22\xf4\x16\x6d\xb3\xe3\x80\x81\x1f\xdc\x33\x65\xfe\xd9\x9a\x73\xca\xd3\xa0\x28\x88\x12\xc7\x17\x0f\xf9\x2d\x28\x79\x2c\x91\xaf\xe5\xcd\x12\x0b\xe4\x59\xd5\xbb\xbd\xd3\xca\x7c\xb4\x59\x01\xf3\x91\x55\xc4\xd7\x94\xdf\xa2\x90\x87\x7a\x68\x76\xb3\x39\x76\x16\x68\x7b\x5d\xf5\xf7\xf2\xfb\x7f\xfb\x37\x80\xd3\xe7\xbf\xff\x7b\x7a\xf1\xec\x87\xb4\xfc\xcc\x71\xa2\xf8\xed\xff\xcf\xd5\x76\xbf\x35\x28\xfa\xf9\x3c\x02\xe4\xcb\x78\xf0\x1a\x54\x0b\xbc\xbe\x97\x0a\xb3\xfb\xff\x09\x00\x00\xff\xff\x47\x61\x39\xcd\x89\xa4\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 41832, mode: os.FileMode(420), modTime: time.Unix(1441184579, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 42121, mode: os.FileMode(420), modTime: time.Unix(1441200263, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/git/repo_commit.go b/modules/git/repo_commit.go index 66d61b9b51..cb9fa8d459 100644 --- a/modules/git/repo_commit.go +++ b/modules/git/repo_commit.go @@ -8,6 +8,7 @@ import ( "bytes" "container/list" "errors" + "fmt" "strings" "sync" @@ -138,7 +139,8 @@ func (repo *Repository) GetCommit(commitId string) (*Commit, error) { func (repo *Repository) commitsCount(id sha1) (int, error) { if gitVer.LessThan(MustParseVersion("1.8.0")) { - stdout, stderr, err := com.ExecCmdDirBytes(repo.Path, "git", "log", "--pretty=format:''", id.String()) + stdout, stderr, err := com.ExecCmdDirBytes(repo.Path, "git", "log", + "--pretty=format:''", id.String()) if err != nil { return 0, errors.New(string(stderr)) } @@ -152,6 +154,53 @@ func (repo *Repository) commitsCount(id sha1) (int, error) { return com.StrTo(strings.TrimSpace(stdout)).Int() } +func (repo *Repository) CommitsCount(commitId string) (int, error) { + id, err := NewIdFromString(commitId) + if err != nil { + return 0, err + } + return repo.commitsCount(id) +} + +func (repo *Repository) commitsCountBetween(start, end sha1) (int, error) { + if gitVer.LessThan(MustParseVersion("1.8.0")) { + stdout, stderr, err := com.ExecCmdDirBytes(repo.Path, "git", "log", + "--pretty=format:''", start.String()+"..."+end.String()) + if err != nil { + return 0, errors.New(string(stderr)) + } + return len(bytes.Split(stdout, []byte("\n"))), nil + } + + stdout, stderr, err := com.ExecCmdDir(repo.Path, "git", "rev-list", "--count", + start.String()+"..."+end.String()) + if err != nil { + return 0, errors.New(stderr) + } + return com.StrTo(strings.TrimSpace(stdout)).Int() +} + +func (repo *Repository) CommitsCountBetween(startCommitID, endCommitID string) (int, error) { + start, err := NewIdFromString(startCommitID) + if err != nil { + return 0, err + } + end, err := NewIdFromString(endCommitID) + if err != nil { + return 0, err + } + return repo.commitsCountBetween(start, end) +} + +func (repo *Repository) FilesCountBetween(startCommitID, endCommitID string) (int, error) { + stdout, stderr, err := com.ExecCmdDir(repo.Path, "git", "diff", "--name-only", + startCommitID+"..."+endCommitID) + if err != nil { + return 0, fmt.Errorf("list changed files: %v", concatenateError(err, stderr)) + } + return len(strings.Split(stdout, "\n")) - 1, nil +} + // used only for single tree, (] func (repo *Repository) CommitsBetween(last *Commit, before *Commit) (*list.List, error) { l := list.New() @@ -231,14 +280,6 @@ func (repo *Repository) commitsBefore(lock *sync.Mutex, l *list.List, parent *li return nil } -func (repo *Repository) CommitsCount(commitId string) (int, error) { - id, err := NewIdFromString(commitId) - if err != nil { - return 0, err - } - return repo.commitsCount(id) -} - func (repo *Repository) FileCommitsCount(branch, file string) (int, error) { stdout, stderr, err := com.ExecCmdDir(repo.Path, "git", "rev-list", "--count", branch, "--", file) diff --git a/modules/git/repo_pull.go b/modules/git/repo_pull.go index a179e52802..add32df908 100644 --- a/modules/git/repo_pull.go +++ b/modules/git/repo_pull.go @@ -84,3 +84,9 @@ func (repo *Repository) GetPatch(basePath, baseBranch, headBranch string) ([]byt return stdout, nil } + +// Merge merges pull request from head repository and branch. +func (repo *Repository) Merge(headRepoPath string, baseBranch, headBranch string) error { + + return nil +} diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index 465c21f3f4..f782e75261 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}pre{font:12px Consolas,"Liberation Mono",Menlo,Courier,monospace}pre.raw{padding:7px 12px;margin:10px 0;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px;font-size:13px;line-height:1.5;overflow:auto}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.red a{color:#d95c5c!important}.ui .text.red a:hover{color:#E67777!important}.ui .text.blue{color:#428bca!important}.ui .text.blue a{color:#15c!important}.ui .text.blue a:hover{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.green{color:#6cc644!important}.ui .text.left{text-align:left!important}.ui .text.right{text-align:right!important}.ui .text.small{font-size:.75em}.ui .text.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.ui .text.thin{font-weight:400}.ui .text.middle{vertical-align:middle}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .info.header{background-color:#d9edf7!important;border-color:#85c5e5}.ui .info.segment{border-color:#85c5e5}.ui .normal.header{font-weight:400}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}.overflow.menu .items{max-height:300px;overflow-y:auto}.overflow.menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.overflow.menu .items .item.active{font-weight:700}.overflow.menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.scrolling.menu .item.selected{font-weight:700!important}footer{margin-top:54px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@media only screen and (max-width:991px) and (min-width:768px){.ui.container{width:95%}}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:80px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:80px}.install form label{text-align:right;width:320px!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:335px!important}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.ui.attached.header .right .button{padding:8px 10px;font-weight:400}.repository.new.fork form,.repository.new.migrate form,.repository.new.repo form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message,.repository.new.repo form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header,.repository.new.repo form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label,.repository.new.repo form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help,.repository.new.repo form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon,.repository.new.repo form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text,.repository.new.repo form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i,.repository.new.repo form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title,.repository.new.repo form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea,.repository.new.repo form input,.repository.new.repo form textarea{width:50%!important}.repository.new.repo .ui.form .selection.dropdown:not(.owner){width:50%!important}.repository.new.repo .ui.form #auto-init{margin-left:265px!important}.new.webhook form .help{margin-left:25px}.new.webhook .events.fields .column{padding-left:40px}.repository{padding-top:15px;padding-bottom:80px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository.options input{width:50%!important;min-width:300px}.repository.options #interval{width:100px!important;min-width:100px}.repository.options .danger .item{padding:20px 15px}.repository.options .danger .ui.divider{margin:0}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title h1 .ui.input{font-size:.5em;vertical-align:top;width:50%;min-width:600px}.repository.view.issue .title h1 .ui.input input{font-size:1.5em;padding:6px 10px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .title .edit-zone{margin-top:10px}.repository.view.issue .pull-desc code{color:#0166E6}.repository.view.issue .pull.tabular.menu{margin-bottom:10px}.repository.view.issue .pull.tabular.menu .octicon{margin-right:5px}.repository.view.issue .pull.tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none;background-color:inherit}.repository.view.issue .pull .merge.box .avatar{margin-left:10px;margin-top:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .actions .item{float:left}.repository.view.issue .comment-list .comment .actions a.item{margin-top:6px;margin-left:10px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .comment .edit.buttons{margin-top:10px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{margin-top:5px;font-size:20px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:30px;color:#6cc644}.repository.view.issue .comment-list .event .octicon.octicon-bookmark{margin-top:3px;font-size:25px}.repository.view.issue .comment-list .event .detail{font-size:.9rem;margin-top:5px;margin-left:35px}.repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit{margin-top:2px}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository.commits .header .ui.right .search input{font-weight:400;padding:5px 10px}.repository.commits .header .ui.right .button{float:right;margin-left:5px;margin-top:1px}.repository .commits.table{font-size:13px}.repository .commits.table td:first-child,.repository .commits.table th:first-child{padding-left:15px}.repository .commits.table td{line-height:15px}.repository .commits.table .author{min-width:180px}.repository .commits.table .message span{max-width:500px}.repository .commits.table .date{width:120px}.repository .sha.label{font-family:Consolas,Menlo,Monaco,"Lucida Console",monospace;font-size:14px;padding:6px 10px 4px 10px;font-weight:400}.repository .diff-detail-box{margin:15px 0;line-height:30px}.repository .diff-detail-box ol{clear:both;padding-left:0;margin-top:5px;margin-bottom:28px}.repository .diff-detail-box ol li{list-style:none;padding-bottom:4px;margin-bottom:4px;border-bottom:1px dashed #DDD;padding-left:6px}.repository .diff-detail-box span.status{display:inline-block;width:12px;height:12px;margin-right:8px;vertical-align:middle}.repository .diff-detail-box span.status.modify{background-color:#f0db88}.repository .diff-detail-box span.status.add{background-color:#b4e2b4}.repository .diff-detail-box span.status.del{background-color:#e9aeae}.repository .diff-detail-box span.status.rename{background-color:#dad8ff}.repository .diff-box .count{margin-right:12px}.repository .diff-box .count .bar{background-color:#e75316;height:12px;width:40px;display:inline-block;margin:2px 4px 0 4px;vertical-align:text-top}.repository .diff-box .count .bar .add{background-color:#77c64a;height:12px}.repository .diff-box .file{color:#888}.repository .diff-file-box .header{border-bottom:1px solid #d4d4d5!important}.repository .diff-file-box .file-body.file-code .lines-num{text-align:right;color:#999;background:#fafafa;width:1%}.repository .diff-file-box .file-body.file-code .lines-num-old{border-right:1px solid #DDD}.repository .diff-file-box .code-diff{font-size:13px}.repository .diff-file-box .code-diff td{padding:0;border-top:none}.repository .diff-file-box .code-diff pre{margin:0}.repository .diff-file-box .code-diff .lines-num{border-right:1px solid #d4d4d5;padding:0 5px}.repository .diff-file-box .code-diff tbody tr.tag-code pre,.repository .diff-file-box .code-diff tbody tr.tag-code td{background-color:#E0E0E0!important;border-color:#ADADAD!important}.repository .diff-file-box .code-diff tbody tr.del-code pre,.repository .diff-file-box .code-diff tbody tr.del-code td{background-color:#ffe2dd!important;border-color:#e9aeae!important}.repository .diff-file-box .code-diff tbody tr.add-code pre,.repository .diff-file-box .code-diff tbody tr.add-code td{background-color:#d1ffd6!important;border-color:#b4e2b4!important}.repository .diff-file-box .code-diff tbody tr:hover td{background-color:#FFF8D2!important;border-color:#F0DB88!important}.repository .diff-file-box .code-diff tbody tr:hover pre{background-color:transparent!important}.repository .code-view{overflow:auto;overflow-x:auto;overflow-y:hidden}.issue.list{list-style:none;padding-top:15px}.issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.issue.list>.item .title:hover{color:#000}.issue.list>.item .comment{padding-right:10px;color:#666}.issue.list>.item .desc{padding-top:5px;color:#999}.issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.issue.list>.item .desc a.milestone:hover{color:#000!important}.issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.page.buttons{padding-top:15px}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.settings .hook.list>.item:not(:first-child){border-top:1px solid #eaeaea}.settings .hook.list .item{padding:10px 20px}.settings .hook.list .item .fa,.settings .hook.list .item .octicon{width:20px;text-align:center}.settings .hook.history.list .item{padding-left:13px}.settings .hook.history.list .item .meta .ui.right{margin-top:5px}.settings .hook.history.list .item .meta .ui.right .time{font-size:12px}.settings .hook.history.list .item .info{margin-top:10px}.settings .hook.history.list .item .info .tabular.menu .item{font-weight:500}.settings .hook.history.list .item .info .tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none}.settings .hook.history.list .item .info .tab.segment>*{color:#666}.settings .hook.history.list .item .info .tab.segment pre{word-wrap:break-word}.settings .hook.history.list .item .info .tab.segment pre .hljs{padding:0;background-color:inherit}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px}#delete-repo-modal .ui.message,#transfer-repo-modal .ui.message{width:100%!important}.organization{padding-top:15px;padding-bottom:80px}.organization .head .ui.header .text{vertical-align:middle;font-size:1.6rem;margin-left:15px}.organization .head .ui.header .ui.right{margin-top:5px}.user{padding-top:15px;padding-bottom:80px}.user.settings .key.list .item.ui.grid{margin-top:15px}.dashboard{padding-top:15px;padding-bottom:80px}.dashboard.issues .context.user.menu{min-width:200px}.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}.dashboard.issues .filter.menu .item.active{background-color:#4183c4;color:#FFF}.dashboard.issues .ui.right .head.menu{margin-top:-5px}.dashboard.issues .ui.right .head.menu .item.active{color:#d9453d}.admin{padding-top:15px;padding-bottom:80px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px}.explore{padding-top:15px;padding-bottom:80px}.explore.repositories .ui.repository.list .item{border-top:1px solid #eee;padding-top:25px;padding-bottom:25px}.explore.repositories .ui.repository.list .item .ui.header{font-size:1.5rem;padding-bottom:10px}.explore.repositories .ui.repository.list .item .ui.header .metas{color:#888;font-size:13px;font-weight:400}.explore.repositories .ui.repository.list .item .ui.header .metas span:not(:last-child){margin-right:5px}.explore.repositories .ui.repository.list .item .time{font-size:12px;color:grey} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}pre{font:12px Consolas,"Liberation Mono",Menlo,Courier,monospace}pre.raw{padding:7px 12px;margin:10px 0;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px;font-size:13px;line-height:1.5;overflow:auto}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.red a{color:#d95c5c!important}.ui .text.red a:hover{color:#E67777!important}.ui .text.blue{color:#428bca!important}.ui .text.blue a{color:#15c!important}.ui .text.blue a:hover{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.green{color:#6cc644!important}.ui .text.purple{color:#6e5494!important}.ui .text.left{text-align:left!important}.ui .text.right{text-align:right!important}.ui .text.small{font-size:.75em}.ui .text.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.ui .text.thin{font-weight:400}.ui .text.middle{vertical-align:middle}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .info.header{background-color:#d9edf7!important;border-color:#85c5e5}.ui .info.segment{border-color:#85c5e5}.ui .normal.header{font-weight:400}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}.overflow.menu .items{max-height:300px;overflow-y:auto}.overflow.menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.overflow.menu .items .item.active{font-weight:700}.overflow.menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.scrolling.menu .item.selected{font-weight:700!important}footer{margin-top:54px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@media only screen and (max-width:991px) and (min-width:768px){.ui.container{width:95%}}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:80px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:80px}.install form label{text-align:right;width:320px!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:335px!important}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.ui.attached.header .right .button{padding:8px 10px;font-weight:400}.repository.new.fork form,.repository.new.migrate form,.repository.new.repo form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message,.repository.new.repo form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header,.repository.new.repo form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label,.repository.new.repo form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help,.repository.new.repo form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon,.repository.new.repo form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text,.repository.new.repo form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i,.repository.new.repo form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title,.repository.new.repo form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea,.repository.new.repo form input,.repository.new.repo form textarea{width:50%!important}.repository.new.repo .ui.form .selection.dropdown:not(.owner){width:50%!important}.repository.new.repo .ui.form #auto-init{margin-left:265px!important}.new.webhook form .help{margin-left:25px}.new.webhook .events.fields .column{padding-left:40px}.repository{padding-top:15px;padding-bottom:80px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository.options input{width:50%!important;min-width:300px}.repository.options #interval{width:100px!important;min-width:100px}.repository.options .danger .item{padding:20px 15px}.repository.options .danger .ui.divider{margin:0}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title h1 .ui.input{font-size:.5em;vertical-align:top;width:50%;min-width:600px}.repository.view.issue .title h1 .ui.input input{font-size:1.5em;padding:6px 10px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .title .edit-zone{margin-top:10px}.repository.view.issue .pull-desc code{color:#0166E6}.repository.view.issue .pull.tabular.menu{margin-bottom:10px}.repository.view.issue .pull.tabular.menu .octicon{margin-right:5px}.repository.view.issue .pull.tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none;background-color:inherit}.repository.view.issue .pull .merge.box .avatar{margin-left:10px;margin-top:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .actions .item{float:left}.repository.view.issue .comment-list .comment .actions a.item{margin-top:6px;margin-left:10px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .comment .edit.buttons{margin-top:10px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{margin-top:5px;font-size:20px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:30px;color:#6cc644}.repository.view.issue .comment-list .event .octicon.octicon-bookmark{margin-top:3px;font-size:25px}.repository.view.issue .comment-list .event .detail{font-size:.9rem;margin-top:5px;margin-left:35px}.repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit{margin-top:2px}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository.commits .header .ui.right .search input{font-weight:400;padding:5px 10px}.repository.commits .header .ui.right .button{float:right;margin-left:5px;margin-top:1px}.repository .commits.table{font-size:13px}.repository .commits.table td:first-child,.repository .commits.table th:first-child{padding-left:15px}.repository .commits.table td{line-height:15px}.repository .commits.table .author{min-width:180px}.repository .commits.table .message span{max-width:500px}.repository .commits.table .date{width:120px}.repository .sha.label{font-family:Consolas,Menlo,Monaco,"Lucida Console",monospace;font-size:14px;padding:6px 10px 4px 10px;font-weight:400}.repository .diff-detail-box{margin:15px 0;line-height:30px}.repository .diff-detail-box ol{clear:both;padding-left:0;margin-top:5px;margin-bottom:28px}.repository .diff-detail-box ol li{list-style:none;padding-bottom:4px;margin-bottom:4px;border-bottom:1px dashed #DDD;padding-left:6px}.repository .diff-detail-box span.status{display:inline-block;width:12px;height:12px;margin-right:8px;vertical-align:middle}.repository .diff-detail-box span.status.modify{background-color:#f0db88}.repository .diff-detail-box span.status.add{background-color:#b4e2b4}.repository .diff-detail-box span.status.del{background-color:#e9aeae}.repository .diff-detail-box span.status.rename{background-color:#dad8ff}.repository .diff-box .count{margin-right:12px}.repository .diff-box .count .bar{background-color:#e75316;height:12px;width:40px;display:inline-block;margin:2px 4px 0 4px;vertical-align:text-top}.repository .diff-box .count .bar .add{background-color:#77c64a;height:12px}.repository .diff-box .file{color:#888}.repository .diff-file-box .header{border-bottom:1px solid #d4d4d5!important}.repository .diff-file-box .file-body.file-code .lines-num{text-align:right;color:#999;background:#fafafa;width:1%}.repository .diff-file-box .file-body.file-code .lines-num-old{border-right:1px solid #DDD}.repository .diff-file-box .code-diff{font-size:13px}.repository .diff-file-box .code-diff td{padding:0;border-top:none}.repository .diff-file-box .code-diff pre{margin:0}.repository .diff-file-box .code-diff .lines-num{border-right:1px solid #d4d4d5;padding:0 5px}.repository .diff-file-box .code-diff tbody tr.tag-code pre,.repository .diff-file-box .code-diff tbody tr.tag-code td{background-color:#E0E0E0!important;border-color:#ADADAD!important}.repository .diff-file-box .code-diff tbody tr.del-code pre,.repository .diff-file-box .code-diff tbody tr.del-code td{background-color:#ffe2dd!important;border-color:#e9aeae!important}.repository .diff-file-box .code-diff tbody tr.add-code pre,.repository .diff-file-box .code-diff tbody tr.add-code td{background-color:#d1ffd6!important;border-color:#b4e2b4!important}.repository .diff-file-box .code-diff tbody tr:hover td{background-color:#FFF8D2!important;border-color:#F0DB88!important}.repository .diff-file-box .code-diff tbody tr:hover pre{background-color:transparent!important}.repository .code-view{overflow:auto;overflow-x:auto;overflow-y:hidden}.issue.list{list-style:none;padding-top:15px}.issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.issue.list>.item .title:hover{color:#000}.issue.list>.item .comment{padding-right:10px;color:#666}.issue.list>.item .desc{padding-top:5px;color:#999}.issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.issue.list>.item .desc a.milestone:hover{color:#000!important}.issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.page.buttons{padding-top:15px}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.settings .hook.list>.item:not(:first-child){border-top:1px solid #eaeaea}.settings .hook.list .item{padding:10px 20px}.settings .hook.list .item .fa,.settings .hook.list .item .octicon{width:20px;text-align:center}.settings .hook.history.list .item{padding-left:13px}.settings .hook.history.list .item .meta .ui.right{margin-top:5px}.settings .hook.history.list .item .meta .ui.right .time{font-size:12px}.settings .hook.history.list .item .info{margin-top:10px}.settings .hook.history.list .item .info .tabular.menu .item{font-weight:500}.settings .hook.history.list .item .info .tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none}.settings .hook.history.list .item .info .tab.segment>*{color:#666}.settings .hook.history.list .item .info .tab.segment pre{word-wrap:break-word}.settings .hook.history.list .item .info .tab.segment pre .hljs{padding:0;background-color:inherit}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px}#delete-repo-modal .ui.message,#transfer-repo-modal .ui.message{width:100%!important}.organization{padding-top:15px;padding-bottom:80px}.organization .head .ui.header .text{vertical-align:middle;font-size:1.6rem;margin-left:15px}.organization .head .ui.header .ui.right{margin-top:5px}.user{padding-top:15px;padding-bottom:80px}.user.settings .key.list .item.ui.grid{margin-top:15px}.dashboard{padding-top:15px;padding-bottom:80px}.dashboard.issues .context.user.menu{min-width:200px}.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}.dashboard.issues .filter.menu .item.active{background-color:#4183c4;color:#FFF}.dashboard.issues .ui.right .head.menu{margin-top:-5px}.dashboard.issues .ui.right .head.menu .item.active{color:#d9453d}.admin{padding-top:15px;padding-bottom:80px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px}.explore{padding-top:15px;padding-bottom:80px}.explore.repositories .ui.repository.list .item{border-top:1px solid #eee;padding-top:25px;padding-bottom:25px}.explore.repositories .ui.repository.list .item .ui.header{font-size:1.5rem;padding-bottom:10px}.explore.repositories .ui.repository.list .item .ui.header .metas{color:#888;font-size:13px;font-weight:400}.explore.repositories .ui.repository.list .item .ui.header .metas span:not(:last-child){margin-right:5px}.explore.repositories .ui.repository.list .item .time{font-size:12px;color:grey} \ No newline at end of file diff --git a/public/less/_base.less b/public/less/_base.less index bbcd208dcf..0d4e024f10 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -114,6 +114,10 @@ pre { &.green { color: #6cc644!important; } + &.purple { + color: #6e5494!important; + } + &.left { text-align: left!important; } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index d51354a403..631986877d 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -466,7 +466,12 @@ func ViewIssue(ctx *middleware.Context) { // Get more information if it's a pull request. if issue.IsPull { - PrepareViewPullInfo(ctx, issue) + if issue.HasMerged { + ctx.Data["DisableStatusChange"] = issue.HasMerged + PrepareMergedViewPullInfo(ctx, issue) + } else { + PrepareViewPullInfo(ctx, issue) + } if ctx.Written() { return } @@ -730,7 +735,8 @@ func NewComment(ctx *middleware.Context, form auth.CreateCommentForm) { // Check if issue owner/poster changes the status of issue. if (ctx.Repo.IsOwner() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))) && - (form.Status == "reopen" || form.Status == "close") { + (form.Status == "reopen" || form.Status == "close") && + !(issue.IsPull && issue.HasMerged) { issue.Repo = ctx.Repo.Repository if err = issue.ChangeStatus(ctx.User, form.Status == "close"); err != nil { ctx.Handle(500, "ChangeStatus", err) diff --git a/routers/repo/pull.go b/routers/repo/pull.go index 149c2f9296..b55d928b61 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -5,6 +5,7 @@ package repo import ( + "container/list" "path" "strings" @@ -167,6 +168,26 @@ func checkPullInfo(ctx *middleware.Context) *models.Issue { return pull } +func PrepareMergedViewPullInfo(ctx *middleware.Context, pull *models.Issue) { + ctx.Data["HasMerged"] = true + + var err error + + ctx.Data["HeadTarget"] = pull.HeadUserName + "/" + pull.HeadBarcnh + ctx.Data["BaseTarget"] = ctx.Repo.Owner.Name + "/" + pull.BaseBranch + + ctx.Data["NumCommits"], err = ctx.Repo.GitRepo.CommitsCountBetween(pull.MergeBase, pull.MergedCommitID) + if err != nil { + ctx.Handle(500, "Repo.GitRepo.CommitsCountBetween", err) + return + } + ctx.Data["NumFiles"], err = ctx.Repo.GitRepo.FilesCountBetween(pull.MergeBase, pull.MergedCommitID) + if err != nil { + ctx.Handle(500, "Repo.GitRepo.FilesCountBetween", err) + return + } +} + func PrepareViewPullInfo(ctx *middleware.Context, pull *models.Issue) *git.PullRequestInfo { repo := ctx.Repo.Repository @@ -185,6 +206,14 @@ func PrepareViewPullInfo(ctx *middleware.Context, pull *models.Issue) *git.PullR return nil } + if pull.HeadRepo == nil || !headGitRepo.IsBranchExist(pull.HeadBarcnh) { + ctx.Data["IsPullReuqestBroken"] = true + ctx.Data["HeadTarget"] = "deleted" + ctx.Data["NumCommits"] = 0 + ctx.Data["NumFiles"] = 0 + return nil + } + prInfo, err := headGitRepo.GetPullRequestInfo(models.RepoPath(repo.Owner.Name, repo.Name), pull.BaseBranch, pull.HeadBarcnh) if err != nil { @@ -203,17 +232,46 @@ func ViewPullCommits(ctx *middleware.Context) { if ctx.Written() { return } - - prInfo := PrepareViewPullInfo(ctx, pull) - if ctx.Written() { - return - } - prInfo.Commits = models.ValidateCommitsWithEmails(prInfo.Commits) - ctx.Data["Commits"] = prInfo.Commits - ctx.Data["CommitCount"] = prInfo.Commits.Len() - ctx.Data["Username"] = pull.HeadUserName ctx.Data["Reponame"] = pull.HeadRepo.Name + + var commits *list.List + if pull.HasMerged { + PrepareMergedViewPullInfo(ctx, pull) + if ctx.Written() { + return + } + startCommit, err := ctx.Repo.GitRepo.GetCommit(pull.MergeBase) + if err != nil { + ctx.Handle(500, "Repo.GitRepo.GetCommit", err) + return + } + endCommit, err := ctx.Repo.GitRepo.GetCommit(pull.MergedCommitID) + if err != nil { + ctx.Handle(500, "Repo.GitRepo.GetCommit", err) + return + } + commits, err = ctx.Repo.GitRepo.CommitsBetween(endCommit, startCommit) + if err != nil { + ctx.Handle(500, "Repo.GitRepo.CommitsBetween", err) + return + } + + } else { + prInfo := PrepareViewPullInfo(ctx, pull) + if ctx.Written() { + return + } else if prInfo == nil { + ctx.Handle(404, "ViewPullCommits", nil) + return + } + commits = prInfo.Commits + } + + commits = models.ValidateCommitsWithEmails(commits) + ctx.Data["Commits"] = commits + ctx.Data["CommitCount"] = commits.Len() + ctx.HTML(200, PULL_COMMITS) } @@ -225,27 +283,54 @@ func ViewPullFiles(ctx *middleware.Context) { return } - prInfo := PrepareViewPullInfo(ctx, pull) - if ctx.Written() { - return + var ( + diffRepoPath string + startCommitID string + endCommitID string + gitRepo *git.Repository + ) + + if pull.HasMerged { + PrepareMergedViewPullInfo(ctx, pull) + if ctx.Written() { + return + } + + diffRepoPath = ctx.Repo.GitRepo.Path + startCommitID = pull.MergeBase + endCommitID = pull.MergedCommitID + gitRepo = ctx.Repo.GitRepo + } else { + prInfo := PrepareViewPullInfo(ctx, pull) + if ctx.Written() { + return + } else if prInfo == nil { + ctx.Handle(404, "ViewPullFiles", nil) + return + } + + headRepoPath := models.RepoPath(pull.HeadUserName, pull.HeadRepo.Name) + + headGitRepo, err := git.OpenRepository(headRepoPath) + if err != nil { + ctx.Handle(500, "OpenRepository", err) + return + } + + headCommitID, err := headGitRepo.GetCommitIdOfBranch(pull.HeadBarcnh) + if err != nil { + ctx.Handle(500, "GetCommitIdOfBranch", err) + return + } + + diffRepoPath = headRepoPath + startCommitID = prInfo.MergeBase + endCommitID = headCommitID + gitRepo = headGitRepo } - headRepoPath := models.RepoPath(pull.HeadUserName, pull.HeadRepo.Name) - - headGitRepo, err := git.OpenRepository(headRepoPath) - if err != nil { - ctx.Handle(500, "OpenRepository", err) - return - } - - headCommitID, err := headGitRepo.GetCommitIdOfBranch(pull.HeadBarcnh) - if err != nil { - ctx.Handle(500, "GetCommitIdOfBranch", err) - return - } - - diff, err := models.GetDiffRange(headRepoPath, - prInfo.MergeBase, headCommitID, setting.Git.MaxGitDiffLines) + diff, err := models.GetDiffRange(diffRepoPath, + startCommitID, endCommitID, setting.Git.MaxGitDiffLines) if err != nil { ctx.Handle(500, "GetDiffRange", err) return @@ -253,7 +338,7 @@ func ViewPullFiles(ctx *middleware.Context) { ctx.Data["Diff"] = diff ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 - headCommit, err := headGitRepo.GetCommit(headCommitID) + commit, err := gitRepo.GetCommit(endCommitID) if err != nil { ctx.Handle(500, "GetCommit", err) return @@ -262,14 +347,49 @@ func ViewPullFiles(ctx *middleware.Context) { headTarget := path.Join(pull.HeadUserName, pull.HeadRepo.Name) ctx.Data["Username"] = pull.HeadUserName ctx.Data["Reponame"] = pull.HeadRepo.Name - ctx.Data["IsImageFile"] = headCommit.IsImageFile - ctx.Data["SourcePath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "src", headCommitID) - ctx.Data["BeforeSourcePath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "src", prInfo.MergeBase) - ctx.Data["RawPath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "raw", headCommitID) + ctx.Data["IsImageFile"] = commit.IsImageFile + ctx.Data["SourcePath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "src", endCommitID) + ctx.Data["BeforeSourcePath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "src", startCommitID) + ctx.Data["RawPath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "raw", endCommitID) ctx.HTML(200, PULL_FILES) } +func MergePullRequest(ctx *middleware.Context) { + pull := checkPullInfo(ctx) + if ctx.Written() { + return + } + if pull.IsClosed { + ctx.Handle(404, "MergePullRequest", nil) + return + } + + pr, err := models.GetPullRequestByPullID(pull.ID) + if err != nil { + if models.IsErrPullRequestNotExist(err) { + ctx.Handle(404, "GetPullRequestByPullID", nil) + } else { + ctx.Handle(500, "GetPullRequestByPullID", err) + } + return + } + + if !pr.CanAutoMerge || pr.HasMerged { + ctx.Handle(404, "MergePullRequest", nil) + return + } + + pr.Pull = pull + if err = pr.Merge(ctx.Repo.GitRepo); err != nil { + ctx.Handle(500, "GetPullRequestByPullID", err) + return + } + + log.Trace("Pull request merged: %d", pr.ID) + ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(pr.PullIndex)) +} + func ParseCompareInfo(ctx *middleware.Context) (*models.User, *models.Repository, *git.Repository, *git.PullRequestInfo, string, string) { // Get compare branch information. infos := strings.Split(ctx.Params("*"), "...") @@ -416,10 +536,10 @@ func CompareAndPullRequest(ctx *middleware.Context) { return } - pr, err := models.GetPullRequest(headRepo.ID, ctx.Repo.Repository.ID, headBranch, baseBranch) + pr, err := models.GetUnmergedPullRequest(headRepo.ID, ctx.Repo.Repository.ID, headBranch, baseBranch) if err != nil { if !models.IsErrPullRequestNotExist(err) { - ctx.Handle(500, "HasPullRequest", err) + ctx.Handle(500, "GetUnmergedPullRequest", err) return } } else { diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 72d30fd72e..0be1b84de7 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -11,11 +11,11 @@