From 17de3ab0a313819bdeb73f3985b61a791ae84696 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 10 Aug 2015 14:42:50 +0800 Subject: [PATCH] add migrate from issue.label_ids to issue_label --- conf/locale/locale_en-US.ini | 5 + gogs.go | 2 +- models/error.go | 20 ++++ models/issue.go | 186 +++++++++++++++++++++-------- models/migrations/migrations.go | 61 +++++++++- models/models.go | 3 +- modules/bindata/bindata.go | 6 +- routers/repo/issue.go | 47 +++++--- templates/.VERSION | 2 +- templates/base/head_old.tmpl | 2 - templates/repo/header.tmpl | 2 +- templates/repo/home.tmpl | 4 +- templates/repo/issue/new_form.tmpl | 46 +++---- 13 files changed, 286 insertions(+), 100 deletions(-) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 40191cd965..0709304fb4 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -367,6 +367,11 @@ commits.older = Older commits.newer = Newer issues.new = New Issue +issues.new.labels = Labels +issues.new.clear_labels = Clear labels +issues.new.milestone = Milestone +issues.new.assignee = Assignee +issues.new.no_label = No Label issues.create = Create Issue issues.new_label = New Label issues.new_label_placeholder = Label name... diff --git a/gogs.go b/gogs.go index df6b58366e..3f81cdf91f 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.4.0809 Beta" +const APP_VER = "0.6.4.0810 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/error.go b/models/error.go index 0e554e5273..70285b3a34 100644 --- a/models/error.go +++ b/models/error.go @@ -239,6 +239,26 @@ func (err ErrRepoAlreadyExist) Error() string { return fmt.Sprintf("repository already exists [uname: %d, name: %s]", err.Uname, err.Name) } +// .____ ___. .__ +// | | _____ \_ |__ ____ | | +// | | \__ \ | __ \_/ __ \| | +// | |___ / __ \| \_\ \ ___/| |__ +// |_______ (____ /___ /\___ >____/ +// \/ \/ \/ \/ + +type ErrLabelNotExist struct { + ID int64 +} + +func IsErrLabelNotExist(err error) bool { + _, ok := err.(ErrLabelNotExist) + return ok +} + +func (err ErrLabelNotExist) Error() string { + return fmt.Sprintf("label does not exist [id: %d]", err.ID) +} + // _____ .__.__ __ // / \ |__| | ____ _______/ |_ ____ ____ ____ // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \ diff --git a/models/issue.go b/models/issue.go index 39969c7194..892b9928c0 100644 --- a/models/issue.go +++ b/models/issue.go @@ -7,6 +7,7 @@ package models import ( "bytes" "errors" + "fmt" "html/template" "os" "strconv" @@ -22,7 +23,6 @@ import ( var ( ErrIssueNotExist = errors.New("Issue does not exist") - ErrLabelNotExist = errors.New("Label does not exist") ErrWrongIssueCounter = errors.New("Invalid number of issues for this milestone") ErrAttachmentNotExist = errors.New("Attachment does not exist") ErrAttachmentNotLinked = errors.New("Attachment does not belong to this issue") @@ -38,7 +38,6 @@ type Issue struct { Repo *Repository `xorm:"-"` PosterID int64 Poster *User `xorm:"-"` - LabelIDs string `xorm:"label_ids TEXT"` Labels []*Label `xorm:"-"` MilestoneID int64 Milestone *Milestone `xorm:"-"` @@ -76,29 +75,50 @@ func (i *Issue) GetPoster() (err error) { return err } -func (i *Issue) GetLabels() error { - if len(i.LabelIDs) < 3 { +func (i *Issue) hasLabel(e Engine, labelID int64) bool { + return hasIssueLabel(e, i.ID, labelID) +} + +// HasLabel returns true if issue has been labeled by given ID. +func (i *Issue) HasLabel(labelID int64) bool { + return i.hasLabel(x, labelID) +} + +func (i *Issue) addLabel(e Engine, labelID int64) error { + return newIssueLabel(e, i.ID, labelID) +} + +// AddLabel adds new label to issue by given ID. +func (i *Issue) AddLabel(labelID int64) error { + return i.addLabel(x, labelID) +} + +func (i *Issue) getLabels(e Engine) (err error) { + if len(i.Labels) > 0 { return nil } - strIds := strings.Split(strings.TrimSuffix(i.LabelIDs[1:], "|"), "|$") - i.Labels = make([]*Label, 0, len(strIds)) - for _, strId := range strIds { - id := com.StrTo(strId).MustInt64() - if id > 0 { - l, err := GetLabelById(id) - if err != nil { - if err == ErrLabelNotExist { - continue - } - return err - } - i.Labels = append(i.Labels, l) - } + i.Labels, err = getLabelsByIssueID(e, i.ID) + if err != nil { + return fmt.Errorf("getLabelsByIssueID: %v", err) } return nil } +// GetLabels retrieves all labels of issue and assign to corresponding field. +func (i *Issue) GetLabels() error { + return i.getLabels(x) +} + +func (i *Issue) removeLabel(e Engine, labelID int64) error { + return deleteIssueLabel(e, i.ID, labelID) +} + +// RemoveLabel removes a label from issue by given ID. +func (i *Issue) RemoveLabel(labelID int64) error { + return i.removeLabel(x, labelID) +} + func (i *Issue) GetAssignee() (err error) { if i.AssigneeID == 0 { return nil @@ -261,12 +281,6 @@ const ( IS_CLOSE ) -// GetIssuesByLabel returns a list of issues by given label and repository. -func GetIssuesByLabel(repoID, labelID int64) ([]*Issue, error) { - issues := make([]*Issue, 0, 10) - return issues, x.Where("repo_id=?", repoID).And("label_ids like '%$" + com.ToStr(labelID) + "|%'").Find(&issues) -} - // GetIssueCountByPoster returns number of issues of repository by poster. func GetIssueCountByPoster(uid, rid int64, isClosed bool) int64 { count, _ := x.Where("repo_id=?", rid).And("poster_id=?", uid).And("is_closed=?", isClosed).Count(new(Issue)) @@ -550,7 +564,7 @@ func UpdateIssueUserPairsByMentions(uids []int64, iid int64) error { // Label represents a label of repository for issues. type Label struct { ID int64 `xorm:"pk autoincr"` - RepoId int64 `xorm:"INDEX"` + RepoID int64 `xorm:"INDEX"` Name string Color string `xorm:"VARCHAR(7)"` NumIssues int @@ -570,10 +584,9 @@ func NewLabel(l *Label) error { return err } -// GetLabelById returns a label by given ID. -func GetLabelById(id int64) (*Label, error) { +func getLabelByID(e Engine, id int64) (*Label, error) { if id <= 0 { - return nil, ErrLabelNotExist + return nil, ErrLabelNotExist{id} } l := &Label{ID: id} @@ -581,16 +594,43 @@ func GetLabelById(id int64) (*Label, error) { if err != nil { return nil, err } else if !has { - return nil, ErrLabelNotExist + return nil, ErrLabelNotExist{l.ID} } return l, nil } -// GetLabels returns a list of labels of given repository ID. -func GetLabels(repoId int64) ([]*Label, error) { +// GetLabelByID returns a label by given ID. +func GetLabelByID(id int64) (*Label, error) { + return getLabelByID(x, id) +} + +// GetLabelsByRepoID returns all labels that belong to given repository by ID. +func GetLabelsByRepoID(repoID int64) ([]*Label, error) { labels := make([]*Label, 0, 10) - err := x.Where("repo_id=?", repoId).Find(&labels) - return labels, err + return labels, x.Where("repo_id=?", repoID).Find(&labels) +} + +func getLabelsByIssueID(e Engine, issueID int64) ([]*Label, error) { + issueLabels, err := getIssueLabels(e, issueID) + if err != nil { + return nil, fmt.Errorf("getIssueLabels: %v", err) + } + + var label *Label + labels := make([]*Label, 0, len(issueLabels)) + for idx := range issueLabels { + label, err = getLabelByID(e, issueLabels[idx].LabelID) + if err != nil && !IsErrLabelNotExist(err) { + return nil, fmt.Errorf("getLabelByID: %v", err) + } + labels = append(labels, label) + } + return labels, nil +} + +// GetLabelsByIssueID returns all labels that belong to given issue by ID. +func GetLabelsByIssueID(issueID int64) ([]*Label, error) { + return getLabelsByIssueID(x, issueID) } // UpdateLabel updates label information. @@ -601,38 +641,88 @@ func UpdateLabel(l *Label) error { // DeleteLabel delete a label of given repository. func DeleteLabel(repoID, labelID int64) error { - l, err := GetLabelById(labelID) + l, err := GetLabelByID(labelID) if err != nil { - if err == ErrLabelNotExist { + if IsErrLabelNotExist(err) { return nil } return err } - issues, err := GetIssuesByLabel(repoID, labelID) - if err != nil { - return err - } - sess := x.NewSession() defer sessionRelease(sess) if err = sess.Begin(); err != nil { return err } - for _, issue := range issues { - issue.LabelIDs = strings.Replace(issue.LabelIDs, "$"+com.ToStr(labelID)+"|", "", -1) - if _, err = sess.Id(issue.ID).AllCols().Update(issue); err != nil { - return err - } - } - - if _, err = sess.Delete(l); err != nil { + if _, err = x.Where("label_id=?", labelID).Delete(new(IssueLabel)); err != nil { + return err + } else if _, err = sess.Delete(l); err != nil { return err } return sess.Commit() } +// .___ .____ ___. .__ +// | | ______ ________ __ ____ | | _____ \_ |__ ____ | | +// | |/ ___// ___/ | \_/ __ \| | \__ \ | __ \_/ __ \| | +// | |\___ \ \___ \| | /\ ___/| |___ / __ \| \_\ \ ___/| |__ +// |___/____ >____ >____/ \___ >_______ (____ /___ /\___ >____/ +// \/ \/ \/ \/ \/ \/ \/ + +// IssueLabel represetns an issue-lable relation. +type IssueLabel struct { + ID int64 `xorm:"pk autoincr"` + IssueID int64 `xorm:"UNIQUE(s)"` + LabelID int64 `xorm:"UNIQUE(s)"` +} + +func hasIssueLabel(e Engine, issueID, labelID int64) bool { + has, _ := e.Where("issue_id=? AND label_id=?", issueID, labelID).Get(new(IssueLabel)) + return has +} + +// HasIssueLabel returns true if issue has been labeled. +func HasIssueLabel(issueID, labelID int64) bool { + return hasIssueLabel(x, issueID, labelID) +} + +func newIssueLabel(e Engine, issueID, labelID int64) error { + _, err := e.Insert(&IssueLabel{ + IssueID: issueID, + LabelID: labelID, + }) + return err +} + +// NewIssueLabel creates a new issue-label relation. +func NewIssueLabel(issueID, labelID int64) error { + return newIssueLabel(x, issueID, labelID) +} + +func getIssueLabels(e Engine, issueID int64) ([]*IssueLabel, error) { + issueLabels := make([]*IssueLabel, 0, 10) + return issueLabels, e.Where("issue_id=?", issueID).Find(&issueLabels) +} + +// GetIssueLabels returns all issue-label relations of given issue by ID. +func GetIssueLabels(issueID int64) ([]*IssueLabel, error) { + return getIssueLabels(x, issueID) +} + +func deleteIssueLabel(e Engine, issueID, labelID int64) error { + _, err := e.Delete(&IssueLabel{ + IssueID: issueID, + LabelID: labelID, + }) + return err +} + +// DeleteIssueLabel deletes issue-label relation. +func DeleteIssueLabel(issueID, labelID int64) error { + return deleteIssueLabel(x, issueID, labelID) +} + // _____ .__.__ __ // / \ |__| | ____ _______/ |_ ____ ____ ____ // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \ diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index c7900743f1..30c69fa301 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -58,6 +58,7 @@ var migrations = []Migration{ NewMigration("generate team-repo from team", teamToTeamRepo), // V3 -> V4:v0.5.13 NewMigration("fix locale file load panic", fixLocaleFileLoadPanic), // V4 -> V5:v0.6.0 NewMigration("trim action compare URL prefix", trimCommitActionAppUrlPrefix), // V5 -> V6:v0.6.3 + NewMigration("generate issue-label from issue", issueToIssueLabel), // V6 -> V7:v0.6.4 } // Migrate database to current version @@ -130,6 +131,9 @@ func accessToCollaboration(x *xorm.Engine) (err error) { results, err := x.Query("SELECT u.id AS `uid`, a.repo_name AS `repo`, a.mode AS `mode`, a.created as `created` FROM `access` a JOIN `user` u ON a.user_name=u.lower_name") if err != nil { + if strings.Contains(err.Error(), "no such column") { + return nil + } return err } @@ -278,6 +282,9 @@ func accessRefactor(x *xorm.Engine) (err error) { results, err = x.Query("SELECT `id`,`authorize`,`repo_ids` FROM `team` WHERE org_id=? AND authorize>? ORDER BY `authorize` ASC", ownerID, int(minAccessLevel)) if err != nil { + if strings.Contains(err.Error(), "no such column") { + return nil + } return fmt.Errorf("select teams from org: %v", err) } @@ -339,6 +346,9 @@ func teamToTeamRepo(x *xorm.Engine) error { results, err := x.Query("SELECT `id`,`org_id`,`repo_ids` FROM `team`") if err != nil { + if strings.Contains(err.Error(), "no such column") { + return nil + } return fmt.Errorf("select teams: %v", err) } for _, team := range results { @@ -369,7 +379,7 @@ func teamToTeamRepo(x *xorm.Engine) error { } if err = sess.Sync2(new(TeamRepo)); err != nil { - return fmt.Errorf("sync: %v", err) + return fmt.Errorf("sync2: %v", err) } else if _, err = sess.Insert(teamRepos); err != nil { return fmt.Errorf("insert team-repos: %v", err) } @@ -453,3 +463,52 @@ func trimCommitActionAppUrlPrefix(x *xorm.Engine) error { } return sess.Commit() } + +func issueToIssueLabel(x *xorm.Engine) error { + type IssueLabel struct { + ID int64 `xorm:"pk autoincr"` + IssueID int64 `xorm:"UNIQUE(s)"` + LabelID int64 `xorm:"UNIQUE(s)"` + } + + issueLabels := make([]*IssueLabel, 0, 50) + results, err := x.Query("SELECT `id`,`label_ids` FROM `issue`") + if err != nil { + if strings.Contains(err.Error(), "no such column") { + return nil + } + return fmt.Errorf("select issues: %v", err) + } + for _, issue := range results { + issueID := com.StrTo(issue["id"]).MustInt64() + + // Just in case legacy code can have duplicated IDs for same label. + mark := make(map[int64]bool) + for _, idStr := range strings.Split(string(issue["label_ids"]), "|") { + labelID := com.StrTo(strings.TrimPrefix(idStr, "$")).MustInt64() + if labelID == 0 || mark[labelID] { + continue + } + + mark[labelID] = true + issueLabels = append(issueLabels, &IssueLabel{ + IssueID: issueID, + LabelID: labelID, + }) + } + } + + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if err = sess.Sync2(new(IssueLabel)); err != nil { + return fmt.Errorf("sync2: %v", err) + } else if _, err = sess.Insert(issueLabels); err != nil { + return fmt.Errorf("insert issue-labels: %v", err) + } + + return sess.Commit() +} diff --git a/models/models.go b/models/models.go index 01b96c0f54..e06d5cf88e 100644 --- a/models/models.go +++ b/models/models.go @@ -57,7 +57,8 @@ func init() { new(User), new(PublicKey), new(Oauth2), new(AccessToken), new(Repository), new(DeployKey), new(Collaboration), new(Access), new(Watch), new(Star), new(Follow), new(Action), - new(Issue), new(Comment), new(Attachment), new(IssueUser), new(Label), new(Milestone), + new(Issue), new(Comment), new(Attachment), new(IssueUser), + new(Label), new(IssueLabel), new(Milestone), new(Mirror), new(Release), new(LoginSource), new(Webhook), new(UpdateTask), new(HookTask), new(Team), new(OrgUser), new(TeamUser), new(TeamRepo), diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 3c416def59..fc13cbef01 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -127,7 +127,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 9185, mode: os.FileMode(420), modTime: time.Unix(1438976559, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9185, mode: os.FileMode(420), modTime: time.Unix(1439185159, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -772,7 +772,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\xeb\x72\xdc\x46\xb2\xe6\x7f\x3c\x05\xac\x0d\xad\xec\x08\xaa\x15\xb6\x63\x2f\xe1\x90\xe4\xa5\x49\xeb\x32\x47\x14\x75\x44\x6a\x66\x67\x15\x0a\x0c\xba\x01\x76\x63\xd4\x0d\xb4\x71\x61\x9b\xf3\x6b\x5f\x63\x5f\x6f\x9f\x64\x33\xbf\xcc\xac\x0b\x80\xa6\xe4\x39\x27\xf6\xfc\x21\xab\xab\xb2\x6e\x59\x59\x59\x79\xab\x42\xbe\xdf\x67\x45\xd9\xad\xd2\x67\xe9\x69\xba\xcf\xab\x7a\x5b\x76\x5d\xda\x95\xdb\x9b\xc7\x9b\xa6\xeb\xcb\x22\x7d\x59\xf5\xf4\xbb\xbd\xad\x56\x65\x92\x6c\x9a\x5d\x49\xa0\xaf\xe8\x5f\x52\xe4\xdd\x66\xd9\xe4\x6d\x41\x19\xe7\x96\x4e\xca\xdf\xf7\xdb\xa6\x65\xa0\x5f\x25\x95\x6c\xca\xed\x9e\xeb\xd0\xbf\xa4\xab\xd6\x75\x56\xd5\xf4\xf3\x8a\x52\xe9\xeb\x3a\xe9\x9a\x55\x95\x6f\xb3\xa0\x00\x19\x56\xfe\x53\xfa\x43\x5d\xa4\x57\x7d\xb9\x4f\x9f\x76\xbb\x7c\xbb\x7d\x9e\x77\xa8\xd2\x97\x69\xbe\x5a\x35\x43\xdd\x3f\x7d\x22\x05\xd2\x78\x33\xf4\xd6\xfa\xe5\xd0\x4b\xde\xb0\xb7\xac\x0f\xfb\xa4\x2d\xd7\x15\x4d\xac\xa5\xac\xf7\x9a\x4c\x0e\xe5\xb2\xab\x7a\x1e\xf4\x5f\x24\x95\xdc\x96\x6d\x57\x35\x3c\x9e\x3f\x4b\x2a\xd9\xe7\x6b\x06\x78\x47\xff\x92\xbe\xdc\xed\xb7\x39\x2a\x5c\x6b\x32\xd9\xe6\xf5\x7a\x10\x98\x37\x9a\x4c\x92\x81\x30\x57\xe7\xc0\xd9\x07\x4d\x26\xe5\x2e\xaf\xb6\x8c\x9f\xc7\x9c\xa0\x76\xbb\xee\xd0\x00\x8b\xef\x34\x49\x63\xcc\xfa\xbb\x7d\x89\x21\x3e\xbe\xa6\x54\xb2\xca\xf7\xfd\x6a\x93\x53\xce\x99\xa4\x12\x02\xda\x37\x34\xd6\xa6\xbd\x03\x9c\xfd\x48\x9a\x76\x9d\xd7\xd5\x3f\xf2\x5e\xc6\x7f\x19\xfc\x4c\x76\x55\xdb\x36\x3c\xf5\x0b\x24\x92\xba\x3c\x64\xdc\x0e\xe5\xbc\x2d\x0f\x61\x2b\x5c\xb2\xab\xd6\xad\xcc\x92\x0b\x2f\xf0\x8b\x5b\xe1\xb2\x9b\xa6\xfd\xac\x05\x2f\x38\x39\xaa\x4a\x83\xd0\xd2\xb8\xff\xbc\x26\xbc\x68\xe9\x05\x7e\x44\x00\x5d\x92\x17\xbb\xaa\xce\xf6\x79\x5d\x32\x8e\x4e\xf9\x17\xe1\x85\x7e\x25\xba\xdc\x59\x57\xf6\x7d\x55\xaf\x3b\x2e\x96\xac\xf4\x4a\xb3\x92\xa0\xcc\xe5\xf1\x78\xba\xec\xa6\x2c\x0b\x19\x51\x97\xbe\xa0\x74\xb2\x1f\xb6\x5b\x9a\xfb\x6f\x43\xd9\xf5\x0c\xff\x8e\x7e\xd3\x2c\xe4\x77\x52\x75\x1d\x25\x28\xfb\x35\x12\x09\x2d\x40\xbd\xc2\x90\xce\x90\x48\x92\x8f\x5d\x99\xb7\xab\xcd\xa7\x44\xfe\xa3\x47\x4e\x2c\x16\x8b\xa3\x4b\xc3\xe4\xa0\xa4\x20\x3d\x58\x07\xc9\xaa\x29\xf8\xc7\x19\xfd\xa3\xa6\xab\xba\xeb\x89\xa4\x3f\x25\x9a\x60\x30\x49\x09\x1a\xfb\xaa\xdf\x96\x3e\x13\xfb\xa3\xe3\x75\x48\x5f\x54\x6d\xd7\x3f\xee\x2b\x22\xb9\xf7\x43\x9d\xf0\xfc\x88\x9c\xb3\x62\x69\xbb\xfc\x65\x43\xd8\x41\x76\x4b\xf3\xbb\xb8\xbb\xfa\xd7\x37\x27\xe9\x3b\xda\xea\xeb\xb6\xa4\x74\x4a\x6d\xd0\x3f\xaa\xf3\xe3\x22\xa1\x5a\xd6\xd3\x79\xde\xe7\xcb\xbc\x2b\x3d\x5a\xb9\x50\x68\xd4\x95\x81\x52\x99\x6d\x80\x45\x74\x7d\x34\xdf\x39\x3a\xa7\x36\x74\x77\xb8\x36\xde\xf2\x16\xa1\x7c\xe6\x1a\xa8\xfc\x6e\x5b\x72\x3e\x35\x95\xbe\x7e\xfb\xf6\xf2\xfc\x97\xb4\xac\xd7\x55\x5d\xa6\x87\xaa\xdf\xa4\x43\x7f\xf3\xdf\xb3\x75\x59\x97\x2d\x31\x91\x55\x95\xd2\xce\x68\x89\x08\x52\x22\x4f\x99\xdc\x22\xe9\xba\x6d\xb6\x13\xf4\x5e\x5d\xbd\x49\x2f\x18\xc5\xfb\xbc\xdf\x60\x20\xfd\x26\xe9\x7e\xdb\x32\x8a\x5c\x87\xd7\x9b\x32\xbd\xa9\x68\xd6\x00\x6a\x6e\x0c\x1f\x69\xa1\x63\x5c\x24\x65\xdb\x66\xb4\xef\xfb\xbb\x4c\x2b\x6b\x7b\x63\x48\x69\x82\x48\xa7\x6e\xfa\x74\x59\xa6\xa8\xb3\x48\x12\x1b\xb0\x61\xf7\x74\xbf\xdf\x56\x2b\xd9\xb1\x2f\xa5\xcc\x23\x9a\x59\xb4\x62\x29\x84\x03\xa2\xac\x2c\x40\x17\xf1\xbf\xbb\x66\x68\xd3\x88\x0d\xa0\xfe\xa6\x24\xbe\xbc\x19\x68\xcb\xe5\xc4\x53\xb7\xcd\x50\x7c\x03\x4a\xb5\xd1\x7b\x42\x4d\xdf\x37\x34\x60\x60\xc7\x01\xf8\x2e\x4e\x89\xe2\xf8\x54\x68\xcb\x5d\x43\xdc\xc1\x11\x7b\x45\x04\x75\xa8\xa8\x90\x66\xda\xe5\xb7\xb4\xdf\xfa\x26\xed\x37\x55\x97\x16\x44\x6c\x2b\x6e\x98\xb6\xc6\x40\xfc\x58\xc8\x82\x08\x54\x48\xc3\xf2\xe2\x35\x00\xd4\x6e\x20\x6a\xda\x50\x63\xcc\xed\xf9\x68\xa2\x26\xe7\xc6\x89\x29\x51\x3b\xa0\x6f\xa2\xdc\x86\x78\x2b\x73\xbf\x73\x24\xf4\x77\xd8\x3e\x8d\x2a\xbf\xb9\xa1\x51\x75\x44\x15\xaf\xd2\xd5\xb6\x21\x92\xfa\xf0\xfe\x0d\x55\xde\xf4\xfd\x3e\xdb\x37\x2d\xc8\xf8\xfa\xfa\x1d\x6d\x8f\xb6\xf7\xb9\x01\xae\x19\xa6\x1e\x76\x4b\xfa\x75\xd8\x54\xc4\x04\xf2\x60\x81\x80\x8a\x2d\x1f\x30\x75\xda\xd4\x0b\xac\xd5\xd0\x6e\x47\xcb\x48\x5d\x5a\xc9\x91\xe1\xf1\x10\x9e\xf0\x9f\x2b\x3f\x4a\x4c\xb7\xa3\x53\xf8\x80\x45\xa5\xa9\x96\x38\x4d\x88\xb6\x9a\x3d\xb7\x1b\x10\xd7\xa5\x66\x78\x8a\xc2\x09\xe4\xca\xe5\x1c\xa2\x52\x9c\xf1\x01\x2f\xdd\xd1\x84\x75\x37\x5f\x5d\x10\x1a\xb0\xa5\x91\x7b\xd3\x36\x3b\xca\x7d\x41\xff\x7c\x86\x1f\xfe\x05\xb7\x07\x98\xbc\x28\x88\xcd\x74\x27\xe9\xfb\x17\x67\xe9\x7f\xf9\xf1\x87\x1f\x16\xe9\xeb\x9e\x37\x04\xd3\xc8\xdf\x79\x6d\x29\x29\x07\xa2\x03\xa5\x9d\xdb\xd3\xf2\x3f\x60\x02\x7f\x90\x3e\x45\xe9\xff\x28\x7f\xcf\xe9\x9c\x2d\x17\xab\x66\xf7\x9c\x37\xf7\x2e\xef\x17\x09\x97\x10\xd5\x28\x39\x5d\x95\x75\x41\x09\x3d\x56\xb5\x2c\xe0\x3a\x5a\x1e\x1c\xb2\x72\xfa\x67\xab\xa6\xbe\xa9\x5a\x9e\xd0\xaf\x75\xbe\x24\x9c\x98\x5c\x40\xec\x18\x25\x76\x76\x11\xd2\x68\x23\x57\x37\x77\x1e\x14\x53\x7d\xcb\x99\xba\xa0\x09\xcb\x4a\xd4\xa8\x8a\x4c\x0e\xcb\x57\xc8\xc6\xba\x5d\xd2\xf4\x5a\xc3\x77\xe7\x11\xde\xdc\xdc\x6c\x89\xb1\x19\xb3\xd2\x1e\x2e\x25\x57\xf8\x56\x08\x42\xc4\xb8\x87\x64\x73\x5e\x75\x80\x3c\x3b\x7f\x9b\x96\xb7\x44\x6d\x44\x0e\xfb\xb6\x29\x86\x15\x28\x8c\x61\x4f\x52\x3e\x26\x08\xbf\xc4\x19\x56\xc2\xde\x82\xbd\xca\x43\x63\x86\xb0\x22\x20\xda\xa2\x85\xb4\x97\x09\x82\x5a\x13\x24\xac\x9b\x2b\x16\x0e\xc3\xb2\xd9\x0a\x93\xd1\x61\x95\xba\x71\x5d\x5a\xee\x7a\x7b\x97\xe2\xd4\x07\x5d\xac\xda\x32\x90\xed\xba\x45\xa2\x67\x95\x49\x88\xd9\x6d\x45\x42\x45\xb0\x54\x28\x35\x71\x91\xd9\xc3\x9f\x19\x80\xc5\xb4\x6e\xb6\xae\x1b\xd8\x25\x77\xcc\x25\x34\x77\xea\x9c\xc7\xd7\x61\x08\xe8\x81\xc5\x3d\x22\xc6\xdb\x0a\x9c\x46\x91\x85\xb1\x12\xc6\xd0\x35\x75\xd5\x95\x25\x5a\xa0\xfa\x4f\xa8\x4d\xd4\x59\xa8\x08\xa3\xa2\x88\x9d\xbb\x7f\x6d\x86\xb4\x68\x52\x3e\x08\xc0\xce\xa8\xb6\x4d\xb5\xd6\xe9\xeb\x9c\xd3\xb6\x5a\x6f\x88\xaf\x34\x87\x13\x41\xda\x61\xd3\x94\x4c\x3b\xaf\xcf\x9f\x7d\x2f\xe3\x58\x33\x73\x73\x95\x98\x2d\xe6\x43\xdf\x30\x9d\xea\x12\xca\x10\xdc\xf1\x02\xc8\x89\xb0\x24\x40\x63\xf1\xd4\x04\xb0\xe9\x69\xad\xfb\x24\x2c\xd3\x0d\xe2\x61\xa4\xf6\x48\xc4\x55\x29\x26\x5b\x37\x90\xcc\x4c\x6a\x61\x56\x4d\xa2\x74\xd7\x67\xeb\xaa\xcf\x6e\x78\xc3\x72\x9b\x2f\xb8\x2e\x9f\x1c\x54\x92\x3e\xa2\xa2\x47\x29\xed\x7a\x92\x1c\x8b\x9f\xd2\x87\xb7\x7a\x5c\xff\xc8\x3b\x31\xcb\x6f\x09\x16\x8b\x01\x04\xb7\x44\xe1\x22\x2d\x98\xf8\x5e\x34\x44\xe7\x8c\xf3\x6e\xd8\x83\xa3\xeb\x09\x7d\x92\xee\x05\xb0\x68\x0e\xf5\xb6\xc9\x0b\xb0\x1c\xda\x5d\x15\x94\x8f\x65\x55\xe7\x74\xba\x58\x2b\x60\x65\x0f\x89\x1a\xde\x5e\x5e\x03\x70\xdd\x2c\x87\x6a\x5b\x18\xc0\x82\x66\x78\x9b\x6f\xab\x82\xe5\x2c\x5d\xf7\x50\xa6\xb1\xac\x4a\xc6\xb2\x6a\x5a\x3e\x0e\x31\x1b\xab\x78\xe4\x1c\x6e\xf9\x7c\x43\x36\xd5\x55\x58\xd4\x73\x47\x26\xa3\x81\x16\x1e\x02\x28\x1f\xa8\xa0\x98\xaa\xab\x1f\xf5\x18\xe9\x6a\xa0\xbe\x68\xd1\x39\x9b\x2a\x76\xe9\xe3\xe7\xf4\x37\xe1\xe3\x59\xf8\xde\x7a\x8a\x78\x2e\x4c\xa5\x70\x90\x5d\x1a\x0d\x35\x22\x6f\x47\x5d\x46\xbc\xc1\x5c\xc3\xf1\x1a\x09\x74\x83\xd0\x2b\x6b\x5a\x5b\x5a\xd6\xf2\x1b\x4a\x3c\xa2\x0d\xbc\xde\x62\x11\x72\x48\x2f\x24\xc6\x35\x84\x37\x26\x90\x13\xd9\x2e\x37\x34\x35\xe6\x9d\x7d\xfe\x99\xc6\x96\xb7\x24\x84\x25\x1f\x59\x1b\xfd\x94\x0c\x22\x00\x35\xdb\xc2\x09\x9b\xa0\xe9\xa6\x1d\xab\x58\x1e\xc8\xd1\x6b\x47\x52\xe4\x6a\x93\x39\x5d\x96\x91\xd2\x97\xbf\xe3\xcc\x43\x91\x57\x6d\x99\xd8\xb9\x28\xd9\xdd\x61\xb9\x78\x12\x17\x77\x7e\xb5\x48\xfc\xa1\x2d\x42\x22\xfa\xb2\x61\xac\xdd\x96\x0e\xea\x2c\xcc\x8d\x2b\x50\x5b\x24\xa8\x69\x53\xb1\x26\x44\x45\xa2\xae\x69\xa9\xa8\x6c\xa4\x8a\x7c\x54\x1d\xfb\x53\x62\x1d\x44\x4d\x26\x1f\x89\x19\x90\x5e\x22\xec\x25\x63\x6d\xcc\x16\x87\x86\x22\x3c\x87\x15\x33\xe5\x07\xfe\x1c\xdc\x94\x7b\x3e\x32\x77\x1d\x56\x75\x4b\x90\xc5\x9d\xca\x5e\x6e\x7d\x7f\x16\x4e\x4b\x0b\x4e\xfc\xe9\x1b\xd3\xde\xff\x60\x13\xbf\x54\xb4\x92\xa8\x1f\x9f\x1c\x7c\x5e\xd3\x56\xdb\x03\xfb\xb4\x49\xee\x4e\xd2\xe8\x0c\xda\xe4\x1d\x71\x5f\x3a\xe0\xb4\x5a\xb1\x30\xed\x80\x57\x2d\x5f\x09\xc9\x43\x93\x07\x91\x4a\xcd\xa6\x1d\x1f\x69\x3c\x42\x61\x50\xda\x8b\x3b\xf0\x71\x9c\x87\xa7\xfe\x4c\x9f\x84\xb0\x5d\xc9\x32\x5f\xb6\x13\x0d\x5d\x7e\xa5\x17\x65\x42\x82\xc9\x9a\xf6\xa3\xd1\xdb\x33\x56\xc9\xd6\x90\x50\x95\xdc\x18\xa0\xec\x43\x0e\xaa\x10\x96\xf3\xb3\x59\x2c\x68\x63\x1f\xa0\xaf\xd2\xd6\x9c\xa0\x9f\xce\x1a\x2a\x5e\x18\x47\x96\x03\x17\xf2\x49\x47\x9b\xdd\x23\xf1\x34\xa5\xd5\x4f\x43\x28\x95\x13\xfd\xb4\xb8\x02\x6f\xfa\xa7\xcb\xe7\x0f\xbb\xa7\x4f\x96\xcf\x1d\x6b\x5c\x6d\xca\xd5\x67\xd1\x25\xaa\x7a\xd9\xfc\x0e\x85\x8b\x16\x9e\x71\x5c\xf3\x16\x79\x58\xa4\x1b\x2a\x85\x4c\x4e\x5b\x99\xaa\x11\xe2\xb9\x34\x5a\x34\x1a\x0c\xef\xf8\x85\xd9\x7e\xdc\xe1\x60\x84\x44\xb5\xd1\x89\x8c\x8c\xd4\x7c\xec\x1d\xce\x0a\xe8\xf6\x94\x73\x99\x72\xc1\xe6\x3d\xe9\x62\xbe\xdb\x6a\x57\xf5\x13\xd2\x61\x3e\x92\x2b\x09\xaa\x9e\x6f\xb8\x44\x5b\xc0\x06\xc6\x42\xdc\x98\x9a\xa1\x73\xd3\xc8\xe9\x90\x93\x7a\xf3\x63\x4a\x24\x34\xd0\x29\xc4\x73\xa2\x61\x12\x3b\xce\xf9\xe0\x25\x05\x21\xef\xb2\xa1\x56\xb4\x96\x85\x11\xd3\xab\x0a\x87\x04\xf7\x6b\x24\x1f\x40\x19\xe6\x55\xce\x4d\xbf\x75\x18\xff\x8e\x84\xe2\x1b\x57\x8d\x39\x37\x0f\xa8\x62\x99\x2c\x9f\x5d\x3c\xe2\x6c\x75\x29\xea\x15\x30\xc0\x70\xbc\xd0\xa4\x1c\xf8\xd5\x23\x0d\xe3\x33\xe5\x60\x41\x96\x43\xdf\x37\x2c\x73\x6f\x99\x6a\xa4\x8e\x8d\xfa\x0c\x80\x50\x23\x7c\x7b\x58\x90\x10\x4f\xb2\x36\xa5\xc9\xc0\x99\xb7\xc2\xa9\xb6\x32\x9a\x9d\x1e\x75\x0e\xac\x10\x75\x3d\xaf\xef\x8c\x94\x89\x20\x78\x14\xdc\x61\x3f\x3f\x96\x6f\xdb\xf2\x3b\x3f\x1a\xb7\x67\x50\xc3\x46\x24\xd5\x83\xfd\xf4\x1e\xa5\xa0\x12\xb7\xeb\xec\xe4\x52\x23\x8b\xa7\x8f\x36\x46\x2f\xca\x79\x67\x10\x83\x25\xb1\xb1\x00\xa2\x69\x16\xa8\xbd\x18\xf5\xe5\xd5\x9d\x29\x06\xfb\x78\xc8\xfe\x00\xea\x9b\x26\xeb\x36\xa2\x5a\xda\xf0\xd2\x6d\x59\xaf\x23\x33\x01\x6c\xb0\x20\xba\xff\xca\xc7\x1c\x09\xf0\xf9\xf6\x53\x72\x07\x7b\xd4\x5f\x89\xc3\xd7\xb0\xd7\x35\x09\x15\x88\x32\x72\x81\x04\x81\xb2\x66\xf4\x29\xe1\x23\xf0\xed\x48\xac\xe3\x23\x42\xf3\x02\xf9\x02\x45\xbf\x46\xd2\x9a\x2d\x61\xf2\x6e\x46\x04\x7c\x5f\x7a\xbb\x24\x52\x6e\x8a\xa4\x44\x5f\x9b\xaa\x43\xfa\xf4\xe7\x52\x1b\x7f\x45\x6a\x73\xf7\x01\x6a\xaf\xe8\xb0\xac\xf0\xbe\xcb\xef\x58\xe8\x92\x6c\xfd\x81\x82\xeb\x32\xdf\xe9\x28\x39\x29\x4d\x9c\xd2\x71\xa6\x99\x9c\xa4\x53\x2e\xb0\x6a\x24\x10\x3f\x6c\x0a\x22\x8b\xe8\xb1\xef\xc4\xff\x52\x8d\x9e\x7f\x9b\x98\x62\xfe\x96\xe4\xdb\xfd\x26\xc7\xf9\x1f\x80\xc1\xea\x40\x40\x58\xf8\x14\x20\xa0\x85\x61\x57\xb6\xd5\x8a\x93\x5c\xe1\xdb\xc7\xd9\x77\x30\x38\xd1\x46\x21\x41\x30\x6e\xac\xa0\x4d\xf2\x4f\x35\xc8\x69\x16\x12\xc3\x76\xbb\xea\x1f\x36\x8b\xa8\x39\xce\x27\x9e\x43\x10\x10\xc9\x3c\x94\x03\xc2\xc1\xc8\xe2\x59\x9f\x32\x5f\xe8\x59\x04\x8c\x9a\xde\xe5\xbf\x7f\xa9\xe2\xae\x99\xa9\x27\xac\xc0\x57\xb2\x0d\xaf\x53\x8c\xd9\x01\xc1\xb3\x7d\xe3\x28\x34\x2d\x3d\x83\xd4\x9f\xe9\x54\xab\x1d\xd8\x07\xf9\x9d\xe2\xf7\x4f\x66\x02\xa7\x23\x44\x05\xe8\xd4\x19\xc3\xe9\x70\x2e\x98\x6f\x42\x10\x5e\xf8\xed\x16\x0a\xc7\x8e\x9c\x59\x8c\x34\x95\xdf\x31\x0e\x92\x28\x45\x4f\x20\x92\x5a\x78\xbb\x7d\xc6\x67\x64\xc6\x42\x67\x1d\x8a\x96\xee\xf4\xb4\xf3\x05\x10\x62\xf7\xcd\xa6\xf5\x46\x1b\xee\x68\x75\x12\x05\x66\x6a\x5f\x4e\x0d\x79\x47\xea\xf7\xb4\x65\x66\x1a\x70\x3b\xe9\x68\x45\x59\x4c\x54\xa2\x99\x17\x13\x5e\x30\xad\xc8\x60\xa4\xf6\x6c\xb7\xe5\x9a\x4d\x4d\xd6\x71\xd4\x9b\x92\x10\x1d\x06\x02\x16\x12\x90\xc7\xb0\x5b\xac\x70\x5d\x43\x21\xde\xad\x51\xac\x3e\xd1\xa8\x49\x1c\xa7\x24\xd7\x0c\x94\x28\x1d\x86\x9e\xe4\x3b\xd6\x17\xba\x81\x59\x33\xeb\x16\x22\x9d\xc4\xab\xc1\x07\x2f\x9a\x2a\xd1\xc5\xf1\xe6\x89\x16\x59\xe1\xfa\x52\xfb\x00\xfb\x83\x4d\x87\xea\xf6\xb4\x61\x6d\xdc\x01\x1d\x6b\xd6\x29\x84\xe5\xef\x15\xcc\x76\x2f\x2b\x36\x07\x41\x25\x74\x9a\x30\xca\x16\xc9\x96\x98\x01\xab\x1e\x32\x2b\x91\x63\x9b\x5b\xd6\xdc\xb8\x3f\x2e\x95\x7a\x62\xc6\xd3\x49\xf1\x3a\xab\x72\x49\xca\x5c\x73\x28\x8b\x13\x3a\xe2\xb9\x06\x8d\x13\x6c\x23\xdf\x1e\xf2\xbb\x0e\x36\x12\xe3\x38\x6c\xb2\x94\xea\xcc\x4e\x48\x00\x58\x63\x54\xa1\x7d\x9a\x76\x9c\x61\xa2\x23\xde\xc9\x87\x87\x3b\xa6\x0f\x50\x0f\xc1\x2d\xd4\xea\x42\x5a\x37\x1f\x7b\x38\x62\xf5\xac\x61\xd5\x96\x15\x41\x96\xf1\xa5\x38\x68\x08\x2e\x0f\xe5\xfc\x33\x75\x4f\x58\x3c\xa2\x6e\x58\x58\x21\x7e\x2c\xb8\x26\xf9\x8f\x30\x8b\x21\x05\xb6\x82\x81\xda\x7f\x2c\x72\x71\x45\x38\x64\x3d\xcb\xab\xcf\x7c\x36\xd1\xaa\x98\x61\x57\xf2\xa1\xfc\x26\x5d\x4f\x5b\x80\x31\x6d\xce\xb6\xbf\x8a\x7c\xa5\x2a\x33\x97\x62\x8b\x01\x4d\xdd\xa6\xda\xa7\x0d\x8c\x85\x21\x0a\x3d\xd9\x06\x22\x26\x61\xa3\x28\x21\x77\xb3\xd5\xb4\xcd\xeb\xee\xa6\x84\xf9\x74\x97\xde\xb0\x27\x68\xa1\x5d\xb3\xc4\x2a\x4e\xb7\x23\x3d\x8b\x0e\x83\xae\xc3\xd3\x02\x6b\x17\x2c\x54\xdc\x35\xc1\xdc\xa2\x67\x1d\x03\xb0\xea\x5b\xea\x6c\x0c\x4c\x66\x13\x14\x40\x6a\x8c\x9c\x14\x36\x9a\xdb\x32\x44\xc4\xcd\x3f\x3b\xf3\x00\xeb\x6a\x21\x16\xb3\x7a\xbc\x4c\xd2\x29\xac\x15\xf0\x31\x2d\xef\xe2\xd9\x73\x55\x47\x01\xec\xf1\xb8\x2d\xb5\x17\xde\x18\xbc\x57\x46\x0d\xc2\x4a\xe1\x75\x85\xa4\xcf\xa1\xf2\x2d\x69\x88\xab\x4d\xb4\x3b\xaf\x51\x92\x4a\xc9\x64\x83\x26\x1f\xb9\x6b\x52\xe3\x37\x79\xbd\x2e\xd9\xd4\x45\x2d\xf1\x91\x87\xdf\x2a\xa1\x4b\x26\x0d\x78\xdd\x4a\x9a\x0d\xe4\x56\x65\x45\x1b\xb2\xd9\xdd\x5b\xb3\xaa\xcd\x60\xd3\x25\x7f\x6f\x48\x86\x80\xa5\xf7\x4f\x94\x62\xe9\xb7\x4e\x22\xdf\xce\xc8\xce\x00\xf5\xa0\xea\xef\xe0\x74\x5a\x92\x0c\x2c\x4a\x1a\xe5\x90\x9a\x0b\xee\x00\xcb\xc5\x0b\x4b\xd3\x7a\xe4\xcc\xf4\x78\x6b\x4b\x4a\xe1\xc4\x8c\xf4\xc2\xd2\x09\x6b\xc9\xbb\x05\x0e\x07\x16\xa6\x61\x9c\x0e\x8e\x84\x47\x0f\xbb\x47\xbc\x60\x56\xb6\x08\xe0\xf7\x79\x4f\x6c\xb1\x16\x15\x45\x38\x54\x58\x55\x8b\x5d\x13\xe0\x2a\x02\xb6\x80\x47\x57\x50\xf1\x29\x21\x5d\x12\x2e\x40\x9a\x9a\xa4\x66\xdd\x97\xca\x62\x3a\x95\x79\xff\x85\x92\x6a\x11\x49\x5d\x1c\x83\xaa\xaa\x70\xe3\x99\xd3\xa7\x8b\x7d\x40\x5d\xa2\x26\xa0\xd8\xfe\xa3\xe4\xfd\x2c\x3d\x97\x84\x29\xbd\x43\x85\x39\x55\x45\x92\xec\x81\xf7\x2c\x18\xad\x2c\x84\x1b\xb4\xfc\x0f\x6c\xd0\xed\xf8\x64\x27\x2c\x48\x2b\x20\x5c\x73\x09\x40\x0a\x60\x1f\x6a\xa0\xb0\xb1\x71\x15\x9a\x5c\x1d\xb8\x3b\x48\xdf\xe5\x7a\x0c\x76\x28\x97\x29\x9b\x3b\x89\x70\x48\x2f\xd2\x89\xee\x72\x52\xa9\x6e\xab\xdc\x59\x66\x68\xb5\xd8\xf1\xae\xa7\xe8\x0b\x76\xba\xc3\x93\x39\x0d\xc1\x60\x7f\x84\xba\x1e\xde\x68\x32\x19\xf6\x05\xdb\xb4\xfc\x84\x3f\x20\xc3\x4d\x38\x2e\x0f\xac\x8d\x98\xba\x55\x73\xd2\x8c\x80\x17\xa9\xc2\xf1\xc8\xee\x16\xb6\x7d\x66\x62\x37\x74\x0b\x15\x63\x90\xd0\xc8\x2f\x45\xaa\xb4\x1a\xc0\x42\x78\x0f\xd0\x2b\x7e\x3d\x20\x84\xce\xca\x74\xd3\x1c\xd2\x6d\x55\x7f\xee\x14\xbf\xce\x1e\x62\x7a\x72\x7a\x8e\x0c\x02\x16\x4b\x0d\x8b\x55\x55\x3d\x94\x3f\x27\x96\x12\x43\x3c\x92\xd3\x38\x85\x52\x4e\xc5\x31\x33\x50\xff\xc9\x19\xb2\xd3\x53\x64\xcf\xc2\x7a\x3d\x57\xab\xc0\xa3\xcb\xec\x57\x1d\x3b\x37\x25\x0b\xd8\x60\x87\x2f\x95\x0b\x11\x7e\x9a\xa6\x53\xdb\xa3\x67\x3f\x9c\x07\x43\x85\x42\xe9\x6a\x39\x08\x5d\x4c\x19\x8c\xf9\x29\x08\x8a\xd5\x43\x12\x96\x74\x3c\xd8\xdb\x59\xb5\x93\x58\x9b\x0f\x5a\x2a\x2e\x7b\xa7\x57\xa0\x78\x41\x9a\xf2\x68\x32\xa1\xc7\xe0\x2d\xe1\x52\xa6\x6f\x7c\xd4\x0a\x4f\x4c\x5c\x10\x84\xe0\xb0\x8f\x06\x3b\xa6\x2c\x6d\xc0\x8c\xdf\x5f\x20\x30\x23\x9f\xd0\x91\x22\xbc\xd9\xb1\x96\x66\x1b\x09\x85\x67\x6a\xc6\x77\xe5\x8c\xd9\xa0\xfc\x2d\x5c\x5e\x63\x6b\x43\xa4\x29\x69\x0b\x47\xa5\xe9\xd1\x98\x26\x7b\xc7\xea\x1d\x68\x6e\xe1\x74\x8c\xe0\x17\x42\xfd\x39\x2c\xc3\xe2\x15\x1b\x3a\x91\x27\xb9\x2b\xb8\xd4\xa4\x09\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\x20\x2e\x11\x42\x0e\x40\x83\x84\x62\x7d\xb2\x34\x1f\x76\xc8\xd8\xf6\x2d\x2d\x3a\x1d\xbc\x23\x4b\xd4\x84\xa5\x45\xec\x0b\xdc\xab\x81\x43\xd6\x73\x2d\xd2\x20\xb5\x2d\xe6\xff\x48\x59\x8e\xb7\x5e\x96\x6c\xdd\xb2\x4e\x95\x59\xbb\x52\x61\xd9\x09\x8d\x01\x7b\xa0\x74\xe6\x89\x02\x98\x88\x87\x08\xb0\x10\xc4\x2c\xa1\x96\x9d\x45\x76\x5e\x58\x6c\xff\xc3\x6c\xbb\x51\x87\xce\xb6\xeb\x87\x3a\x22\x1b\x1e\xe3\xe8\xc4\x99\x10\x10\x15\xe0\xfc\xd5\xa5\x0f\x4e\x55\x5d\x7c\x77\xb8\x72\x37\x22\xd3\x33\x9a\x28\x0b\x47\xb0\x12\x01\x38\x2c\x0b\x78\x08\xba\x40\xe0\x8e\x08\xf8\xdd\xc4\x0c\x19\xf3\xd7\x53\x68\x30\x84\x15\x81\x65\x79\x80\x0f\x34\x91\xfe\x54\x23\xda\x31\x22\xc4\xed\xea\xe2\x50\xee\xc4\xe3\xe8\x45\xa2\x13\x55\x1b\x36\xd5\x7a\x43\xf3\xaa\x76\xec\x72\x04\xd7\x36\xbf\x96\xd7\xea\xf8\x17\x6d\xbc\x66\x5d\xb3\x0d\x87\x7b\x58\x60\x32\x8e\xdb\x3e\xed\xfa\xb6\xa9\xd7\xcf\xcf\x1b\x56\xb7\xd8\x12\xc2\x47\xc5\xcf\x4f\x9f\x68\x3e\xb1\x0c\x5e\x43\x8e\x77\x7c\x59\xf5\xaf\x86\xe5\xa3\x2e\x5d\x93\x6c\x80\x03\xe4\x69\x9e\x6e\xda\xf2\xe6\xd9\x83\x87\xdd\x83\xe7\xea\x67\x96\xa8\xa0\x43\xed\xd0\xf2\xf4\x49\xfe\x9c\xa5\xe7\xae\xd9\x92\x50\x1b\x57\x69\x76\x3b\x59\x5f\x62\x7f\x3b\x81\xc4\xf8\xe1\x9a\x2e\x6b\x60\xae\x6c\x15\x3f\xd4\xe0\xc2\xd1\xba\x5f\x1f\x5d\x36\x13\x93\x22\xfb\x82\x0a\x2a\x0c\x0c\x8f\x5b\xdd\x07\x4c\x93\x6d\x0b\xa9\xab\x86\x03\x76\x5a\x0d\x0b\xc9\xe6\x1a\x6f\xda\x30\xe3\x04\x24\x68\xb4\x61\xf5\xa9\x2a\x8d\x44\x24\x0d\xce\xb3\x3e\xe5\xe0\xa4\x94\x91\x56\x40\xbf\xcc\x53\xcd\x94\x09\x81\xd1\x1b\x41\x98\x60\x23\x1a\xfe\xc6\x18\x80\xcc\x3e\xd8\xfe\x90\x5f\x4e\x51\x81\xe4\x17\x68\xdd\x3a\x97\x37\xaa\x63\xa3\x80\x0e\xaa\x40\x9e\x7e\xdb\xa8\x4f\x22\xb5\x4c\x8c\x9a\x04\xe8\xbe\x8c\xc8\x9d\xbb\xa3\x7f\x68\x85\x68\x13\x6a\xfb\x7f\x4b\x0b\x52\xc1\xfd\x76\x32\x81\x54\x37\xd3\xa9\xdf\x0b\x63\x11\x55\xbd\x79\x47\xf7\x53\xb0\x8d\xb4\x55\x17\xa6\x21\xe6\x83\x12\x82\xe0\xb2\xaa\x0b\xd9\x36\x4a\xf5\x1a\xf7\xe0\xc8\x9d\x0e\xd3\x9a\x81\x60\xe3\xe3\x84\xfe\x0e\x90\x7f\x15\xb5\x1f\xd0\x06\x71\xab\xa1\x0e\xb8\x85\x6c\xc7\xac\x6f\xc4\xd6\xa5\x93\x7c\x47\xfa\x06\x62\x9e\x4e\xa5\xc1\x6b\x2e\xee\x34\xee\x4e\x9d\xa2\x56\xe5\xa5\x66\x62\xc1\x01\x98\xa0\xa8\x73\x88\xc0\x2f\xaf\x7a\x5a\x2b\xea\xaf\xd6\x68\x26\xac\x01\x6d\x3d\xe3\x0f\x1b\xf1\x5f\xa7\xa7\xef\x5e\x2f\x12\xd7\x9f\xb5\xf9\x6b\x4e\x32\x93\x8c\xe0\xe0\xb4\x5e\x26\xa5\x31\x7f\x71\xde\x12\xa9\x6e\x46\x36\xd4\x04\x39\xbb\x39\x4d\xe6\x23\x73\x89\xcb\x05\xc5\x65\x17\x58\x02\xa4\x37\x8c\x64\xcc\x99\xdd\x4c\xbf\x21\xc4\x3a\x7b\x14\x9f\x08\xfb\x3b\xe6\x75\x41\xa4\x4a\x2e\x08\x3a\x80\x5b\x8d\x42\x64\x08\x12\xda\x70\xca\xf2\x6d\xeb\xf6\x8a\x0d\x58\x77\x4b\x98\x1b\x50\x02\xc8\x70\x6f\xeb\x19\x8d\xd7\x1f\x74\xe1\xa0\x45\x49\x1f\xed\xcf\x54\xd8\xa8\xf8\x5f\x79\x5c\x22\x99\x29\x8e\x43\xd5\x8c\xda\x3c\x94\x5b\x8e\xa4\xd3\x01\x79\x27\xa4\x2a\x62\x91\x0b\x52\x81\x9c\xf3\x91\x23\x17\x9d\x24\x21\x6b\x1b\x5a\x47\xac\x31\x82\x20\x02\x86\xd7\x51\x34\x28\x63\xf7\x67\xa7\x6f\xdf\x5e\x5e\x7b\x2e\xcf\x94\x55\x17\x74\x16\x7d\xe3\xe2\x6f\x26\xe3\xb2\x28\x1c\x8c\x0f\x01\x59\x11\x84\x8f\x03\xd2\x1a\xc7\xe0\xc2\x8d\x6f\xad\x53\x72\xdd\x60\x37\x37\x3c\x16\xa9\x51\xc4\xe3\x2f\x8e\x29\x28\xc9\x47\x3e\x1e\x3f\x25\x66\x63\xbc\xe4\xff\x49\x68\xa6\x0d\x4c\xe3\xa0\x66\x6f\x41\xf7\xe1\xa6\x34\x80\xa6\x98\x98\x6d\xc1\xf6\x86\x1c\x12\x28\xe1\xbe\x01\x23\xbd\x49\xe1\x5d\x3b\x61\x2b\x54\xd3\x82\x06\x19\xb9\x43\x5d\xfd\x36\xe0\x7c\x67\xf9\x93\xe4\x15\x0e\xeb\x5a\x56\x5b\xe1\xb6\x7f\x76\x3f\x24\x9f\x53\xa3\x58\xcc\xa0\x73\xfa\xf5\xb4\xdb\x73\xa4\x1a\x71\xdb\xee\xd9\x83\xa1\x4a\xd9\xa8\xc1\x91\x21\x0f\x9e\x93\xb4\xc8\x5e\x6a\x5a\x3e\x82\x78\xce\x86\x89\xcf\x66\xef\x1a\x47\xc9\xa3\xcc\x02\x29\xb9\x0c\xd1\x94\xc8\x9d\x19\x85\xca\xd6\x62\xb0\xe8\xc5\xd2\x95\x06\xb3\x60\xee\xcc\xd4\xfd\xb9\x0c\x31\xa5\x1e\x09\x5d\xd7\x73\xfa\xd7\x56\x88\x06\x95\x7c\xbe\xb2\x90\x06\xd7\x15\x5c\xa6\xef\xf7\x8a\xd6\x7b\xc5\x0a\xd5\x62\x5d\xf5\x24\xd3\xf3\xd5\x0e\x68\xda\xb4\x61\x88\x29\xe2\xb6\x83\xa4\x2c\x67\xa6\xae\xc1\xa2\x62\x55\x57\x7d\xc6\xe7\xf4\x4e\x22\xd8\xa9\xd9\x7c\x2b\x32\x50\x8c\x68\x71\x18\xa7\xef\x7f\x3d\x3d\xbf\xf8\x75\xb1\x2b\x2c\xa0\x45\xf1\xa9\x91\x2c\x01\x46\x8b\xf2\x26\x1f\xb6\x66\x6a\xc3\x84\x91\x91\xfe\x82\x0c\xbd\xfc\x40\x5a\x11\xe1\xef\x56\x8e\x44\xb9\x0e\xf1\xda\x72\xbe\x65\x99\xf7\xbb\x23\x06\xa8\xb1\x17\xe7\x8f\xdb\xa1\xc6\x2d\xdc\x6f\x8e\x62\x17\x7f\xc6\xc6\xc5\x54\xc3\x40\x22\xe7\x67\xa2\x97\x33\x2c\x08\xdf\xdd\xce\x90\x28\xfc\xb0\xf4\x38\x2d\x9b\x6e\x94\xc7\x24\x4d\x3a\x70\xb9\x4d\xf1\xf7\xf1\x72\x3b\x94\x9a\x6c\xf3\xa2\x1a\x48\x38\x14\x3c\x1a\x8d\x5b\x4f\xba\x2c\x17\x7a\x67\x24\x58\x17\x85\x58\x20\x7a\x39\x33\x35\x80\xfd\xe6\x2c\x62\xab\xea\xe7\xa0\xcc\x11\x80\x70\x54\x0b\x89\x7b\x2d\x99\x12\xa3\x8a\x80\x38\xc8\xda\xb1\xcd\xd4\xdc\xf5\x79\x18\x6f\x9e\xc8\xa6\xb0\x9d\xa6\x5b\xe4\xc6\xed\x35\x44\x2e\x73\x58\x6a\xbc\xc9\x70\xbd\x25\xc0\x54\x18\x4c\xc2\xdc\xac\x60\x76\xbc\xbf\xcb\xd8\x72\x03\x0e\xbc\xbf\x4b\x10\x72\x41\xe7\x57\x86\xe3\x51\x32\xc1\x0f\xb7\xd5\x5e\x2e\x47\x51\x41\x55\x4a\xdc\x24\x12\x97\xff\x92\x08\x52\xdc\x0a\x61\xa1\x71\x63\x8a\x0b\x88\xef\xfe\x0c\xf6\xd4\xb3\x78\x2e\x96\xe4\x67\x0f\xb2\x25\xed\xd1\xcf\x0f\x02\x71\x9d\xef\x56\xb1\x8c\xfe\x0d\x09\x52\x07\xf5\x77\x7e\x90\x54\x62\xbf\xff\x82\x5f\x03\xc7\xe1\x89\x73\x95\x13\x89\xfe\x62\x83\x6c\xa2\x57\x7a\x98\x19\x25\x2c\x90\x2a\xdb\x20\x61\x34\xe4\x1c\xbf\x0d\x3c\x4b\xd1\x34\x9e\xa5\xff\xca\xbf\xd2\x97\xfc\x4b\xa7\xc2\xdb\xd8\xed\x51\xac\xf0\x68\x63\x87\x81\x69\xe0\x38\x1a\xdd\xe9\xf7\xb4\x44\xb3\x04\xd8\xd7\x30\x16\x03\xe4\x10\xe8\x64\x3f\xb0\xcb\x9e\xd7\xdd\x7a\x7b\x47\x39\x88\x27\xe7\x4c\x3e\xb2\x82\x16\x9c\xb5\x3e\x6a\x23\x71\xac\x42\x59\x44\xdf\x96\x10\xaf\xe8\x9f\x96\x65\x04\x9c\xf5\x39\xec\xb3\x02\x44\x24\xf7\x9f\xd3\x6b\xca\x51\x88\x32\x2c\x4a\x14\x14\xe5\xe3\x4b\x44\xd8\x46\x1d\x38\x2e\x27\x88\xe4\xb7\x65\xd7\x13\x8a\xa0\xeb\xba\x1f\x09\x8f\xb1\xea\x25\x72\x10\xa9\x44\xe3\x5a\xc5\x06\x2f\xc9\x04\x16\xce\x36\xe7\x28\xb1\xf7\xf9\x41\x7e\x12\xa6\xf5\xd6\xd1\x2b\x49\x49\x36\xe2\x9e\x05\x14\xd1\xd1\x0e\x1e\xc7\xb8\xd2\xf0\x3b\x4b\x27\x36\x80\xc5\x74\x20\x56\x32\xba\xf4\x94\xae\x46\xe5\x37\x22\xde\xbf\x60\xe1\xde\xf2\x72\xf0\xaf\xd4\xa2\x38\x5c\xfe\x8e\xb6\xbf\x18\xf3\x2e\x24\xe5\x4a\x0a\x09\x30\x3a\xe7\xfb\x75\x96\x67\x21\x9c\x97\xfc\xdf\xe5\x12\xc1\xe8\xfe\xa1\xff\x89\x62\x9e\x73\x55\x91\x93\x5b\x56\x9a\xad\x0a\xb1\xa3\xb7\xa8\x90\xc9\x52\x18\xa0\xd4\xc4\x5a\x4d\x0a\xb3\xfd\x36\x5f\x95\x2e\x9e\x14\x40\x60\xea\x7c\xfd\x2b\xea\xc6\x35\xa6\x9d\x45\xed\x91\xa4\xc8\x7e\xfa\x25\x15\x3f\x24\x76\x40\xbf\x5c\xe5\x2d\x1b\x50\x5d\xd1\x19\xff\x2c\xac\x90\xd6\x8e\x83\x18\xad\xe5\xa8\xc9\xb0\x8c\xce\x1f\xe6\x6d\x62\x01\x7c\xcb\xc2\x38\xa7\x39\xd6\x7f\xa6\x86\xa3\xc6\x90\x18\x8f\xc1\x1c\x6d\x79\x77\xa4\x26\x1d\x2c\x1c\x6a\x0f\x31\x54\x93\x23\x08\x3d\xc8\x70\x7c\x4d\x4b\x16\x1c\x3d\xec\x36\xd4\x29\x7c\x76\xd8\x54\x73\xa0\xd2\x01\x87\x5b\x71\x1c\xa1\xef\xb2\x50\xb5\x6a\xae\x92\xac\x56\x91\x2d\xef\xb4\x8e\xac\x57\xc1\x1e\xc1\x23\x55\x76\xec\xf6\x03\x97\xd6\x2a\x17\x2e\x23\xac\xc2\x8b\x8c\x86\x09\x42\xd2\xe9\xc3\x8f\xdf\x7f\xea\xb8\x65\x67\x75\x79\xf2\xf0\xe3\x0f\x9f\x88\x95\xe3\x1f\xf3\x72\xab\xbd\x6f\xcb\xdb\xaa\x19\x70\x45\x51\x93\x9e\x1a\x11\xa8\xfc\x96\x83\x92\x35\x4b\x96\xdd\x04\x7e\x4f\x96\x71\xf9\xaa\xd9\x36\x9e\x6c\xf1\x6b\x0c\x20\x9a\xc5\x43\x25\x95\x2e\x2e\x06\xd9\xba\xc5\x78\x08\x8f\x4f\x3d\x5a\x10\x81\x2c\x8b\x8a\xdb\xf9\x95\xfe\xc5\x05\x23\xef\x56\x5c\xe8\x02\xdb\x64\x80\x08\x6f\xb3\xfb\x35\xd3\x56\xd4\x47\x04\x50\xa7\xda\xcc\x82\x79\x49\x58\xed\x99\x74\x30\xc9\x26\x82\x24\xa4\xee\x5d\xe6\x78\x55\x2d\x97\x8c\xb8\x6d\x36\xfa\xa1\x54\xdc\x5f\xda\xf2\x71\xb7\xcc\x7c\xd7\x5e\xa3\x95\x91\xfa\xc0\x62\x55\xa9\x62\x7b\x12\xee\xa7\x82\x03\xef\xf3\xb6\xcc\xc4\xc8\xae\x9c\x98\x73\xd4\x63\xd0\xcd\xc3\xd9\x44\x0d\xb8\x3f\x34\xa9\x3b\xad\xf8\xf8\x83\x21\x32\x4f\xb9\xb2\x05\xc7\xc2\x38\xae\xf5\x17\xda\x2c\xed\x72\x12\xce\x48\x86\xee\xcc\x2a\x25\x3f\x6e\xcc\x08\xe3\x0e\xad\x80\xd7\x7a\xe6\x11\x14\xcf\x70\xba\xa0\x74\x9e\xdb\x8d\x01\x0a\x11\x29\x38\xf1\xb0\x8b\xfa\x26\x61\x65\x28\x33\x3d\x2e\x68\x9c\xf4\x2b\xc5\xaf\xf1\x10\xf8\xe0\x98\xeb\xdb\x5a\x1e\xcd\x88\x56\x6d\xb9\x21\xa1\x4f\xe2\x3c\x85\x81\x07\xa7\x36\x2d\xbb\x46\x30\xa8\x7a\xaf\x4b\x1f\x35\x3f\x3a\x6c\x66\xb1\x63\x1b\x16\x21\x94\x61\xc1\x8c\xea\x16\x96\xfa\x49\x9f\xd3\x8c\xf9\x9c\x4c\xbf\xb5\x0b\x80\xdf\xc5\x93\x2c\xc5\x09\xc7\xff\xc3\x02\x77\x73\x45\x9b\xca\x84\xee\xb5\x45\x34\xae\x39\xfe\x46\xc7\x89\x0b\x40\x7c\x74\x47\xcd\x3d\xde\xed\x1e\x17\xc5\xa3\x99\x59\x07\x44\xef\xa6\x3d\xb2\xa5\x2a\xdb\x1d\x51\x7f\xd0\x52\xc0\x41\xe6\x71\xc7\x00\xd1\x3a\x7d\xe0\x30\x8e\x92\x55\xab\xb4\xf0\x78\x03\x79\x07\x6b\xd7\x35\xe9\xbe\x6c\xf6\x84\x76\x67\xb3\x62\x03\x8b\x04\xb6\x85\x33\x19\x39\x54\x83\xa2\x51\xfc\xed\xbd\xc3\x33\x3c\xe8\xb6\x65\x85\x7d\x77\x04\x25\x72\x77\xf6\x28\x42\x02\x9e\xe7\x91\xea\xf8\xde\x0c\xe0\x1c\xd7\xf3\x7d\xff\x7b\x72\xbe\xb9\xce\xe7\x48\xe0\x4b\xbc\x6f\xee\x1a\xbf\xe5\x2d\x84\xbe\x11\x2f\x21\x29\x5f\x14\x5c\xbf\x01\x7e\xce\xc2\xdf\x1e\x6c\xd3\x34\x9f\xe5\x0a\xd2\x12\x49\x5f\xb2\xae\x7a\x2b\xe4\x1b\xce\xaf\xe2\xd2\x65\xde\x55\xab\xf0\xfd\x81\x5f\x38\x63\x66\x88\x05\xaf\x71\x9b\xfd\x43\x84\xa9\x73\xfc\x4a\xff\x17\x13\x86\x03\xd1\x60\x87\x4b\xbb\x72\x76\xc5\x21\x0f\xae\x54\x9d\xcd\x41\x57\xea\x1b\x9f\xf6\xa5\x7e\x5b\xd6\x75\xe6\x6d\x6a\x2e\x68\xe1\x58\x15\xa3\x8f\xb1\x79\x82\xcd\xc1\xce\xb9\x3b\x89\x5f\x98\x8b\x5b\x88\xc3\x2b\xef\x21\x14\x37\x14\x17\xb9\xc5\x4a\x97\x26\x2f\x2d\xf8\x6b\x0a\xe6\x4c\x94\x3e\xe0\x2b\xb6\x68\xb0\x01\xbe\x16\x7f\x2e\x82\xbe\x38\x38\x8c\xb3\xe2\x48\x33\xa2\x6b\xb9\xaf\xed\xef\x6a\x20\x70\x1c\xf6\x6c\xbe\xaa\x62\xfd\xe2\x29\x0b\x84\x7d\x72\x04\x5d\x27\x16\x21\x0d\x5f\x93\x50\x06\x31\x6d\xe6\xee\xaa\x13\xfb\x4b\xc6\x46\x2c\xe7\xa5\xf2\xf7\x95\x24\x16\xc2\x86\x8a\xb2\x80\x7c\x46\x91\x3f\xc0\x7d\x60\x50\x19\x01\x1a\x52\x2e\x89\x3f\x89\xbf\x45\xaa\xe5\x51\xe4\x9c\x04\x69\xc2\xca\xa4\x16\xdd\x65\xbe\xfa\xec\x46\xc4\xec\xaf\x6c\x7b\xc4\xac\x4d\xd1\xce\x3e\xf3\x15\xc4\x8f\xa7\xfb\xe7\x8f\x61\x28\x91\xeb\xed\x98\x85\x6c\xf0\xea\x26\x40\x08\xfc\x46\xec\x07\xba\xad\x8a\x81\xc8\x9b\x17\x63\xf1\xf4\xc9\xfe\x79\x5c\x9f\x28\x02\xc6\xb3\xa3\x6d\x8c\x16\x8e\x45\x97\x0a\x77\x65\x38\x28\x14\xd1\x89\x37\x3e\xe8\xb6\x43\x0f\x47\x77\x51\xc0\x8a\x02\x52\x37\x76\xf2\x85\x98\x8d\x29\x4e\xcc\xa8\x8d\x47\x4e\x60\xd8\x76\x30\x2c\x5d\x65\x01\x69\xc3\x79\x62\x34\x3b\xd3\x94\x38\x65\x46\x26\x42\x1f\x03\xe9\x86\x66\x15\xda\xe3\xc3\x8b\x9d\x04\xe9\x8c\x73\xc0\x81\xb2\x7b\xd2\x73\x4c\xd1\xcc\x8b\x02\xf3\x39\x0b\xb2\x8f\x57\x18\x39\x4b\xa3\xb6\x62\x67\x69\x30\x40\x39\x6a\x8e\xb5\x73\x36\xdb\x86\xba\x74\x82\x56\x10\xea\x5c\x21\xa8\x35\xd3\xfb\x77\x12\xa6\x95\x8e\xa3\x4a\xb5\xf4\xb0\x69\x82\xdb\x1f\xe2\xc1\xc5\x66\x0d\x07\xb2\x88\xe7\x7a\x90\xf3\x41\xf1\xa2\xa7\xc5\xe8\x18\xb1\xcd\x67\x67\x09\x6e\x12\xec\x06\xe2\x2d\xdb\x8a\x16\x1d\x47\x86\xbe\x22\x71\x79\x75\x8d\xfb\xf9\xc4\x0b\x89\xd1\xac\x99\x5e\xd3\xbf\x6c\x48\x1f\xe4\x58\x5f\x7e\xcc\x81\x43\x30\xd6\x69\xb3\x5a\x71\xe0\x45\x55\xeb\xfd\xd7\x43\x69\x2e\xc2\xba\xd8\x4a\x10\x46\x18\xc2\x62\x7c\x57\xac\x83\x29\x1e\x6c\x60\x26\xd0\xed\xcb\x15\x09\x25\x8b\xf4\x0d\x89\x68\xfc\x0a\x80\xbc\x13\x01\x86\x79\xaf\x31\xd1\xcd\x04\x56\x3d\x56\x45\x17\xd3\x03\xd2\x3d\x27\x63\xa7\x24\xe6\xbd\xe7\x40\x4f\x51\x99\xb9\x80\xc4\x89\x72\x7b\x23\x41\xbb\xec\x25\x85\x28\x27\x6f\x0f\xb0\xa7\x46\xae\x64\xb3\xbd\x13\x0d\x68\xf8\x09\x9c\xcd\xb8\xa9\xc6\x33\xdb\x97\x2d\x8b\x23\x16\xa8\x15\xc6\xe8\x8c\xc7\x04\x5d\xd3\xc6\xf5\x5a\xd8\x02\x96\x0f\x82\xab\x5c\x2b\x3c\x61\x5e\xcc\x32\x9f\x05\x00\x98\x05\x7c\x2f\x57\x09\xf9\xa4\x23\x7c\x21\x0e\xde\x40\xe4\xfc\xc0\x7d\x21\x0e\x08\x1f\x74\x39\x2c\xfc\x0d\x08\xe5\x7e\x66\x46\xa4\x07\x32\x23\x48\xdc\x5b\x13\x08\x1f\x88\x00\x20\x8b\x46\x18\xb3\x30\x05\xf7\x72\xc0\xab\x88\x12\x75\x4f\xa1\xc5\xf0\x86\xb5\x90\xef\x3d\xdb\x28\xa0\xf2\xe8\x81\x20\xcc\x50\x6f\x16\x3e\xe5\x6b\x71\xcf\x99\x7a\x9f\x3e\x41\xd2\x29\x8c\x4a\x79\xfc\x1e\x49\x40\x71\xfc\xd6\x44\x43\xf8\xc3\xd1\xd7\x96\xeb\xbc\x2d\xec\x5a\x81\x52\x3f\x7b\xcd\x41\xe5\x61\xd4\x58\xbe\x25\x89\x5c\x9b\xa0\xdd\x4a\x20\x9f\xd9\x86\x48\x84\xc2\xaf\xe9\x98\x12\xc2\x9c\xbf\x90\xad\xc5\x01\x39\x44\xf0\xc3\x9e\xf7\x80\x6c\x28\xeb\x07\xd3\xfe\xf6\x4f\x57\x97\x6f\x4f\xd2\xdf\x1f\x1f\x0e\x87\xc7\x5c\xfd\xf1\xd0\x6e\x39\x74\xa5\xe0\x6b\x0b\xff\xf3\xe2\xcd\x49\x5a\xf6\xab\xef\x16\x24\xbd\x63\x6b\x78\xb1\x57\x3d\xfa\x50\x72\x99\x2c\x59\xb3\xfb\xe7\xb7\xcc\x5e\xee\xb7\xe9\xdb\x2f\xe1\x6d\xb7\x90\x69\xf3\xb2\x9b\x09\x4c\xa9\x40\x4c\x61\x5e\x62\x2c\x49\x57\xc2\xfd\x56\x24\x7c\x01\xb0\x6a\xcb\xf7\x81\xd1\x21\xc2\x0d\xf2\x3b\xf6\x88\x0e\xdb\x42\xe8\xd4\x38\x1a\xcd\x4e\x51\x56\x16\x3f\x8f\x5b\x82\x65\x1d\x4f\x5d\x3c\x4b\xff\xc4\x8a\x1e\xa3\x54\xa8\x80\x8b\x8c\x0a\x00\x1c\xd2\x12\x76\x58\xaa\x77\x75\xcb\x71\x81\xf7\x71\x9c\x97\x3d\x82\xfb\xe6\x68\x43\x46\xee\xc6\xe6\x57\xd3\x36\x2a\x9d\x6b\xd4\x58\x2b\xdc\x5b\x1c\xf5\x11\x35\x8f\xf6\x00\x9f\x4b\x87\xf1\x3e\x18\x1f\x49\xba\xc9\x3c\xbb\xd7\x4d\x36\xe1\xf8\x0a\xf8\xa5\x7d\xa6\x12\xc4\x44\xa2\x0b\x7a\x50\xc9\x6e\xd2\x83\x84\xfd\x64\x3a\x4b\x8b\xba\x47\x28\xd0\xb9\xcb\x8b\x8f\x20\xa3\x1a\x30\x90\x98\x64\x18\x21\xdd\x96\xc4\xbc\x2c\xdc\xe1\x7c\x98\x45\xd1\x5e\x57\x0c\x82\x18\x2f\xf6\x8d\x9a\x1f\x71\x12\xe1\x16\x8a\x19\xd2\xaa\x45\x70\x48\xa4\xc9\xa8\x70\xfc\x06\xd3\xa8\x98\x35\x0b\x79\xe4\xed\x4c\x52\x21\xb6\xf6\xdb\xe6\xce\x82\x00\xcf\xf1\x4b\xa3\xeb\xc3\x99\x79\x30\x9d\x94\x87\x0c\x24\xf8\x26\x8b\x9b\xfb\x6b\x70\xcf\x5a\xc5\x80\xfa\x2e\x15\x18\x8e\x10\x08\x45\xbd\xc8\x2a\x33\x33\xbc\x99\x38\x32\x07\x35\x8e\x78\x3b\x77\x3d\x1c\x89\x78\x8b\xab\x86\x51\x6f\x41\xd5\xaf\x88\x7a\x8b\x91\x34\x8d\x69\xf3\x53\xfd\x8a\xb0\xb6\xb9\x49\x07\x06\x08\x25\xe3\x39\xc4\xcf\x54\x98\x33\x44\x14\xe1\xdc\xbc\x25\x22\x34\x3b\x88\x6e\x50\x76\xb0\xe0\x8c\x14\xbe\xaf\xd1\x31\xe7\x46\xe2\x51\x12\x20\xf7\x4b\x66\x89\xa2\xba\xb9\x59\x2c\xdb\xe6\xd0\x71\x58\x1d\x5e\x52\x62\xcf\x1f\xff\x4e\xaf\xf0\x5b\x40\xd8\xe4\x0a\xa2\x90\x84\x64\x8a\xa7\x8a\x32\x25\x21\x99\x7c\xb4\x4d\x5e\xb2\x39\xa7\x12\x3c\x1e\xc3\x0f\x4b\x71\x34\xbc\x94\x2c\xa4\x0a\xb1\xf3\x43\xc6\x29\x84\x03\xc2\x44\xc2\xaa\x38\x2a\x5d\x71\x8e\x82\x71\xd2\x10\x6e\xc1\x45\x6c\x5b\xb5\xfb\x09\x90\xc3\x7c\x9c\x11\x08\xcb\xe0\x08\x8c\x88\xa1\x82\xa0\xe5\x41\xc2\x30\x25\x82\x30\x5c\x7a\x08\x45\x10\x36\xfd\x2f\xaf\xdf\xca\x4f\xf8\x1e\xf5\xb6\x06\x9c\x8f\x2f\x38\x0a\xc4\x3c\x9a\x8b\x39\xcf\xa6\x95\x89\x87\x58\xf4\x53\x7b\xa0\x12\xbf\x1c\x44\xd1\xe6\x37\xb0\x55\xf2\x7f\x97\x4b\xc2\x9c\xaf\xf6\xae\x2d\x1f\x8f\xab\x11\x72\x04\xd5\x57\x48\xb8\x7c\xb5\x35\xf2\x3f\x97\x97\xb3\x5d\x31\xc0\xe1\xc3\xc2\x63\xc4\xfc\xa3\x44\x77\x0f\xe9\xa0\xad\x58\x01\x57\x02\x1d\x75\x08\xea\xf0\x0f\x10\x80\x76\xf0\xd8\xa3\x41\xf4\xf9\xda\x05\xf7\xe5\x6b\xf1\xd9\xf8\x32\x88\xf6\x76\x63\x2c\xaa\xe3\x5f\x21\x30\x93\x82\xf7\x7f\x53\x39\x9e\x53\x5b\x85\x6e\x75\xca\x64\x7f\x3a\x2e\xfd\x74\x9b\xc5\x78\x21\x9c\xef\x48\x71\x96\xe2\xb7\x83\x32\x49\x85\xc9\x25\xdb\x15\x81\xb0\x22\x04\x14\x1e\x2b\x17\x79\xfb\x99\xdf\x57\x82\x37\xcb\x1a\x38\xb4\x7a\xcb\x87\xff\x87\x2b\xa6\xef\x7a\xbd\x93\xd4\xa4\xc3\xd8\xdf\x8a\xda\xd0\x99\x8c\x99\xba\x0a\x2c\x5d\xc9\x8d\xb2\x37\x92\x92\x07\x39\xc7\x94\x31\x8d\x72\xa5\xb2\xc7\xe3\x75\x0b\xe0\x1d\xa2\xff\x52\xfe\xdf\xff\xfd\x7f\x88\x3d\xed\x1b\x3a\x2d\x11\x7f\xad\x57\x7f\xfd\xba\x5b\x30\x8f\x7f\x85\xed\x31\x78\x74\x30\x10\x41\x7f\xaa\x21\xcd\x94\x9a\xd0\x28\x3f\xd1\x64\xf4\x7d\xc5\x36\xaa\x98\xc8\xa1\xed\x78\x32\x87\x7d\x7c\xdc\x86\x11\x55\xa6\x67\x84\xbb\x7a\x68\x8b\x8b\x45\x93\x0b\x3d\x4a\x74\xf3\x47\x4a\xf2\x91\x74\xea\x4f\xfe\x82\xba\x5b\x88\xe8\x72\x3a\x54\x1c\x0f\x63\x08\x7b\xc9\xe4\x37\x7d\x8f\x52\x54\x46\x79\x0d\x03\x2e\x29\x0b\xd9\x93\x0b\xa3\x72\x9d\xc0\x35\x12\x76\xf4\xa8\xb3\x3b\x05\xfa\x50\x0a\xa2\xf6\x67\x2e\x76\x84\x97\x15\x48\x63\x54\xa7\x84\x5c\x84\x55\x77\x4c\xf4\x3c\x2d\xc2\x51\xcc\xfe\x63\x62\x60\x91\xa8\x9f\x80\x43\x24\x38\xc1\x77\x95\xf9\xd1\x4f\x26\x3f\xb1\xf0\xbe\x46\x06\xed\x6b\x64\xe0\x1e\x3e\x82\x40\xf8\x7f\x82\xdb\x8f\x6a\xa4\xe0\x5c\x4d\x69\xfe\xe8\x86\x65\x1b\xbd\x26\xe5\x03\x65\x70\xf3\x3a\x7a\xbe\x89\x1b\x07\xa2\x66\x5c\x44\x93\xfb\xf8\x58\x19\xe4\xde\x07\x1d\x85\x1b\x3e\xda\xc2\x6a\xa7\xd7\x77\xb8\x2d\xe2\x72\xea\xf1\x56\x92\xc1\x6d\x70\x7e\x36\xa5\xe6\x87\xd0\x0c\xcb\xae\x9b\x60\xcb\x6c\xc4\x7f\xe4\xab\xf1\x7a\xe5\x4b\xda\x3c\x3f\x0b\x3c\x07\xa2\x54\x5d\x17\x08\x09\xa8\xe3\xb3\xd3\x2d\x29\x08\xdb\x48\x99\x41\x43\x2c\xca\xfd\x7c\x24\x62\x6f\xfa\x72\xc2\x1f\x8f\xd9\x9b\xb6\x71\x7f\xd4\xde\x3f\xeb\xba\x98\xbf\x15\xe9\x8a\xa7\xd7\x23\x5d\xd1\xdc\x3d\xc9\x7f\x83\x23\x81\x48\x4a\x87\x31\xd9\xdb\x47\x3d\x09\x5a\xc7\x19\xa2\x8f\xbf\x58\xf1\xc7\xfd\x09\xd1\x3b\x01\x5f\x21\xed\xc5\x33\x0e\x04\xbd\x68\x54\x0e\x21\x6c\xb0\x8a\xe3\xc7\x8f\x69\x6f\x5e\x70\x8d\x78\xc6\x58\xc7\x9b\x84\x8b\x63\xa6\xf7\x56\x89\x83\xc7\xc3\x61\x3a\xf3\x94\x0f\xb7\x36\x2b\x8e\x84\x8d\x8b\x39\xef\xcb\xb1\xe3\x47\xec\xc3\xf7\x05\x91\x8f\x47\xc9\xbc\xc6\xbd\x29\x1b\x0e\xf2\xde\x1a\xe1\x31\x1b\xfb\x60\xfe\x2d\x81\xe5\xf3\x36\x58\xd6\x01\x0f\x66\x8a\xc1\xa1\x6c\xf8\xf3\x06\x05\xd6\x21\x0c\x5f\xa2\x64\x78\x86\xeb\x31\x37\xe0\xa9\xd8\x7e\x3c\x68\x8e\x78\x10\xee\xbd\xd0\x4b\xd3\x76\x25\x69\x94\xef\x59\x1f\x02\x2d\xf6\x12\x16\xee\x81\xe4\x37\xc4\x9d\xd9\x92\x71\xfd\xb8\x8f\x38\x9c\xde\x72\x9d\x19\xfc\x02\x09\x97\x4f\x58\x5b\x95\x08\x77\x3e\x93\x94\x2b\x51\x5d\x4b\xdf\xfe\xf0\x83\x90\x77\x1d\x9e\xc1\x12\xea\x73\xf5\xd4\x53\x5c\x73\xc4\x28\x2d\xca\xdd\x9e\x97\x30\x77\x17\x9d\x79\x99\x04\x50\xc5\x4d\x1d\x15\x24\xe4\x9f\xc6\x6d\xc9\x1b\x77\x7a\x7a\xbe\x6d\x0e\x89\x1c\x9d\x0b\x7e\x8a\x20\x95\x77\x08\x34\x27\x1e\x92\xe4\xb1\x8c\xa2\xf7\x7f\x30\x07\x12\xd3\xe5\xba\xcf\xb4\x7c\x14\x02\x8d\x93\xc3\x05\x3f\xdb\xb3\x22\x2c\x80\x42\x6a\x40\xd4\x2a\xcb\xf5\x21\x71\x2c\xb4\x55\x08\xb0\xbe\x5b\x91\x44\xa3\x7e\x43\x88\xaf\xe9\x98\xc7\x39\xe9\xee\xc4\xec\x5b\xb8\x65\xca\x91\xad\xc2\x0f\x77\x36\x0e\x79\x86\xd3\x8d\xc3\xbd\xf1\xea\xc7\x11\x42\x7c\xcd\x38\xb8\x97\x27\x88\x08\xe2\x45\xbc\x6f\x3c\xa4\x1c\xea\xa5\xd9\xd0\x7b\xd2\x8d\x87\xe8\x63\x88\xaf\x83\xf3\x1a\x1e\xc8\x62\x24\x7f\xb0\x79\x73\x7a\x70\x4a\x89\x38\xc2\x66\x44\x04\x71\x14\xcf\xde\x9d\xfa\xf2\x16\xe7\x95\x46\x4d\x07\x1a\xb8\x80\x3d\xd8\xdc\x29\xa4\xe3\xf2\x22\x1d\x64\xac\x0b\x95\xeb\xa4\xf0\xcb\x07\xaf\xc0\xd9\xad\x27\x91\xef\xc2\x23\x03\x02\x9e\xad\x64\x21\x6f\x2c\xb9\x3d\xce\xac\x2e\xe8\x75\xda\x98\x63\xd5\x80\x72\x2c\x7a\x0a\x67\xbc\x33\x94\xce\x02\x63\x2b\x33\xe5\x13\x93\x59\xc5\xdb\x6a\x50\xbb\xfc\x2e\x72\x00\xf3\x6d\x2f\xd6\xc8\xa2\x5d\x73\xfc\xc4\x9e\x0e\xc5\x9f\xd5\xf2\x70\x91\x23\x98\xa3\x46\x99\x45\xb8\xd5\xa7\x04\xe2\xc9\x6e\xdd\xe6\x6c\x0b\xb7\xb5\x66\x66\x11\x90\x02\x1a\xfc\xc9\xcd\xd2\x3d\x02\xed\xb9\x01\x3c\x6c\xd4\xd0\xa3\xfb\x98\xc2\x1f\x18\x00\xd8\xc6\xfd\x23\x00\x5b\x90\xe7\x97\x68\x18\x01\x0b\xb8\x6f\x20\xfa\x7a\xf3\xd7\x0f\x04\x7c\xe3\x2b\x07\x72\x62\xa3\xd0\x47\x3f\x8a\x62\x76\xff\xdf\x37\xbe\x91\xba\x03\xe2\x8c\x5e\x95\x19\x11\x7c\xf4\x25\x0d\x47\xf4\x41\x2c\x84\x35\x0b\x07\x98\xc6\x66\xe8\x71\xe6\x9b\xaa\x69\x09\xa1\xca\xd6\x7d\x18\xbf\x11\xdf\xef\xe0\x88\x82\xbe\xbd\x53\x91\x84\x27\x17\x5f\x2f\xf1\x97\xe7\x45\x09\x83\x2f\x53\x5e\x1a\xfa\x08\xb4\x7f\x3a\xf2\x49\x1c\x79\x59\x5c\xdc\xd3\x5d\xf4\x79\x96\xe9\xa3\x2f\xf7\x3e\xb8\x13\x3f\x34\x34\x7e\x71\xaa\x93\x0b\x82\x6b\x93\xe5\xec\xf1\xe6\xc4\x07\x6f\x5c\xdd\x11\x0e\x76\x78\xaf\x7e\xc5\x6f\x2d\x34\x75\x25\x7e\xff\x0b\x49\xf1\x73\x1b\x6c\x8a\x51\x3b\x0c\xdf\x5b\xf5\x11\xc6\x7e\x76\x30\x2e\xb2\x8d\x49\x05\x01\x49\x07\xe5\xc1\x03\x30\x88\xb7\x6c\xed\x49\x1b\xdf\x02\x46\x02\x13\xe6\x10\x8c\x4c\xc7\x81\x46\x87\x6e\xae\xc7\x8c\x1d\x75\xa9\xba\x29\xdd\x77\x36\x98\x49\xf0\x2b\x07\x05\xbf\x72\x20\x4f\xb9\x9f\x04\x19\x11\xce\xc3\x82\xbd\xbb\x4f\x1e\x65\xc7\x07\x9f\xcf\xc7\x5d\x9a\x38\x8b\x2f\xd0\x44\x19\xf9\x6a\xd2\x8b\x19\xb0\xc3\x3c\x89\xa5\x0b\x73\xd8\x98\xc8\x0e\xbb\xa8\xf5\xf8\x9a\x75\x58\x24\x6f\x27\x45\x59\xfa\x5c\x74\x3c\x13\xb1\xa9\x86\x79\xdb\x66\xcd\xef\x3e\xc1\x08\x19\x4f\x4f\x65\xe7\xb8\x4d\x0b\xe9\x8b\x9a\x40\x50\x78\x98\x03\xbf\x56\x9f\x77\x71\x6d\x6c\xc1\x30\x43\xaf\xdd\x4e\x00\x49\xa7\xce\x57\x1b\xcc\x7f\x31\x47\x48\xa6\x1a\x3b\x62\xd2\x0f\xc5\xcc\x40\xca\x93\xde\xa9\x3d\xe0\x3d\x0b\xc3\x5f\x0a\xc1\x7b\xe9\x41\x29\x87\xc8\xd6\x99\xde\x44\x6f\xf4\xe2\x1d\xc7\xcb\xba\x5b\xe7\xe9\x25\x76\x5c\x77\x6f\xa5\xe0\x14\xe3\x5b\x0a\x7a\xd3\x5d\x6b\x8a\xc4\x71\xcf\x71\xe6\x5b\xd6\x83\x51\x23\x17\x72\xaf\xab\x75\x5e\x4e\x60\xe9\xc6\x42\x1b\x1c\x91\x7c\x55\x1b\xa3\x51\x7a\x08\xd7\xcc\x1f\x1f\x2a\xac\x67\x7c\x1b\x08\x16\xb9\x68\x90\x11\x5b\x33\x90\x2f\xb4\x30\x1a\xe2\x6c\x13\x7f\x60\x90\xfc\x8d\x81\xf5\xca\xbd\xc9\x7e\xce\xcf\x79\xb4\x4b\xbe\x77\xc4\x67\x58\x29\xdf\xca\x68\xea\xd8\x02\x37\x5f\xfd\xbe\x91\x61\x40\xac\x73\xcf\x35\x7f\x6c\x6c\x6d\xd9\xdd\xd5\xab\x0c\x0f\xe4\x77\x1b\x75\x54\xbe\x2f\xc5\x56\xfe\x68\x41\x79\x4f\x72\xbd\xfc\x59\xc2\xa5\xd7\x3d\x92\xf7\x8e\xbe\x5d\x51\x3e\x1e\xe8\xa7\x23\xee\x31\x78\x22\x6a\x9b\x00\x47\xe2\x59\xff\xdd\xbd\x1d\x8d\xe6\x12\x30\xc4\x00\xb7\x2d\x86\xd2\x97\x5f\x35\x83\xc0\x49\x1e\x4e\x83\xc9\x40\x77\x3f\x78\x45\xf8\xb0\x1f\x23\xee\x5b\xbe\xef\xca\x0f\xb4\xf0\xbb\xc7\x1a\xee\xa3\x07\x9a\x7d\x00\x41\x8d\x47\x47\x26\x14\xf6\x7b\xcf\x0a\x3d\x8a\x46\xf1\xe5\x39\x86\x87\x90\x7c\xda\x65\xd8\xe3\xfb\x5a\xee\x9b\x2e\x1f\xf0\x3b\x64\x0a\xf2\xd6\x52\xb6\x6e\xda\x86\x96\x07\x26\x62\x7b\x7f\xe9\xa5\xe5\x75\x33\x15\x60\x02\xbf\xcb\x06\xbd\x0e\x67\x75\x2e\x90\x4d\xf2\x03\xdf\x8d\xf3\xb5\xfa\xa6\xcf\xb7\x56\x87\x2d\x90\x2b\xb5\x5b\x5f\x73\x81\xd5\x3a\xb5\x82\xa0\xa6\xd6\x69\x96\x1c\xef\x89\x2a\x0a\x7c\xa9\x39\x01\x2c\xdc\x1c\x7c\xa1\x8c\xd0\x35\xec\x33\x9e\x2a\xee\x22\x49\x76\xfa\x06\xd9\xe9\x35\x67\x4f\x7b\xb0\x51\xb9\x6a\xa3\x41\x1d\xab\x77\xd3\x96\x93\x3a\x2f\xf8\x6e\xe6\x18\xde\x30\xb7\x29\xf3\xfd\x04\x6f\xaf\x28\x73\x82\x35\x40\x4e\x11\x00\xd8\xe3\x58\x08\x6b\x55\x05\x14\xab\xb0\xc6\x6b\xca\x3a\x06\x8d\x08\x80\x31\x3c\xbe\x7c\x75\xa4\x86\x9e\xd9\xe3\x51\xa9\xcf\x66\x32\xaa\x66\xf9\x77\x7c\x27\x4a\xa1\x2f\xe5\x67\x00\xb5\x6c\x9a\x9e\x9f\xe3\xdf\xb3\xb8\xb5\xfa\xec\xd0\xf4\x8b\xe5\xb3\xb8\xb5\xfa\x3c\xc1\x94\x40\x4f\x51\x25\xd0\xc7\x71\xb5\xe3\x8b\xe1\xd4\x57\x3b\xac\xfa\x81\x36\xa8\xeb\xf0\xe2\x8a\x2f\x99\x5f\xb9\x82\x49\x8f\x93\x9a\x21\x85\x8e\x2b\xcf\xf5\xbc\x22\x21\xa2\x9c\xed\xfa\x8c\x4b\xee\xed\x7b\x52\x37\xec\x7c\x52\x7d\x6e\xa7\xe0\x79\x41\x36\x3a\x2f\x87\xd5\xe7\xb2\xe7\x98\xf1\x4d\x06\x0f\x73\xd8\xd6\x3b\x03\x4b\x7f\x01\x58\xfa\x8a\xc0\xd2\x6b\xf9\xd8\xd3\xb4\x55\x3a\x74\x76\x65\x9f\x23\x52\x20\x68\xe5\xe5\x19\xad\x00\x67\x17\xf9\x5c\x2d\x58\x67\x32\x95\xb2\x75\x17\xb2\xe0\x13\xb4\xa0\x9f\xa1\x12\xc1\xfb\xd4\x81\xcc\xb5\xc6\x6a\x80\x9c\x7e\xab\xbb\x95\xbc\x9d\xc7\x8a\x01\x8d\xe1\xbd\xe4\x04\xb0\x78\xe2\x88\x60\x8d\x47\xc2\x29\x8e\xb7\x8e\x08\xfc\x3a\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\x7b\x97\x0f\xdd\x2c\xe0\x3e\x97\xcd\x74\x14\xd2\xba\x37\x40\xeb\x79\x0c\xa7\x9d\x76\x82\x4a\x61\x2b\xa2\xa9\x49\x6c\xb1\x3e\x2f\x64\x1f\xa2\x44\x68\xb1\x3d\x2e\x84\xcf\x51\x0a\xec\x17\xbf\xae\xa2\x60\x22\xbd\x42\x66\x95\x1c\x93\xb7\xf0\x72\xb0\xa5\xad\x0c\x96\x28\xb5\xe9\x69\x5e\xf4\xa9\x17\xcd\xb3\xbb\x53\xee\xae\xaa\xe6\x87\x97\x2e\xb5\x45\x08\xa6\x16\xb2\x12\xbf\xa2\xaf\x91\x2b\x02\x28\x0f\x2c\x88\x27\x69\x1b\x56\x86\xd2\xe0\xbe\x43\x18\x35\xf0\x06\xfa\x44\x30\xb7\xa3\xaf\x70\xda\x03\x34\x5f\xf9\x10\xa7\x9f\x4d\x80\x63\x38\xba\x63\xec\x56\x5d\x16\xa2\x73\xfc\x7e\x4d\x3e\x42\x2f\x83\x2b\x86\x23\x50\x78\xbe\xc3\xef\xc6\x04\xee\x47\x43\x39\x1c\x7d\xf8\x5e\x95\x06\xf2\x4d\x5a\x08\xea\x04\x1f\xf9\xe2\x70\x68\xb9\x6b\x34\x87\x22\x6f\x1d\x34\x0c\xb9\x07\x4d\x01\x7d\xaf\x6b\x29\xc6\xc5\xfc\x3b\xcb\xff\x5f\x9e\x9a\x0e\x07\xe0\x1f\x9c\x3e\xd2\xff\xbf\xcb\x83\xd3\x63\xcb\xac\x7b\x71\x1a\x2f\xea\x2e\x70\x39\x20\xde\xc7\x91\xe3\x2a\xda\xcf\xa8\x11\xee\x53\x64\xc4\xae\x7c\x64\x79\xb3\xaf\x59\x7c\xc5\x6a\x83\x2d\x3a\xee\x2f\xb8\xcf\x11\xf5\x26\x35\xa6\xef\x22\xc5\x43\x90\x9c\xa9\xb7\x48\xf2\xd5\x1a\x91\xea\xdb\x1e\xa5\x5a\x8f\x16\x30\x49\xa8\x8b\xc6\xf2\x26\xdf\xb3\xe5\x4d\xad\x5b\x7b\x34\xe4\x78\x73\x47\xa3\x96\x4a\x72\xd3\xd7\xae\x8a\xcc\x32\x13\x05\x0c\xa6\x22\x39\xe1\x1d\x7f\xc9\x91\x17\x56\xf1\xc9\x01\x49\x69\xfe\x34\x0a\x23\x18\xb1\x36\x13\x77\x1d\x34\x0a\xa0\x59\x5e\x15\x8c\x65\x1c\x9f\x2a\xb9\xe1\xe7\x6b\x25\x47\xbf\x04\x8a\x8f\x80\x4a\xce\x12\xf1\x43\x88\x72\x63\xe3\xd3\xf9\x5b\xeb\xb6\xef\xdb\x6a\x39\xf4\xf3\x6f\x07\xbb\xd2\x09\xb4\xb9\xfd\x99\x76\xd3\x2f\xc0\x76\x83\x35\x7c\x35\x7c\xa9\xdd\xd1\x77\x5d\x46\x70\xf2\x92\x41\xea\x9e\xf0\x78\x81\xdf\x5a\xb8\x63\x1e\x99\x75\xfc\xc1\xe9\x0b\x62\x31\x45\x7a\x75\xaa\x25\xf8\xde\xa7\x5a\x47\xf0\x59\xd0\xa3\xab\xc0\x90\x93\xef\x87\xfa\x22\xc5\x2b\x8a\x02\xe4\xea\x1b\xc4\xbd\x3c\x0f\x2b\xef\xef\x5e\xbf\xb9\xa2\xe4\xaa\xbd\x13\x87\x91\xae\x0b\x7b\x0c\xf4\x2b\x9b\xf6\x51\x86\xd3\x0b\xf7\x1d\xd3\x60\xa5\xb5\x49\xfe\x46\x62\x16\x7c\xfe\x5b\x1b\xa7\xf1\x37\xfa\x05\x30\x35\x98\x2a\xad\xf2\x0b\xf6\x1c\xfc\xbb\xef\xac\x9d\xe0\x2a\xf2\x88\xec\xf5\xad\x62\x5d\x81\xc9\x61\x14\x5b\x6e\x71\xd0\xb8\x43\x29\xa4\xf7\xf0\xac\x8c\x3a\xf8\xca\x97\x85\xc3\xb6\x82\x43\xe5\x9e\xb1\xce\xde\x35\x8c\x5f\x9a\x0a\x01\x33\xd9\x7f\xf6\xa0\x5c\xd4\xb0\x73\x32\x4d\x2b\x44\x2f\xcb\x45\x95\xe6\xc3\x00\xee\x7b\x53\x4e\x8c\x02\xa6\x8c\x3b\x9b\xb7\x2a\xe3\xb1\xe9\x5b\x61\xef\xfb\x84\x72\x00\x72\x2b\xae\xb5\x00\xc2\x3e\xfe\x1e\x00\xcd\x7f\xc2\x57\x01\xc6\x3c\x45\xb3\x47\x5f\x76\x8d\x3e\xe9\x6a\x35\xed\x0b\x75\xcd\x20\xda\x36\xbe\x20\xa9\x77\x8c\xde\x23\x93\x05\x2d\x03\x9f\xfb\x8c\x72\x50\xa4\x1d\x71\x51\xd8\x09\x4e\x28\xfe\xa6\xe4\xbd\x9f\x7c\x36\x04\xb3\xc9\x7d\x95\xc9\x33\x43\x41\x1d\x18\xfc\x57\x08\xe3\x9d\x56\xa2\x71\x4f\x6b\xd0\xb8\x8f\x80\x8b\x13\xd8\xf8\xf9\x15\x7e\x09\x0b\x71\x23\xe6\xd0\x32\xa5\x22\x9b\xb0\xe4\x8d\x3f\xb8\x11\xe2\xa0\x58\x7a\xc2\x70\x9f\xe1\x9c\x25\x0d\xff\x19\xf3\xb0\x5b\xfe\x00\x79\x70\x10\xf8\xdc\xf0\x48\xf3\xb9\xe1\x77\xce\x7d\xee\xdc\x87\xc7\xa7\xa5\xde\x33\xff\x2d\xc7\xa6\x3c\xd8\xcb\xb7\xd8\xbb\x07\xf8\xda\xec\x77\x41\x8d\xf0\xa3\xe5\x71\xee\xb8\x0d\xfd\x46\xea\xa8\x09\x63\x96\xd1\x96\xa9\x56\x47\x10\xe3\x3e\x95\x18\x3d\x41\x0d\xf4\xcb\x27\x77\xf5\x58\x89\xbe\x91\x3c\x26\x66\xcf\x6c\x1d\x29\x87\x8c\xd6\x06\xc6\x21\xed\xd1\xc7\x83\xf5\x83\x75\x1a\xdb\xee\x3e\xcf\xf8\x0b\xb2\xfd\x08\x67\xbf\x0c\x3c\xfe\x24\x30\x07\x9d\x5b\x95\xf8\x1b\xce\xd3\x8f\x37\x2b\x98\xbd\x83\x0f\x8b\xc0\xe4\xc9\x7c\x98\x02\xf4\xc5\x7c\x63\x0c\x72\xc5\x89\xe3\xbb\xb3\xad\x9a\xbf\xe5\x1a\x14\xa2\xbc\xd3\x37\xb0\x77\xbb\x71\x47\xdf\x91\x8b\x2a\xc9\xe7\xeb\xdc\xb7\xaa\xa6\x95\xed\xb6\x9e\x5b\x44\xbb\x7d\x34\xbb\x88\xbf\x0d\xe5\x40\x8d\xcb\x07\xe6\xf8\xb5\x36\xfa\x99\xbe\xc1\x4f\xb7\x56\x72\xad\x08\xda\x30\x07\x33\x3f\xb3\x8b\x46\x50\x8a\x29\xc7\xad\xd2\xe7\x6a\xcf\xc7\xb2\x7e\x60\x87\x17\x87\x72\x70\x36\xff\x19\x39\x21\x92\x43\xce\x7c\x81\xdf\xf3\x03\x54\xd8\xa9\x14\x18\x97\x1b\x41\x11\x9d\x37\x01\x31\xbd\xfa\xf5\xcd\xe5\x08\x72\x66\x83\x6a\xc9\xcc\x86\x8e\x3f\x20\x1e\x6e\x5f\x71\xe5\xb8\x29\xc0\x7d\x33\x3f\x03\x81\x3c\x3a\x01\xa1\x21\xef\x99\x05\xf1\xcc\x36\xa4\xd4\x56\xe4\x7b\xd9\x31\x4a\x67\xf2\x3b\x06\x0a\x9e\xb0\x14\x28\x7b\xc1\x72\xd2\x6b\x1d\xf6\x59\x8b\x1b\xc2\xf3\x03\x09\x11\x08\xf8\x81\x84\xda\xce\x0e\xcf\xa0\x49\x65\xbd\xad\x0a\x15\x1c\x05\xfe\x9d\x66\x19\xa8\x81\xf8\x96\x0d\x42\x9b\x76\xc3\x24\xc2\xad\x9c\xf4\x76\x86\x5f\xd1\xd2\xe9\x46\xe4\xfd\x22\xb0\x7e\x1b\xf2\x03\xfc\x52\xc3\x80\xd7\x2b\x87\x18\x33\x28\xbd\x3c\xf3\x8f\x7b\xc2\xf6\x34\x9a\xcc\xb6\xba\x29\x9d\xa5\x4a\x67\xf3\x86\xf2\x22\x60\xfe\xf2\x7f\x67\x17\x22\xe5\x23\x86\xfc\xed\xf0\xd1\x24\xc2\xa6\x74\x26\x93\x96\xf6\x15\xac\x87\x01\x5e\x24\x63\x1e\xe3\x06\xad\x7c\x3b\x00\x57\xc6\x3d\x66\xb7\xf6\x11\xa0\x60\x87\xf8\x2f\x72\xf8\xf3\xd9\xf5\xce\xe7\xf2\x6c\xcf\x0c\xa5\x27\x17\xc3\xe0\xe4\xb2\x68\x81\xc5\xaa\x95\xb7\x55\xf8\xdf\x35\xfb\x71\x5d\x49\xb8\xf7\x2c\xaf\x23\xda\x2b\x06\xb9\x6c\xa3\x49\x0f\xef\xa3\x0b\x04\x4d\x56\x30\xf3\xe6\x59\x0c\x50\xfe\x5e\xae\x86\xc0\xad\xf0\xab\xfc\x56\x3b\x9e\x6f\xa6\xb1\xe0\xc0\xa1\xc6\xab\x6c\xef\x24\x27\x80\x99\x7b\x60\xc9\x86\x8e\x10\x47\x0b\x75\x3c\xda\xbf\xeb\x1e\xea\x0f\x43\x59\xc4\x85\x45\x39\xc8\xcf\x6c\x2b\x77\x2f\x46\x41\x18\x06\x1b\x4a\x21\x61\x5e\xf6\x7d\x24\xa7\xb9\xb2\x99\x81\x5b\x51\x83\xcf\xdb\xef\x17\x01\x2c\x44\xf1\xe0\x79\x75\x19\x83\x94\x7f\x29\xc4\x2a\xf9\x28\x31\x0d\x9f\x46\x2f\xf0\x9a\xf9\x31\x08\xa3\x89\xee\xff\x3c\x94\x77\xec\xe4\x92\x94\x55\xe2\x08\x22\x79\x87\x2f\x80\x7d\xd2\xb5\xab\x27\x0f\xc3\xd7\xef\xd8\x22\xe4\x01\xf8\xb5\x3c\x2e\xfc\x51\x9f\xc6\xd3\x71\xc0\xa8\x41\x6d\xfe\x4d\x5f\xd5\x93\xdf\x61\xbb\x62\xf6\x90\xa6\xbb\xff\xe4\x5a\xff\x5b\xa2\xc1\x16\xbe\x09\xcd\xc0\x6b\xfc\x7f\xa4\x21\xf7\x86\x87\xce\xcf\x7e\x8f\xf0\x82\x2b\xd3\x8c\x10\xb9\x3b\x3d\xfe\x44\x83\xa2\x0a\x37\xaf\xf9\x26\x8e\xc7\x13\xfd\xb8\x1f\x51\x51\x53\x13\x44\xe9\xb3\x70\x3f\x64\xfe\x29\x4f\x5c\xc2\x93\x82\xaa\xd3\x77\xb1\xe4\xfb\x17\x3f\xb8\x67\x3c\x93\x8f\x7d\xd3\x6c\x3f\x25\xf9\x9a\xe7\x44\x7f\x13\xbc\x93\x2b\xf1\xba\x88\x49\xa3\x64\x22\x3f\x39\xf5\x3d\x37\xfc\x3d\x69\xa9\xc4\x40\xf0\x38\xdb\xf7\x3b\x64\xc8\x17\x94\x91\xb1\x41\x06\x3f\xb0\x8c\x9f\x05\x7e\x16\xf9\x1d\x7e\x1d\xf0\xeb\x50\x96\x9f\xa5\x32\x38\x0c\x55\x27\xad\x6f\x83\x9c\x3b\xfc\xe6\xd7\xc6\xf0\xf9\x7a\xf4\xa3\x6f\x0f\xda\x0f\x3c\x09\x27\x1f\x6c\x46\xbe\xfd\xa0\x7c\xf9\x94\xc9\x33\xff\x55\x93\x87\xec\x1f\xbb\xd3\x2c\xa4\x28\x87\xbb\xd7\x2c\x49\x3e\x04\x9b\x20\x5d\x56\x1b\x94\x34\xe5\xf2\x38\x34\x53\x92\x94\xd7\xe6\x87\xcc\x8f\x4b\x53\xc8\xf5\xa3\xd2\x54\xf2\xff\x02\x00\x00\xff\xff\x2b\x83\xcc\x58\x76\x8d\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xeb\x72\xdc\x46\xb2\xe6\x7f\x3c\x05\xac\x0d\xad\xec\x08\xaa\x15\xb6\x63\x2f\xe1\x90\xe4\xa5\x49\xeb\x32\x47\x14\x75\x44\x6a\x66\x67\x15\x0a\x0c\xba\x01\x76\x63\xd4\x0d\xb4\x71\x61\x9b\xf3\x6b\x5f\x63\x5f\x6f\x9f\x64\x33\xbf\xcc\xac\x0b\x80\xa6\xe4\x39\x27\xf6\xfc\x21\xab\xab\xb2\x6e\x59\x59\x79\xab\xac\x42\xbe\xdf\x67\x45\xd9\xad\xd2\x67\xe9\x69\xba\xcf\xab\x7a\x5b\x76\x5d\xda\x95\xdb\x9b\xc7\x9b\xa6\xeb\xcb\x22\x7d\x59\xf5\xf4\xbb\xbd\xad\x56\x65\x92\x6c\x9a\x5d\x49\xa0\xaf\xe8\x5f\x52\xe4\xdd\x66\xd9\xe4\x6d\x41\x19\xe7\x96\x4e\xca\xdf\xf7\xdb\xa6\x65\xa0\x5f\x25\x95\x6c\xca\xed\x9e\xeb\xd0\xbf\xa4\xab\xd6\x75\x56\xd5\xf4\xf3\x8a\x52\xe9\xeb\x3a\xe9\x9a\x55\x95\x6f\xb3\xa0\x00\x19\x56\xfe\x53\xfa\x43\x5d\xa4\x57\x7d\xb9\x4f\x9f\x76\xbb\x7c\xbb\x7d\x9e\x77\xa8\xd2\x97\x69\xbe\x5a\x35\x43\xdd\x3f\x7d\x22\x05\xd2\x78\x33\xf4\xd6\xfa\xe5\xd0\x4b\xde\xb0\xb7\xac\x0f\xfb\xa4\x2d\xd7\x15\x4d\xac\xa5\xac\xf7\x9a\x4c\x0e\xe5\xb2\xab\x7a\x1e\xf4\x5f\x24\x95\xdc\x96\x6d\x57\x35\x3c\x9e\x3f\x4b\x2a\xd9\xe7\x6b\x06\x78\x47\xff\x92\xbe\xdc\xed\xb7\x39\x2a\x5c\x6b\x32\xd9\xe6\xf5\x7a\x10\x98\x37\x9a\x4c\x92\x81\x30\x57\xe7\xc0\xd9\x07\x4d\x26\xe5\x2e\xaf\xb6\x8c\x9f\xc7\x9c\xa0\x76\xbb\xee\xd0\x00\x8b\xef\x34\x49\x63\xcc\xfa\xbb\x7d\x89\x21\x3e\xbe\xa6\x54\xb2\xca\xf7\xfd\x6a\x93\x53\xce\x99\xa4\x12\x02\xda\x37\x34\xd6\xa6\xbd\x03\x9c\xfd\x48\x9a\x76\x9d\xd7\xd5\x3f\xf2\x5e\xc6\x7f\x19\xfc\x4c\x76\x55\xdb\x36\x3c\xf5\x0b\x24\x92\xba\x3c\x64\xdc\x0e\xe5\xbc\x2d\x0f\x61\x2b\x5c\xb2\xab\xd6\xad\xcc\x92\x0b\x2f\xf0\x8b\x5b\xe1\xb2\x9b\xa6\xfd\xac\x05\x2f\x38\x39\xaa\x4a\x83\xd0\xd2\xb8\xff\xbc\x26\xbc\x68\xe9\x05\x7e\x44\x00\x5d\x92\x17\xbb\xaa\xce\xf6\x79\x5d\x32\x8e\x4e\xf9\x17\xe1\x85\x7e\x25\xba\xdc\x59\x57\xf6\x7d\x55\xaf\x3b\x2e\x96\xac\xf4\x4a\xb3\x92\xa0\xcc\xe5\xf1\x78\xba\xec\xa6\x2c\x0b\x19\x51\x97\xbe\xa0\x74\xb2\x1f\xb6\x5b\x9a\xfb\x6f\x43\xd9\xf5\x0c\xff\x8e\x7e\xd3\x2c\xe4\x77\x52\x75\x1d\x25\x28\xfb\x35\x12\x09\x2d\x40\xbd\xc2\x90\xce\x90\x48\x92\x8f\x5d\x99\xb7\xab\xcd\xa7\x44\xfe\xa3\x47\x4e\x2c\x16\x8b\xa3\x4b\xc3\xe4\xa0\xa4\x20\x3d\x58\x07\xc9\xaa\x29\xf8\xc7\x19\xfd\xa3\xa6\xab\xba\xeb\x89\xa4\x3f\x25\x9a\x60\x30\x49\x09\x1a\xfb\xaa\xdf\x96\x3e\x13\xfb\xa3\xe3\x75\x48\x5f\x54\x6d\xd7\x3f\xee\x2b\x22\xb9\xf7\x43\x9d\xf0\xfc\x88\x9c\xb3\x62\x69\xbb\xfc\x65\x43\xd8\x41\x76\x4b\xf3\xbb\xb8\xbb\xfa\xd7\x37\x27\xe9\x3b\xda\xea\xeb\xb6\xa4\x74\x4a\x6d\xd0\x3f\xaa\xf3\xe3\x22\xa1\x5a\xd6\xd3\x79\xde\xe7\xcb\xbc\x2b\x3d\x5a\xb9\x50\x68\xd4\x95\x81\x52\x99\x6d\x80\x45\x74\x7d\x34\xdf\x39\x3a\xa7\x36\x74\x77\xb8\x36\xde\xf2\x16\xa1\x7c\xe6\x1a\xa8\xfc\x6e\x5b\x72\x3e\x35\x95\xbe\x7e\xfb\xf6\xf2\xfc\x97\xb4\xac\xd7\x55\x5d\xa6\x87\xaa\xdf\xa4\x43\x7f\xf3\xdf\xb3\x75\x59\x97\x2d\x31\x91\x55\x95\xd2\xce\x68\x89\x08\x52\x22\x4f\x99\xdc\x22\xe9\xba\x6d\xb6\x13\xf4\x5e\x5d\xbd\x49\x2f\x18\xc5\xfb\xbc\xdf\x60\x20\xfd\x26\xe9\x7e\xdb\x32\x8a\x5c\x87\xd7\x9b\x32\xbd\xa9\x68\xd6\x00\x6a\x6e\x0c\x1f\x69\xa1\x63\x5c\x24\x65\xdb\x66\xb4\xef\xfb\xbb\x4c\x2b\x6b\x7b\x63\x48\x69\x82\x48\xa7\x6e\xfa\x74\x59\xa6\xa8\xb3\x48\x12\x1b\xb0\x61\xf7\x74\xbf\xdf\x56\x2b\xd9\xb1\x2f\xa5\xcc\x23\x9a\x59\xb4\x62\x29\x84\x03\xa2\xac\x2c\x40\x17\xf1\xbf\xbb\x66\x68\xd3\x88\x0d\xa0\xfe\xa6\x24\xbe\xbc\x19\x68\xcb\xe5\xc4\x53\xb7\xcd\x50\x7c\x03\x4a\xb5\xd1\x7b\x42\x4d\xdf\x37\x34\x60\x60\xc7\x01\xf8\x2e\x4e\x89\xe2\x58\x2a\xb4\xe5\xae\x21\xee\xe0\x88\xbd\x22\x82\x3a\x54\x54\x48\x33\xed\xf2\x5b\xda\x6f\x7d\x93\xf6\x9b\xaa\x4b\x0b\x22\xb6\x15\x37\x4c\x5b\x63\x20\x7e\x2c\x64\x41\x04\x2a\xa4\x61\x79\xf1\x1a\x00\x6a\x37\x10\x35\x6d\xa8\x31\xe6\xf6\x2c\x9a\xa8\xc9\xb9\x71\x62\x4a\xd4\x0e\xe8\x9b\x28\xb7\x21\xde\xca\xdc\xef\x1c\x09\xfd\x1d\xb6\x4f\xa3\xca\x6f\x6e\x68\x54\x1d\x51\xc5\xab\x74\xb5\x6d\x88\xa4\x3e\xbc\x7f\x43\x95\x37\x7d\xbf\xcf\xf6\x4d\x0b\x32\xbe\xbe\x7e\x47\xdb\xa3\xed\x7d\x6e\x80\x6b\x86\xa9\x87\xdd\x92\x7e\x1d\x36\x15\x31\x81\x3c\x58\x20\xa0\x62\xcb\x02\xa6\x4e\x9b\x7a\x81\xb5\x1a\xda\xed\x68\x19\xa9\x4b\x2b\x39\x32\x3c\x1e\xc2\x13\xfe\x73\xe5\x47\x89\xe9\x76\x24\x85\x0f\x58\x54\x9a\x6a\x09\x69\x42\xb4\xd5\xec\xb9\xdd\x80\xb8\x2e\x35\xc3\x53\x14\x24\x90\x2b\x17\x39\x44\xa5\x90\xf1\x01\x2f\xdd\xd1\x84\x75\x37\x5f\x5d\x10\x1a\xb0\xa5\x91\x7b\xd3\x36\x3b\xca\x7d\x41\xff\x7c\x86\x1f\xfe\x05\xb7\x07\x98\xbc\x28\x88\xcd\x74\x27\xe9\xfb\x17\x67\xe9\x7f\xf9\xf1\x87\x1f\x16\xe9\xeb\x9e\x37\x04\xd3\xc8\xdf\x79\x6d\x29\x29\x02\xd1\x81\xd2\xce\xed\x69\xf9\x1f\x30\x81\x3f\x48\x9f\xa2\xf4\x7f\x94\xbf\xe7\x24\x67\xcb\xc5\xaa\xd9\x3d\xe7\xcd\xbd\xcb\xfb\x45\xc2\x25\x44\x35\x4a\x4e\x57\x65\x5d\x50\x42\xc5\xaa\x96\x05\x5c\x47\xcb\x03\x21\x2b\xd2\x3f\x5b\x35\xf5\x4d\xd5\xf2\x84\x7e\xad\xf3\x25\xe1\xc4\xf4\x02\x62\xc7\x28\x31\xd9\x45\x48\xa3\x8d\x5c\xdd\xdc\x79\x50\x4c\xf5\x2d\x67\xea\x82\x26\xac\x2b\x51\xa3\xaa\x32\x39\x2c\x5f\x21\x1b\xeb\x76\x49\xd3\x6b\x0d\xdf\x9d\x47\x78\x73\x73\xb3\x25\xc6\x66\xcc\x4a\x7b\xb8\x94\x5c\xe1\x5b\x21\x08\x11\xe3\x1e\x9a\xcd\x79\xd5\x01\xf2\xec\xfc\x6d\x5a\xde\x12\xb5\x11\x39\xec\xdb\xa6\x18\x56\xa0\x30\x86\x3d\x49\x59\x4c\x10\x7e\x89\x33\xac\x84\xbd\x05\x7b\x95\x87\xc6\x0c\x61\x45\x40\xb4\x45\x0b\x69\x2f\x13\x04\xb5\xa6\x48\x58\x37\x57\xac\x1c\x86\x65\xb3\x15\x26\xa3\xc3\x2a\x75\xe3\xba\xb4\xdc\xf5\xf6\x2e\x85\xd4\x07\x5d\xac\xda\x32\xd0\xed\xba\x45\xa2\xb2\xca\x34\xc4\xec\xb6\x22\xa5\x22\x58\x2a\x94\x9a\xba\xc8\xec\xe1\xcf\x0c\xc0\x6a\x5a\x37\x5b\xd7\x0d\xec\x92\x3b\xe6\x12\x9a\x3b\x75\xce\xe3\xeb\x30\x04\xf4\xc0\xea\x1e\x11\xe3\x6d\x05\x4e\xa3\xc8\xc2\x58\x09\x63\xe8\x9a\xba\xea\xca\x12\x2d\x50\xfd\x27\xd4\x26\xea\x2c\x54\x85\x51\x55\xc4\xe4\xee\x5f\x9b\x21\x2d\x9a\x94\x05\x01\xd8\x19\xd5\xb6\xa9\xd6\x3a\x7d\x9d\x73\xda\x56\xeb\x0d\xf1\x95\xe6\x70\x22\x48\x3b\x6c\x9a\x92\x69\xe7\xf5\xf9\xb3\xef\x65\x1c\x6b\x66\x6e\xae\x12\xb3\xc5\x7c\xe8\x1b\xa6\x53\x5d\x42\x19\x82\x13\x2f\x80\x9c\x28\x4b\x02\x34\x56\x4f\x4d\x01\x9b\x4a\x6b\xdd\x27\x61\x99\x6e\x10\x0f\x23\xb5\x47\x2a\xae\x6a\x31\xd9\xba\x81\x66\x66\x5a\x0b\xb3\x6a\x52\xa5\xbb\x3e\x5b\x57\x7d\x76\xc3\x1b\x96\xdb\x7c\xc1\x75\x59\x72\x50\x49\xfa\x88\x8a\x1e\xa5\xb4\xeb\x49\x73\x2c\x7e\x4a\x1f\xde\xaa\xb8\xfe\x91\x77\x62\x96\xdf\x12\x2c\x16\x03\x08\x6e\x89\xc2\x45\x5b\x30\xf5\xbd\x68\x88\xce\x19\xe7\xdd\xb0\x07\x47\x57\x09\x7d\x92\xee\x05\xb0\x68\x0e\xf5\xb6\xc9\x0b\xb0\x1c\xda\x5d\x15\x8c\x8f\x65\x55\xe7\x24\x5d\xac\x15\xb0\xb2\x87\x44\x0d\x6f\x2f\xaf\x01\xb8\x6e\x96\x43\xb5\x2d\x0c\x60\x41\x33\xbc\xcd\xb7\x55\xc1\x7a\x96\xae\x7b\xa8\xd3\x58\x56\x25\x63\x59\x35\x2d\x8b\x43\xcc\xc6\x2a\x1e\x91\xc3\x2d\xcb\x37\x64\x53\x5d\x85\x45\x3d\x27\x32\x19\x0d\xb4\xf0\x50\x40\x59\xa0\x82\x62\xaa\xae\x7e\xd4\x63\xa4\xab\x81\xfa\xa2\x45\xe7\x6c\xaa\xd8\xa5\x8f\x9f\xd3\xdf\x84\xc5\xb3\xf0\xbd\xf5\x14\xf1\x5c\x98\x4a\xe1\x20\xbb\x34\x1a\x6a\x44\xde\x8e\xba\x8c\x78\x83\xb9\x86\xe3\x35\x12\xe8\x06\xa1\x57\xb6\xb4\xb6\xb4\xac\xe5\x37\x94\x78\x44\x1b\x78\xbd\xc5\x22\xe4\xd0\x5e\x48\x8d\x6b\x08\x6f\x4c\x20\x27\xb2\x5d\x6e\x68\x6a\xcc\x3b\xfb\xfc\x33\x8d\x2d\x6f\x49\x09\x4b\x3e\xb2\x35\xfa\x29\x19\x44\x01\x6a\xb6\x85\x53\x36\x41\xd3\x4d\x3b\x36\xb1\x3c\x90\xa3\xd7\x8e\xb4\xc8\xd5\x26\x73\xb6\x2c\x23\xa5\x2f\x7f\x87\xcc\x43\x91\x37\x6d\x99\xd8\xb9\x28\xd9\xdd\x61\xb9\x78\x12\x17\x77\x7e\xb5\x48\xfd\xa1\x2d\x42\x2a\xfa\xb2\x61\xac\xdd\x96\x0e\xea\x2c\xcc\x8d\x2b\x50\x5b\xa4\xa8\x69\x53\xb1\x25\x44\x45\x62\xae\x69\xa9\x98\x6c\x64\x8a\x7c\x54\x1b\xfb\x53\x62\x1d\x44\x4d\x26\x1f\x89\x19\x90\x5d\x22\xec\x25\x63\x6b\xcc\x16\x87\x86\x22\x3c\x87\x0d\x33\xe5\x07\x5e\x0e\x6e\xca\x3d\x8b\xcc\x5d\x87\x55\xdd\x12\x64\x71\xa7\xba\x97\x5b\xdf\x9f\x85\xd3\xd2\x82\x13\x7f\xfa\xc6\xac\xf7\x3f\xd8\xc4\x2f\x15\xad\x24\xea\xc7\x92\x83\xe5\x35\x6d\xb5\x3d\xb0\x4f\x9b\xe4\xee\x24\x8d\x64\xd0\x26\xef\x88\xfb\x92\x80\xd3\x6a\xc5\xc2\xac\x03\x5e\xb5\x7c\x25\x24\x0f\x4b\x1e\x44\x2a\x35\x9b\x76\x2c\xd2\x78\x84\xc2\xa0\xb4\x17\x27\xf0\x21\xce\x43\xa9\x3f\xd3\x27\x21\x6c\x57\xb2\xce\x97\xed\xc4\x42\x97\x5f\xe9\x45\x99\x90\x62\xb2\xa6\xfd\x68\xf4\xf6\x8c\x4d\xb2\x35\x34\x54\x25\x37\x06\x28\xfb\x90\x83\x2a\x84\xe5\xfc\x6c\x1e\x0b\xda\xd8\x07\xd8\xab\xb4\x35\x27\xe8\x27\x59\x43\xc5\x0b\xe3\xc8\x22\x70\xa1\x9f\x74\xb4\xd9\x3d\x12\x4f\x53\x5a\xfd\x34\x84\x52\x3d\xd1\x4f\x8b\x2b\xf0\xa6\x7f\xba\x7c\xfe\xb0\x7b\xfa\x64\xf9\xdc\xb1\xc6\xd5\xa6\x5c\x7d\x16\x5b\xa2\xaa\x97\xcd\xef\x30\xb8\x68\xe1\x19\xc7\x35\x6f\x91\x87\x45\xba\xa1\x52\xe8\xe4\xb4\x95\xa9\x1a\x21\x9e\x4b\xa3\x45\xa3\xc1\xf0\x8e\x5f\x98\xef\xc7\x09\x07\x23\x24\xaa\x8d\x4e\x64\x64\x64\xe6\x63\xef\x70\x56\x40\xb7\xa7\x9c\xcb\x94\x0b\x36\xef\x49\x17\xf3\xdd\x56\xbb\xaa\x9f\x90\x0e\xf3\x91\x5c\x49\x50\xed\x7c\xc3\x25\xda\x02\x36\x30\x16\xe2\xc6\xd4\x0c\xc9\x4d\x23\xa7\x43\x4e\xe6\xcd\x8f\x29\x91\xd0\x40\x52\x88\xe7\x44\xc3\x24\x76\x9c\xb3\xe0\x25\x03\x21\xef\xb2\xa1\x56\xb4\x96\x85\x11\xd3\xab\x0a\x42\x82\xfb\x35\x92\x0f\xa0\x0c\xf3\xaa\xe7\xa6\xdf\x3a\x8c\x7f\x47\x4a\xf1\x8d\xab\xc6\x9c\x9b\x07\x54\xb1\x4e\x96\xcf\x2e\x1e\x71\xb6\xba\x14\xf3\x0a\x18\x60\x38\x5e\x68\x32\x0e\xfc\xea\x91\x85\xf1\x99\x72\xb0\x20\xcb\xa1\xef\x1b\xd6\xb9\xb7\x4c\x35\x52\xc7\x46\x7d\x06\x40\x98\x11\xbe\x3d\x2c\x48\x88\x27\x59\x9b\xd2\x74\xe0\xcc\x7b\xe1\xd4\x5a\x19\xcd\x4e\x45\x9d\x03\x2b\xc4\x5c\xcf\xeb\x3b\x23\x65\x22\x08\x1e\x05\x77\xd8\xcf\x8f\xe5\xdb\xb6\xfc\xce\x8f\xc6\xed\x19\xd4\xb0\x11\x49\xf5\x60\x3f\xbd\x47\x29\xa8\xc4\xed\x3a\x93\x5c\xea\x64\xf1\xf4\xd1\xc6\xe8\x45\x39\xef\x0c\x62\xb0\xa4\x36\x16\x40\x34\xcd\x02\xb5\x17\xa3\xbe\xbc\xb9\x33\xc5\x60\x1f\x0f\xd9\x0b\xa0\xbe\x69\xb2\x6e\x23\xa6\xa5\x0d\x2f\xdd\x96\xf5\x3a\x72\x13\xc0\x07\x0b\xa2\xfb\xaf\x2c\xe6\x48\x81\xcf\xb7\x9f\x92\x3b\xf8\xa3\xfe\x4a\x1c\xbe\x86\xbf\xae\x49\xa8\x40\x8c\x91\x0b\x24\x08\x94\x2d\xa3\x4f\x09\x8b\xc0\xb7\x23\xb5\x8e\x45\x84\xe6\x05\xfa\x05\x8a\x7e\x8d\xb4\x35\x5b\xc2\xe4\xdd\x8c\x0a\xf8\xbe\xf4\x7e\x49\xa4\xdc\x14\xc9\x88\xbe\x36\x53\x87\xec\xe9\xcf\xa5\x36\xfe\x8a\xcc\xe6\xee\x03\xcc\x5e\xb1\x61\xd9\xe0\x7d\x97\xdf\xb1\xd2\x25\xd9\xfa\x03\x05\xd7\x65\xbe\xd3\x51\x72\x52\x9a\x38\x25\x71\xa6\x99\x9c\x24\x29\x17\x78\x35\x12\xa8\x1f\x36\x05\xd1\x45\x54\xec\x3b\xf5\xbf\x54\xa7\xe7\xdf\x26\xae\x98\xbf\x25\xf9\x76\xbf\xc9\x21\xff\x03\x30\x78\x1d\x08\x08\x0b\x9f\x02\x04\xb4\x30\xec\xca\xb6\x5a\x71\x92\x2b\x7c\xfb\x38\xfb\x0e\x0e\x27\xda\x28\xa4\x08\xc6\x8d\x15\xb4\x49\xfe\xa9\x06\x39\xcd\x4a\x62\xd8\x6e\x57\xfd\xc3\x66\x11\x35\xc7\xf9\xc4\x73\x08\x02\x2a\x99\x87\x72\x40\x10\x8c\xac\x9e\xf5\x29\xf3\x85\x9e\x55\xc0\xa8\xe9\x5d\xfe\xfb\x97\x2a\xee\x9a\x99\x7a\xc2\x0a\x7c\x25\xdb\xf0\x3a\xc5\x98\x1d\x10\x3c\xfb\x37\x8e\x42\xd3\xd2\x33\x48\xfd\x99\xa4\x5a\xed\xc0\x3e\xc8\xef\x14\xbf\x7f\x32\x17\x38\x89\x10\x55\xa0\x53\xe7\x0c\x27\xe1\x5c\x30\xdf\x84\x22\xbc\xf0\xdb\x2d\x54\x8e\x1d\x39\xb3\x1a\x69\x26\xbf\x63\x1c\xa4\x51\x8a\x9d\x40\x24\xb5\xf0\x7e\xfb\x8c\x65\x64\xc6\x4a\x67\x1d\xaa\x96\x4e\x7a\x9a\x7c\x01\x84\xf8\x7d\xb3\x69\xbd\xd1\x86\x3b\x5a\x9d\x54\x81\x99\xda\x97\x53\x47\xde\x91\xfa\x3d\x6d\x99\x99\x06\xdc\x4e\x3a\x5a\x51\x16\x13\x95\x68\xe6\xc5\x84\x17\x4c\x2b\x32\x18\x99\x3d\xdb\x6d\xb9\x66\x57\x93\x75\x1c\xf5\xa6\x24\x44\xc2\x40\xc0\x42\x02\xf2\x18\x76\x8b\x15\xae\x6b\xa8\xc4\xbb\x35\x8a\xcd\x27\x1a\x35\xa9\xe3\x94\xe4\x9a\x81\x11\xa5\xc3\x50\x49\xbe\x63\x7b\xa1\x1b\x98\x35\xb3\x6d\x21\xda\x49\xbc\x1a\x2c\x78\xd1\x54\x89\x2e\x8e\x37\x4f\xb4\xc8\x06\xd7\x97\xda\x07\xd8\x1f\x6c\x3a\x34\xb7\xa7\x0d\x6b\xe3\x0e\xe8\x58\xb3\xce\x20\x2c\x7f\xaf\xe0\xb6\x7b\x59\xb1\x3b\x08\x26\xa1\xb3\x84\x51\xb6\x48\xb6\xc4\x0c\xd8\xf4\x90\x59\x89\x1e\xdb\xdc\xb2\xe5\xc6\xfd\x71\xa9\xd4\x13\x37\x9e\x4e\x8a\xd7\x59\x8d\x4b\x32\xe6\x9a\x43\x59\x9c\x90\x88\xe7\x1a\x34\x4e\xb0\x8d\x7c\x7b\xc8\xef\x3a\xf8\x48\x8c\xe3\xb0\xcb\x52\xaa\x33\x3b\x21\x05\x60\x8d\x51\x85\xfe\x69\xda\x71\x86\x89\x8e\x78\x27\x0b\x0f\x27\xa6\x0f\x30\x0f\xc1\x2d\xd4\xeb\x42\x56\x37\x8b\x3d\x88\x58\x95\x35\x6c\xda\xb2\x21\xc8\x3a\xbe\x14\x07\x0d\xe1\xc8\x43\x39\xff\x4c\xdd\x13\x56\x8f\xa8\x1b\x56\x56\x88\x1f\x0b\xae\x49\xff\x23\xcc\x62\x48\x81\xaf\x60\xa0\xf6\x1f\x8b\x5e\x5c\x11\x0e\xd9\xce\xf2\xe6\x33\xcb\x26\x5a\x15\x73\xec\x4a\x3e\x8c\xdf\xa4\xeb\x69\x0b\x30\xa6\xed\xb0\xed\xaf\xa2\x5f\xa9\xc9\xcc\xa5\xd8\x62\x40\x53\xb7\xa9\xf6\x69\x03\x67\x61\x88\x42\x4f\xb6\x81\x8a\x49\xd8\x28\x4a\xe8\xdd\xec\x35\x6d\xf3\xba\xbb\x29\xe1\x3e\xdd\xa5\x37\x7c\x12\xb4\xd0\xae\x59\x63\x95\x43\xb7\x23\x3d\x8b\x0d\x83\xae\x43\x69\x81\xb5\x0b\x16\x2a\xee\x9a\x60\x6e\xd1\xb3\x8e\x01\x58\xf5\x2d\x75\x36\x06\x26\xb3\x09\x0a\xa0\x35\x46\x87\x14\x36\x9a\xdb\x32\x44\xc4\xcd\x3f\x3b\xf3\x00\xeb\xea\x21\x16\xb7\x7a\xbc\x4c\xd2\x29\xbc\x15\x38\x63\x5a\xde\xc5\xb3\xe7\xaa\x8e\x02\xf8\xc4\xe3\xb6\xd4\x5e\x78\x63\xf0\x5e\x19\x35\x08\x2f\x85\xb7\x15\x92\x3e\x87\xc9\xb7\xa4\x21\xae\x36\xd1\xee\xbc\x46\x49\x2a\x25\x93\x0d\x9a\x7c\xe4\xae\xc9\x8c\xdf\xe4\xf5\xba\x64\x57\x17\xb5\xc4\x22\x0f\xbf\x55\x43\x97\x4c\x1a\xf0\xba\x95\x34\x3b\xc8\xad\xca\x8a\x36\x64\xb3\xbb\xb7\x66\x55\x9b\xc3\xa6\x4b\xfe\xde\x90\x0e\x01\x4f\xef\x9f\x28\xc5\xda\x6f\x9d\x44\x67\x3b\x23\x3f\x03\xcc\x83\xaa\xbf\xc3\xa1\xd3\x92\x74\x60\x31\xd2\x28\x87\xcc\x5c\x70\x07\x78\x2e\x5e\x58\x9a\xd6\x23\x67\xa6\xc7\x5b\x5b\x52\x0a\x27\x6e\xa4\x17\x96\x4e\xd8\x4a\xde\x2d\x20\x1c\x58\x99\x86\x73\x3a\x10\x09\x8f\x1e\x76\x8f\x78\xc1\xac\x6c\x11\xc0\xef\xf3\x9e\xd8\x62\x2d\x26\x8a\x70\xa8\xb0\xaa\x16\xbb\x26\xc0\x55\x04\x6c\x81\x13\x5d\x41\xc5\xa7\x84\x6c\x49\x1c\x01\xd2\xd4\x24\x35\x7b\x7c\xa9\x2c\xa6\x53\x9d\xf7\x5f\x28\xa9\x1e\x91\xd4\xc5\x31\xa8\xa9\x8a\x63\x3c\x3b\xf4\xe9\xe2\x33\xa0\x2e\x51\x17\x50\xec\xff\x51\xf2\x7e\x96\x9e\x4b\xc2\x8c\xde\xa1\xc2\x9c\xaa\x22\x49\xf6\xc0\x7b\x16\x8c\x56\x16\xc2\x0d\x5a\xfe\x07\x3e\xe8\x76\x2c\xd9\x09\x0b\xd2\x0a\x08\xd7\x8e\x04\xa0\x05\xf0\x19\x6a\x60\xb0\xb1\x73\x15\x96\x5c\x1d\x1c\x77\x90\xbd\xcb\xf5\x18\xec\x50\x2e\x53\x76\x77\x12\xe1\x90\x5d\xa4\x13\xdd\xe5\x64\x52\xdd\x56\xb9\xf3\xcc\xd0\x6a\xf1\xc1\xbb\x4a\xd1\x17\x7c\xe8\x8e\x93\xcc\x69\x08\x06\x9f\x47\xe8\xd1\xc3\x1b\x4d\x26\xc3\xbe\x60\x9f\x96\x9f\xf0\x07\x64\xb8\x09\xc7\xe5\x81\xb7\x11\x53\xb7\x6a\x4e\x9b\x11\xf0\x22\x55\x38\x1e\xd9\xdd\xc2\xb6\xcf\x4c\xec\x86\x6e\xa1\x62\x0c\x12\x3a\xf9\xa5\x48\x8d\x56\x03\x58\x08\xef\x01\x7a\xe5\x5c\x0f\x08\x21\x59\x99\x6e\x9a\x43\xba\xad\xea\xcf\x9d\xe2\xd7\xf9\x43\xcc\x4e\x4e\xcf\x91\x41\xc0\xe2\xa9\x61\xb5\xaa\xaa\x87\xf2\xe7\xc4\x52\xe2\x88\x47\x72\x1a\xa7\x50\x8a\x54\x1c\x33\x03\x3d\x3f\x39\x43\x76\x7a\x8a\xec\x59\x58\x6f\xe7\x6a\x15\x9c\xe8\x32\xfb\xd5\x83\x9d\x9b\x92\x15\x6c\xb0\xc3\x97\xca\x85\x08\x3f\x4d\xd3\xa9\xef\xd1\xb3\x1f\xce\x83\xa3\x42\xa1\x74\xb5\x1c\x84\x2e\xa6\x0c\xc6\xce\x29\x08\x8a\xcd\x43\x52\x96\x74\x3c\xd8\xdb\x59\xb5\x93\x58\x9b\x0f\x5a\x2a\x47\xf6\xce\xae\x40\xf1\x82\x2c\xe5\xd1\x64\xc2\x13\x83\xb7\x84\x4b\x99\xbe\xf1\x51\x2b\x3c\x31\x75\x41\x10\x02\x61\x1f\x0d\x76\x4c\x59\xda\x80\x39\xbf\xbf\x40\x60\x46\x3e\xe1\x41\x8a\xf0\x66\xc7\x5a\x9a\x6d\xa4\x14\x9e\xa9\x1b\xdf\x95\x33\x66\x83\xf2\xb7\x38\xf2\x1a\x7b\x1b\x22\x4b\x49\x5b\x38\xaa\x4d\x8f\xc6\x34\xd9\x3b\x56\xef\x40\x73\x0b\xa7\x63\x04\xbf\x10\xea\xcf\xe1\x19\x96\x53\xb1\xa1\x13\x7d\x92\xbb\xc2\x91\x9a\x34\x41\x08\x80\xc1\xd1\x79\x3b\xe3\x54\xb8\x11\x3b\xc4\x25\x42\xc8\x01\x68\x90\x50\x6c\x4f\x96\x76\x86\x1d\x32\xb6\x7d\x4b\x8b\x4e\x82\x77\xe4\x89\x9a\xb0\xb4\x88\x7d\x81\x7b\x35\x38\x90\xf5\x5c\x8b\x2c\x48\x6d\x8b\xf9\x3f\x52\x96\xe3\xbd\x97\x25\x7b\xb7\xac\x53\x65\xd6\xae\x54\x58\x76\x42\x63\xc0\x1e\x28\x9d\x7b\xa2\x00\x26\xe2\x21\x02\x2c\x04\x31\x4f\xa8\x65\x67\x91\x9f\x17\x1e\xdb\xff\x30\xdf\x6e\xd4\xa1\xf3\xed\xfa\xa1\x8e\xc8\x86\xc7\x38\x92\x38\x13\x02\xa2\x02\xc8\x5f\x5d\xfa\x40\xaa\xea\xe2\x3b\xe1\xca\xdd\x88\x4e\xcf\x68\xa2\x2c\x88\x60\x25\x02\x70\x58\x56\xf0\x10\x74\x81\xc0\x1d\x51\xf0\xbb\x89\x1b\x32\xe6\xaf\xa7\xb0\x60\x08\x2b\x02\xcb\xfa\x00\x0b\x34\xd1\xfe\xd4\x22\xda\x31\x22\xe4\xd8\xd5\xc5\xa1\xdc\xc9\x89\xa3\x57\x89\x4e\xd4\x6c\xd8\x54\xeb\x0d\xcd\xab\xda\xf1\x91\x23\xb8\xb6\x9d\x6b\x79\xab\x8e\x7f\xd1\xc6\x6b\xd6\x35\xfb\x70\xb8\x87\x05\x26\xe3\xb8\xed\xd3\xae\x6f\x9b\x7a\xfd\xfc\xbc\x61\x73\x8b\x3d\x21\x2c\x2a\x7e\x7e\xfa\x44\xf3\x89\x65\xf0\x1a\x72\xbc\xe3\xcb\xaa\x7f\x35\x2c\x1f\x75\xe9\x9a\x74\x03\x08\x90\xa7\x79\xba\x69\xcb\x9b\x67\x0f\x1e\x76\x0f\x9e\xeb\x39\xb3\x44\x05\x1d\x6a\x87\x96\xa7\x4f\xf2\xe7\xac\x3d\x77\xcd\x96\x94\xda\xb8\x4a\xb3\xdb\xc9\xfa\x12\xfb\xdb\x09\x24\xc6\x8f\xa3\xe9\xb2\x06\xe6\xca\x56\xf1\x43\x0d\x2e\x1c\xad\xfb\xf5\xd1\x65\x33\x35\x29\xf2\x2f\xa8\xa2\xc2\xc0\x38\x71\xab\xfb\x80\x69\xb2\x6f\x21\x75\xd5\x20\x60\xa7\xd5\xb0\x90\xec\xae\xf1\xae\x0d\x73\x4e\x40\x83\x46\x1b\x56\x9f\xaa\xd2\x48\x44\xd3\xe0\x3c\xeb\x53\x04\x27\xa5\x8c\xb4\x02\xfa\x65\x9e\x6a\xae\x4c\x28\x8c\xde\x09\xc2\x04\x1b\xd1\xf0\x37\xc6\x00\x64\xf6\xc1\xf6\x87\xfe\x72\x8a\x0a\xa4\xbf\xc0\xea\xd6\xb9\xbc\x51\x1b\x1b\x05\x24\xa8\x02\x7d\xfa\x6d\xa3\x67\x12\xa9\x65\x62\xd4\xa4\x40\xf7\x65\x44\xee\xdc\x1d\xfd\x43\x2b\x44\x9b\x30\xdb\xff\x5b\x5a\x90\x09\xee\xb7\x93\x29\xa4\xba\x99\x4e\xfd\x5e\x18\xab\xa8\x7a\x9a\x77\x74\x3f\x05\xdb\x48\x5b\x75\x61\x1a\xe2\x3e\x28\xa1\x08\x2e\xab\xba\x90\x6d\xa3\x54\xaf\x71\x0f\x8e\xdc\x49\x98\xd6\x0c\x04\x1f\x1f\x27\xf4\x77\x80\xfc\xab\xa8\xfd\x80\x36\x88\x5b\x0d\x75\xc0\x2d\x64\x3b\x66\x7d\x23\xbe\x2e\x9d\xe4\x3b\xb2\x37\x10\xf3\x74\x2a\x0d\x5e\x73\x71\xa7\x71\x77\x7a\x28\x6a\x55\x5e\x6a\x26\x16\x1c\x80\x09\x8a\x3a\x87\x08\xfc\xf2\xa6\xa7\xb5\xa2\xe7\xd5\x1a\xcd\x84\x35\xa0\xad\x67\xfc\x61\x23\xe7\xd7\xe9\xe9\xbb\xd7\x8b\xc4\xf5\x67\x6d\xfe\x9a\x93\xce\x24\x23\x38\x38\xab\x97\x49\x69\xcc\x5f\xdc\x69\x89\x54\x37\x27\x1b\x6a\x82\x9c\xdd\x9c\x26\xf3\x91\xb9\xc4\xe5\x82\xe2\xb2\x0b\x3c\x01\xd2\x1b\x46\x32\xe6\xcc\x6e\xa6\xdf\x10\x62\x9d\x3f\x8a\x25\xc2\xfe\x8e\x79\x5d\x10\xa9\x92\x0b\x82\x0e\xe0\x56\xa3\x10\x19\x82\x84\x35\x9c\xb2\x7e\xdb\xba\xbd\x62\x03\xd6\xdd\x12\xe6\x06\x94\x00\x32\xdc\xdb\x7a\x46\xe3\xf5\x82\x2e\x1c\xb4\x18\xe9\xa3\xfd\x99\x0a\x1b\x95\xf3\x57\x1e\x97\x68\x66\x8a\xe3\xd0\x34\xa3\x36\x0f\xe5\x96\x23\xe9\x74\x40\xfe\x10\x52\x0d\xb1\xe8\x08\x52\x81\xdc\xe1\x23\x47\x2e\x3a\x4d\x42\xd6\x36\xf4\x8e\x58\x63\x04\x41\x04\x8c\x53\x47\xb1\xa0\x8c\xdd\x9f\x9d\xbe\x7d\x7b\x79\xed\xb9\x3c\x53\x56\x5d\x90\x2c\xfa\xc6\xc5\xdf\x4c\xc6\x65\x51\x38\x18\x1f\x02\xb2\x22\x08\x1f\x07\xa4\x35\x8e\xc1\x85\x1b\xdf\x5a\xa7\xe4\xba\xc1\x6e\x6e\x78\x2c\x52\xa3\x88\xc7\x5f\x1c\x33\x50\x92\x8f\x2c\x1e\x3f\x25\xe6\x63\xbc\xe4\xff\x49\xe8\xa6\x0d\x5c\xe3\xa0\x66\xef\x41\xf7\xe1\xa6\x34\x80\xa6\x98\xb8\x6d\xc1\xf6\x86\x1c\x1a\x28\xe1\xbe\x01\x23\xbd\x49\x71\xba\x76\xc2\x5e\xa8\xa6\x05\x0d\x32\x72\x87\xba\xfa\x6d\x80\x7c\x67\xfd\x93\xf4\x15\x0e\xeb\x5a\x56\x5b\xe1\xb6\x7f\x76\x3f\x24\x9f\x53\xa3\x58\xcc\xa0\x73\xfa\xf5\xb4\xdb\x73\xa4\x1a\x71\xdb\xee\xd9\x83\xa1\x4a\xd9\xa9\xc1\x91\x21\x0f\x9e\x93\xb6\xc8\xa7\xd4\xb4\x7c\x04\xf1\x9c\x1d\x13\x9f\xcd\xdf\x35\x8e\x92\x47\x99\x05\x52\x72\x19\xa2\x29\x91\x3b\x33\x0a\xd5\xad\xc5\x61\xd1\x8b\xa7\x2b\x0d\x66\xc1\xdc\x99\xa9\xfb\x73\x19\x62\x4a\x4f\x24\x74\x5d\xcf\xe9\x5f\x5b\x21\x1a\x54\xf2\xf9\xca\x42\x1a\x5c\x57\x70\x99\xbe\xdf\x2b\x5a\xef\x15\x1b\x54\x8b\x75\xd5\x93\x4e\xcf\x57\x3b\x60\x69\xd3\x86\x21\xa6\x88\xdb\x0e\x92\xb2\x9c\x99\xba\x06\x8b\x8a\x55\x5d\xf5\x19\xcb\xe9\x9d\x44\xb0\x53\xb3\xf9\x56\x74\xa0\x18\xd1\x72\x60\x9c\xbe\xff\xf5\xf4\xfc\xe2\xd7\xc5\xae\xb0\x80\x16\xc5\xa7\x46\xb2\x04\x18\x2d\xca\x9b\x7c\xd8\x9a\xab\x0d\x13\x46\x46\xfa\x0b\x32\xf4\xf2\x03\x59\x45\x84\xbf\x5b\x11\x89\x72\x1d\xe2\xb5\xe5\x7c\xcb\x3a\xef\x77\x47\x1c\x50\xe3\x53\x9c\x3f\xee\x87\x1a\xb7\x70\xbf\x3b\x8a\x8f\xf8\x33\x76\x2e\xa6\x1a\x06\x12\x1d\x7e\x26\x7a\x39\xc3\x82\xf0\xdd\xed\x0c\x89\xc2\x0f\x4b\x8f\xd3\xb2\xd9\x46\x79\x4c\xd2\x64\x03\x97\xdb\x14\x7f\x1f\x2f\xb7\x43\xa9\xc9\x36\x2f\xaa\x81\x94\x43\xc1\xa3\xd1\xb8\xf5\xa4\xcb\x72\xa1\x77\x46\x82\x75\x51\x88\x05\xa2\x97\x33\x33\x03\xf8\xdc\x9c\x55\x6c\x35\xfd\x1c\x94\x1d\x04\x20\x1c\xd5\x42\xe2\x5e\x4b\xa6\xc4\xa8\x22\x20\x0e\xba\x76\xec\x33\xb5\xe3\xfa\x3c\x8c\x37\x4f\x64\x53\xd8\x4e\xd3\x2d\x72\xe3\xf6\x1a\x22\x97\x39\x2c\x35\xde\x64\xb8\xde\x12\x60\x2a\x0c\x26\x61\x6e\x56\x30\x3b\xde\xdf\x65\xec\xb9\x01\x07\xde\xdf\x25\x08\xb9\x20\xf9\x95\x41\x3c\x4a\x26\xf8\xe1\xb6\xda\xcb\xe5\x28\x2a\xa8\x4a\x89\x9b\x44\xe2\xf2\x5f\x12\x41\x8a\x5b\x21\x2c\x34\x6e\x4c\x71\x01\xf1\xdd\x9f\xc1\x9e\x7a\x56\xcf\xc5\x93\xfc\xec\x41\xb6\xa4\x3d\xfa\xf9\x41\xa0\xae\xf3\xdd\x2a\xd6\xd1\xbf\x21\x45\xea\xa0\xe7\x9d\x1f\x24\x95\xd8\xef\xbf\xe0\xd7\xc0\x71\x78\x72\xb8\xca\x89\x44\x7f\xb1\x43\x36\xd1\x2b\x3d\xcc\x8c\x12\x56\x48\x95\x6d\x90\x32\x1a\x72\x8e\xdf\x06\x9e\xa5\x58\x1a\xcf\xd2\x7f\xe5\x5f\xe9\x4b\xfe\xa5\x53\xe1\x6d\xec\xf6\x28\x56\x78\xb4\xb1\xc3\xc0\x34\x70\x1c\x8d\xee\xf4\x7b\x5a\xa2\x59\x02\xec\x6b\x18\x8b\x01\x72\x08\x74\xb2\x1f\xf8\xc8\x9e\xd7\xdd\x7a\x7b\x47\x39\x88\x27\xe7\x4c\x16\x59\x41\x0b\xce\x5b\x1f\xb5\x91\x38\x56\xa1\x2c\xa2\x6f\x4b\xa8\x57\xf4\x4f\xcb\x32\x02\xce\xfa\x1c\xfe\x59\x01\x22\x92\xfb\xcf\xe9\x35\xe5\x28\x44\x19\x16\x25\x0a\x8a\xf2\xf1\x25\x22\x6c\xa3\x0e\x1c\x97\x13\x44\xf2\xdb\xb2\xeb\x09\x45\xb0\x75\xdd\x8f\x84\xc7\x58\xf5\x12\x39\x88\x54\xa2\x71\xad\xe2\x83\x97\x64\x02\x0f\x67\x9b\x73\x94\xd8\xfb\xfc\x20\x3f\x09\xd3\x7a\xeb\xe8\x95\xa4\x24\x1b\x71\xcf\x02\x8a\xe8\x68\x07\x0f\x31\xae\x34\xfc\xce\xd2\x89\x0d\x60\x31\x1d\x88\x95\x8c\x2e\x3d\xa5\xab\x51\xf9\x8d\xa8\xf7\x2f\x58\xb9\xb7\xbc\x1c\xfc\x2b\xb5\x28\x0e\x97\xbf\xa3\xed\x2f\xce\xbc\x0b\x49\xb9\x92\x42\x02\x8c\xce\xf9\x7e\x9d\xe5\x59\x08\xe7\x25\xff\x77\xb9\x44\x30\xba\x7f\xe8\x7f\xa2\x98\xe7\x5c\x35\xe4\xe4\x96\x95\xcf\x5e\x8c\xd7\x22\x28\x5a\x11\x82\xdb\xcc\x01\x9c\xf1\x4f\x61\x81\x11\x98\x5b\xbd\x70\xf1\x42\x00\xe2\xa5\x1c\x5d\x0e\xcd\x4b\x93\x61\x71\xdd\x48\x1f\xb2\xc5\x30\x0c\x2b\x56\x8b\xdd\x6d\x88\xf1\xe8\x7d\x45\x9a\x5a\x54\xd3\x15\x66\xfb\x6d\xbe\x2a\x5d\xc0\x2b\x80\x20\x75\xf8\x7e\x5a\xd4\x8d\x6b\x4c\x3b\x8b\xda\x23\x55\x96\x03\x09\x96\x54\xfc\x90\xf8\x15\xfd\x72\x95\xb7\xec\xe1\x75\x45\x67\xfc\xb3\xb0\x42\x22\x2e\x8e\xb2\xb4\x96\xa3\x26\xc3\x32\x12\x90\xcc\x7c\xc5\x45\xf9\x96\xad\x05\x4e\xf3\x65\x84\x99\x1a\xf7\x22\x7c\x0c\x73\xb4\xe5\xdd\x91\x9a\xf7\xac\x96\x42\xa8\xa4\x85\x7c\x9d\x96\x2c\x38\xbc\xd9\xed\xf8\x53\x1c\x2a\x62\xd7\xcf\x81\x4a\x07\x1c\x0f\xc6\x81\x8e\xbe\xcb\x42\xed\xbe\xb9\x4a\xb2\x5a\x45\xb6\xbc\xd3\x3a\xb2\x5e\x05\x1f\x59\x1e\xa9\xb2\xe3\x73\x49\x88\x11\xad\x72\xe1\x32\xc2\x2a\xbc\xc8\x68\x98\x20\x24\x9d\x3e\xfc\xf8\xfd\xa7\x8e\x5b\x76\x6e\xa1\x27\x0f\x3f\xfe\xf0\x89\x64\x0d\xfe\xb1\xb0\xb1\xda\xfb\xb6\xbc\xad\x9a\x01\x77\x28\x35\xe9\xa9\x11\x91\xd4\x6f\x39\x6a\x5a\xb3\x64\xd9\xcd\x22\xf1\x64\x19\x97\xaf\x9a\x6d\xe3\xc9\x16\xbf\xc6\x00\x62\xfa\x3c\x2c\x46\x3b\x53\x8a\x41\xb6\x6e\x31\x1e\xe2\x48\xaa\x1e\x2d\x88\x40\x96\x45\xc5\xed\xfc\x4a\xff\xe2\x82\xd1\xf1\x5b\x5c\xe8\x22\xef\x64\x80\x88\xbf\xb3\x0b\x40\xd3\x56\xf4\x10\x0b\xa0\xce\xf6\x9a\x05\xf3\xaa\xba\x3a\x5c\x49\x72\xca\x26\x82\xaa\xa6\xe7\xcf\xcc\x92\xab\x5a\x6e\x41\x71\xdb\xec\x95\x44\xa9\x9c\xcf\x69\xcb\xc7\xcf\x8d\xe6\xbb\xf6\x26\xb7\x8c\xd4\x47\x3e\xab\xcd\x17\x3b\xbc\x70\x81\x16\x22\x62\x9f\xb7\x65\x26\xa7\x00\x2a\x2a\x38\x47\x8f\x34\xba\x79\x38\x9b\xa8\x01\xf7\x87\x26\x75\xe2\x94\xe5\x33\x3c\xa5\x79\xca\x95\x2d\x7a\x17\xde\x7b\xad\xbf\xd0\x66\x69\x97\x93\xf6\x48\x4a\x7e\x67\x6e\x33\xf9\x71\x63\x5e\x22\x27\x55\x03\x61\xe0\x99\x47\x50\x3c\xc3\xe9\x82\xd2\x79\x6e\x37\x06\x28\x44\xe7\xe1\xc4\xc3\x2e\xea\x9b\xb4\xa9\xa1\xcc\x54\x9e\xd1\x38\xe9\x57\x8a\x5f\xe3\x21\xb0\x64\x9b\xeb\xdb\x5a\x1e\xcd\x88\x56\x6d\xb9\x21\xad\x54\x02\x51\x85\x81\x07\x6a\x05\x2d\xbb\x86\x58\xa8\xff\x41\x97\x3e\x6a\x7e\x24\x6c\x66\xb1\x63\x1b\x16\x31\x9e\x61\xc1\x8c\x6d\x19\x96\xfa\x49\x9f\xd3\x8c\x59\x90\xa7\xdf\xda\x0d\xc5\xef\xe2\x49\x96\x72\x4a\xc8\xff\xc3\x02\x77\xb5\x46\x9b\xca\x84\xee\xb5\x45\x34\xae\x39\xfe\xca\xc9\x89\x8b\x90\x7c\x74\x47\xcd\x3d\xde\xed\x1e\x17\xc5\xa3\x99\x59\x07\x44\xef\xa6\x3d\x72\xf6\x2a\xdb\x1d\x51\x7f\xd0\x52\xc0\x41\xe6\x71\xc7\x00\xd1\x3a\x7d\xe0\x38\x93\x92\x6d\xbf\xb4\xf0\x78\x03\x79\x07\x6b\xd7\x35\xe9\xbe\x6c\xf6\x84\x76\xe7\x54\x63\x0f\x90\x44\xde\x85\x33\x19\x9d\xf8\x06\x45\xa3\x00\xe1\x7b\x87\x67\x78\xd0\x6d\xcb\x1e\x85\xdd\x11\x94\xc8\xe5\xde\xa3\x08\x09\x78\x9e\x47\xaa\xe3\x7b\x33\x80\x73\x5c\xcf\xf7\xfd\xef\xc9\xf9\xe6\x3a\x9f\x23\x81\x2f\xf1\xbe\xb9\x77\x06\x2c\x6f\x21\xf4\x8d\x80\x0e\x49\xf9\xa2\xe0\x7e\x10\xf0\x73\x16\xfe\xf6\x60\x9b\xa6\xf9\x2c\x77\xa4\x96\x48\xfa\x92\x75\xd5\x5b\x21\x5f\xc1\x7e\x15\x97\x2e\xf3\xae\x5a\x85\x0f\x24\xfc\xc2\x19\x33\x43\x2c\x78\x8d\xdb\xec\x1f\xa2\x4c\x9d\xe3\x57\xfa\xbf\x98\x30\x1c\x88\x46\x63\x5c\xda\x9d\xb8\x2b\x8e\xc9\x70\xa5\x7a\x1a\x1e\x74\xa5\x87\xf7\xd3\xbe\xf4\x60\x99\x8d\xb1\x79\xa7\x9f\x8b\xaa\x38\x56\xc5\xe8\x63\xec\x3f\x61\x7f\xb5\x3b\x7d\x9e\x04\x58\xcc\x05\x56\xc4\xf1\x9f\xf7\x10\x8a\x1b\x8a\x0b\x2d\x63\xab\x50\x93\x97\x16\x9d\x36\x05\x73\x3e\x54\x1f\x91\x16\xbb\x5c\xf8\x84\xa0\x96\x03\x67\x44\xa5\x71\xf4\x1a\x67\xc5\xa1\x70\x44\xd7\x72\xa1\xdc\x5f\x26\x41\x64\x3b\x1c\xee\x7c\x97\xc6\xfa\xc5\x5b\x1b\x88\x4b\xe5\x10\xbf\x4e\x5c\x56\x1a\x5f\x27\xb1\x16\xe2\x7b\xcd\xdd\x5d\x2c\x3e\xd0\x19\x7b\xd9\xdc\x31\x9a\xbf\x50\x25\xc1\x1a\x36\x54\x94\x05\xe4\x33\x0a\x4d\x02\xee\x03\x8f\xcf\x08\xd0\x90\x72\x49\xfc\x49\x0e\x84\xa4\x5a\x1e\x85\xf6\x49\x14\x29\xdc\x60\xea\x72\x5e\xe6\xab\xcf\x6e\x44\xcc\xfe\xca\xb6\x47\x50\xdd\x14\xed\x7c\xa8\xbf\x82\xfa\xf1\x74\xff\xfc\x31\x3c\x39\x72\xff\x1e\xb3\x90\x0d\x5e\xdd\x04\x08\xc1\xc1\x16\x1f\x54\xdd\x56\xc5\x40\xe4\xcd\x8b\xb1\x78\xfa\x64\xff\x3c\xae\x4f\x14\x01\xef\xde\xd1\x36\x46\x0b\xc7\xaa\x4b\x85\xcb\x3c\x1c\xb5\x8a\xf0\xc9\x1b\x1f\x15\xdc\xa1\x87\xa3\xbb\x28\x60\x45\x01\xa9\x1b\x3b\xf9\x42\x50\xc9\x14\x27\xe6\x75\xc7\x2b\x2c\xf0\xbc\x3b\x18\xd6\xae\xb2\x80\xb4\x71\xba\x63\x34\x3b\xd3\x94\x9c\x1a\x8d\x7c\x98\x3e\x48\xd3\x0d\xcd\x2a\xb4\xc7\x87\x17\x9f\x62\xa4\x33\xa7\x17\x0e\x94\xcf\x4f\x3d\xc7\x14\xd7\x41\x51\x60\x3e\x67\x41\xf6\xf1\x0a\xa3\xd3\xdc\xa8\xad\xf8\x34\x37\x18\xa0\x88\x9a\x63\xed\x9c\xcd\xb6\xa1\x67\x4e\x41\x2b\x88\xc5\xae\x10\x75\x9b\xe9\x05\x41\x89\x23\x4b\xc7\x61\xaf\x5a\x7a\xd8\x34\xc1\xf5\x14\x39\x62\xc6\x66\x0d\x07\xb2\x88\xe7\x7a\x10\xf9\xa0\x78\x51\x69\x31\x12\x23\xb6\xf9\x4c\x96\xe0\xaa\xc3\x6e\x20\xde\xb2\xad\x68\xd1\x21\x32\xf4\x99\x8b\xcb\xab\x6b\x3c\x20\x40\xbc\x90\x18\xcd\x9a\xe9\x35\xfd\xcb\x86\xec\x41\x0e\x46\xe6\xd7\x26\x38\x46\x64\x9d\x36\xab\x15\x47\x86\x54\xb5\x5e\xd0\x3d\x94\x76\x86\x59\x17\x5b\x89\x12\x09\x63\x6c\x8c\xef\x8a\xfb\x32\xc5\x8b\x12\xcc\x04\xba\x7d\xb9\x22\xa5\x64\x91\xbe\x21\x15\x8d\x9f\x29\x90\x87\x2c\xc0\x30\xef\xf5\x76\xba\x99\xc0\xed\xc8\xa6\xe8\x62\x2a\x20\xdd\x7b\x37\x26\x25\x31\xef\x3d\x47\xa2\x8a\xc9\xcc\x05\xa4\x4e\x94\xdb\x1b\x89\x2a\xe6\x63\x5c\xa8\x72\xf2\x38\x02\x1f\x25\xc9\x9d\x71\x76\xc8\xa2\x01\x8d\x8f\xc1\x69\x38\xae\xd2\xf1\xcc\xf6\x65\xcb\xea\x88\x45\x92\x85\x41\x44\xe3\x31\xc1\xd6\xb4\x71\xbd\x16\xb6\x80\xe5\x83\xe2\x2a\xf7\x1e\x4f\x98\x17\xb3\xce\x67\x11\x0a\xe6\xa2\xdf\xcb\x5d\x47\x96\x74\x84\x2f\x04\xea\x1b\x88\xc8\x0f\x5c\x68\xe2\x88\xf5\x41\x97\xc3\xe2\xf3\x80\x50\xee\x67\x66\x44\x2a\x90\x19\x41\x72\xfe\x36\x81\xf0\x91\x12\x00\xb2\x70\x89\x31\x0b\x53\x70\xaf\x07\xbc\x8a\x28\x51\xf7\x14\x5a\x0c\xaf\x80\x0b\xf9\xde\xb3\x8d\x02\x2a\x8f\x5e\x30\xc2\x0c\xf5\xea\xe3\x53\xbe\xb7\xf7\x9c\xa9\xf7\xe9\x13\x24\x9d\xc1\xa8\x94\xc7\x0f\xa6\x04\x14\xc7\x8f\x61\x34\x84\x3f\x88\xbe\xb6\x5c\xe7\x6d\x61\xf7\x1e\x94\xfa\xf9\x58\x1f\x54\x1e\x86\xb5\xe5\x5b\xd2\xc8\xb5\x09\xda\xad\x04\xf2\x99\x9d\x9c\x44\x28\xfc\xdc\x8f\x19\x21\xcc\xf9\x0b\xd9\x5a\x1c\x31\x44\x04\x3f\xec\x79\x0f\xc8\x86\xb2\x7e\x30\xed\x6f\xff\x74\x75\xf9\xf6\x24\xfd\xfd\xf1\xe1\x70\x78\xcc\xd5\x1f\x0f\xed\x96\x63\x6b\x0a\xbe\x57\xf1\x3f\x2f\xde\x9c\xa4\x65\xbf\xfa\x6e\x41\xda\x3b\xb6\x86\x57\x7b\x35\xe4\x00\x46\x2e\x93\x25\x5b\x76\xff\xfc\x96\xd9\xcb\x05\x3c\x7d\x9c\x26\xbc\x8e\x17\x32\x6d\x5e\x76\x73\x81\x29\x15\x88\x2b\xcc\x6b\x8c\x25\xd9\x4a\xb8\x80\x8b\x84\x2f\x00\x56\x6d\xf9\x3e\x30\x3a\x44\xb9\x41\x7e\xc7\x47\xb6\xc3\xb6\x10\x3a\x35\x8e\x46\xb3\x53\x94\x95\xc5\xcf\xe3\x96\xe0\xfa\xc7\x5b\x1c\xcf\xd2\x3f\xb1\xa1\xc7\x28\x15\x2a\xe0\x22\xa3\x02\x00\x87\xb4\x84\x1d\x96\xea\x65\xe2\x72\x5c\xe0\x0f\x61\xce\xcb\x1e\xd1\x87\x73\xb4\x21\x23\x77\x63\xf3\xab\x69\x1b\x95\xe4\x1a\x35\xd6\x0a\xf7\x96\x48\x82\x88\x9a\x47\x7b\x80\xe5\xd2\x61\xbc\x0f\xc6\x22\x49\x37\x99\x67\xf7\xba\xc9\x26\x1c\x5f\x01\xbf\xb4\xcf\x54\x83\x98\x68\x74\x41\x0f\xaa\xd9\x4d\x7a\x90\xb8\xa4\x4c\x67\x69\xd7\x02\x10\xab\x74\xee\xf2\x62\x11\x64\x54\x03\x06\x12\x93\x0c\x23\xa4\xdb\x92\x9a\x97\x85\x3b\x9c\x85\x59\x14\x8e\x76\xc5\x20\x08\x42\xe3\xc3\x5b\x3b\xe8\x9c\x84\xe0\x85\x6a\x86\xb4\x6a\x21\x26\x12\x0a\x33\x2a\x1c\x3f\x12\x35\x2a\x66\xcb\x42\x5e\xa1\x3b\x93\x54\x88\xad\xfd\xb6\xb9\xb3\x28\xc5\x73\xfc\xd2\xf0\xff\x70\x66\x1e\x4c\x27\xe5\x21\x03\x0d\xbe\xc9\xe2\xe6\xfe\x1a\x5c\x04\x57\x35\xa0\xbe\x4b\x05\x86\x43\x18\x42\x55\x2f\xf2\xca\xcc\x0c\x6f\x26\xd0\xcd\x41\x8d\x43\xf2\xce\x5d\x0f\x47\x42\xf2\xe2\xaa\x61\x58\x5e\x50\xf5\x2b\xc2\xf2\x62\x24\x4d\x83\xee\xfc\x54\xbf\x22\xee\x6e\x6e\xd2\x81\x03\x42\xc9\x78\x0e\xf1\x33\x15\xe6\x1c\x11\x45\x38\x37\xef\x89\x08\xdd\x0e\x62\x1b\x94\x1d\x3c\x38\x23\x83\xef\x6b\x6c\xcc\xb9\x91\x78\x94\x04\xc8\xfd\x92\x5b\xa2\xa8\x6e\x6e\x16\xcb\xb6\x39\x74\x1c\xf7\x87\xa7\x9e\xf8\x68\x92\x7f\xa7\x57\xf8\x2d\x20\xec\x72\x05\x51\x48\x42\x32\xe5\x28\x8d\x32\x25\x21\x99\x2c\xda\x26\x4f\xed\x9c\x53\x09\x5e\xb7\xe1\x97\xaf\x38\x5c\x5f\x4a\x16\x52\x85\xd8\xf9\x21\xe3\x14\xe2\x15\xe1\x22\x61\x53\x1c\x95\xae\x38\x47\xc1\x38\x69\x08\xb7\xe8\x27\xf6\xad\xda\x05\x0a\xe8\x61\x3e\x10\x0a\x84\x65\x70\x04\x46\xc4\x50\x41\xd1\xf2\x20\x61\x1c\x15\x41\x18\x2e\x3d\x84\x22\x08\x9b\xfe\x97\xd7\x6f\xe5\x27\x0e\x47\xf5\x3a\x09\x4e\x47\x5f\x70\x98\x8a\x1d\xb9\x2e\xe6\x8e\x5e\xad\x4c\x8e\xb0\xc5\x3e\xb5\x17\x34\xf1\xcb\x41\x14\x6d\x7e\x03\x5f\x25\xff\x77\xb9\xa4\xcc\xf9\x6a\xef\xda\xf2\xf1\xb8\x1a\x21\x47\x50\x7d\x85\x84\xcb\x57\x5f\x23\xff\x73\x79\x39\xfb\x15\x03\x1c\x3e\x2c\x3c\x46\xec\x00\x97\xe8\xee\x21\x09\xda\x8a\x0d\x70\x25\xd0\x51\x87\xa0\x0e\xff\x42\x02\x68\x07\xaf\x51\x1a\x44\x9f\xaf\x5d\xf4\x61\xbe\x96\x33\x1b\x5f\x06\xd5\xde\xae\xb4\x45\x75\xfc\x33\x09\xe6\x52\xf0\x07\xf4\x54\x8e\xf7\xde\x56\xe1\xb9\x3f\x65\xf2\x81\x3f\x6e\x25\x75\x9b\xc5\x78\x21\xdc\xd9\x91\xe2\x2c\xc5\x6f\x07\x65\x9a\x0a\x93\x4b\xb6\x2b\x02\x65\x45\x08\x28\x14\x2b\x17\x79\xfb\x99\x1f\x80\xc2\x69\x96\x35\x70\x68\xf5\x1a\x12\xff\x0f\x57\x4c\x1f\x1e\x7b\x27\xa9\x49\x87\xf1\x79\x2b\x6a\xc3\x66\x32\x66\xea\x2a\xb0\x76\x25\x57\xde\xde\x48\x4a\x5e\x0c\x1d\x53\xc6\x34\x0c\x97\xca\x1e\x8f\xd7\x2d\x80\x77\x88\xfe\x4b\xf9\x7f\xff\xf7\xff\x21\xf6\xb4\x6f\x48\x5a\x22\x40\x5c\xef\x26\xfb\x75\xb7\x68\x23\xff\x4c\xdc\x63\xf0\xe8\x60\x20\x82\xfe\x54\x63\xae\x29\x35\xa1\x51\x7e\x43\xca\xe8\xfb\x8a\x7d\x54\x31\x91\xc3\xda\xf1\x64\x0e\xff\xf8\xb8\x0d\x23\xaa\x4c\x65\x84\xbb\x1b\x69\x8b\x8b\x45\x93\x1b\x47\x4a\x74\xf3\x22\x25\xf9\x48\x36\xf5\x27\x7f\x83\xde\x2d\x44\x74\x7b\x1e\x26\x8e\x87\x31\x84\xbd\x64\xf2\x9b\x3e\x98\x29\x26\xa3\x3c\xd7\x81\x23\x29\x8b\x29\x94\x1b\xad\x72\xdf\xc1\x35\x12\x76\xf4\xa8\xb3\x4b\x0f\xfa\x92\x0b\xae\x15\xcc\xdc\x3c\x09\x6f\x53\x90\xc5\xa8\x87\x12\x72\x53\x57\x8f\x63\xa2\xf7\x73\x11\x2f\x63\xfe\x1f\x53\x03\x8b\x44\xcf\x09\x38\x86\x83\x13\x7c\x99\x9a\x5f\x25\x65\xf2\x13\x0f\xef\x6b\x64\xd0\xbe\x46\x06\x1e\x0a\x40\x94\x0a\xff\x4f\x70\x3d\x53\x9d\x14\x9c\xab\x29\xcd\x1f\x5d\x01\x6d\xa3\xe7\xae\x7c\x24\x0f\xae\x86\x47\xef\x4b\x71\xe3\x40\xd4\xcc\x11\xd1\xe4\xc1\x00\xac\x0c\x72\xef\x83\x8e\xe2\x21\x1f\x6d\xe1\xb5\xd3\xfb\x45\xdc\x16\x71\x39\x3d\xf1\x56\x92\xc1\x75\x75\x7e\xd7\xa5\xe6\x97\xda\x0c\xcb\xae\x9b\x60\xcb\x6c\xe4\xfc\xc8\x57\xe3\xf5\xca\x97\xb4\x79\x7e\x16\x78\x8e\x94\xa9\xba\x2e\x50\x12\x50\xc7\x67\xa7\x5b\x32\x10\xb6\x91\x31\x83\x86\x58\x95\xfb\xf9\x48\x48\xe1\xf4\x69\x87\x3f\x1e\x54\x38\x6d\xe3\xfe\xb0\xc2\x7f\xf6\xe8\x62\xfe\xda\xa6\x2b\x9e\xde\xdf\x74\x45\x73\x17\x39\xff\x0d\x07\x09\x44\x52\x3a\x8c\xc9\xde\x3e\x7a\x92\xa0\x75\x9c\x23\xfa\xf8\x93\x1a\x7f\xfc\x3c\x21\x7a\xc8\xe0\x2b\xb4\xbd\x78\xc6\x81\xa2\x17\x8d\xca\x21\x84\x1d\x56\x71\x80\xfb\x31\xeb\xcd\x2b\xae\x11\xcf\x18\xdb\x78\x93\x78\x76\xcc\xf4\xde\x2a\x71\x74\x7b\x38\x4c\xe7\x9e\xf2\xf1\xe0\xe6\xc5\x91\xb8\x76\x71\xe7\x7d\x39\xb8\xfd\x88\x7f\xf8\xbe\x28\xf7\xf1\x28\x99\xd7\xb8\x47\x6f\xc3\x41\xde\x5b\x23\x14\xb3\xf1\x19\xcc\xbf\x25\xf2\x7d\xde\x07\xcb\x36\xe0\xc1\x5c\x31\x10\xca\x86\x3f\xef\x50\x60\x1b\xc2\xf0\x25\x46\x86\x67\xb8\x1e\x73\x03\xde\xb2\xed\xc7\x83\xe6\x88\x07\xe1\xde\x0b\xbd\xd5\x6d\x77\xa6\x46\xf9\x9e\xf5\x21\xd0\x62\x2f\x71\xeb\x1e\x48\x7e\x43\xdd\x99\x2d\x19\xd7\x8f\xfb\x88\xe3\xfd\x2d\xd7\xb9\xc1\x2f\x90\x70\xf9\x84\xb5\x55\x89\x78\xec\x33\x49\xb9\x12\xb5\xb5\xf4\x71\x12\x3f\x08\x79\x78\xe2\x19\x3c\xa1\x3e\x57\xa5\x9e\xe2\x9a\x43\x5a\x69\x51\xee\xf6\xbc\x84\xb9\xbb\x89\xcd\xcb\x24\x80\xaa\x6e\xea\xa8\xa0\x21\xff\x34\x6e\x4b\x1e\xe1\x53\xe9\xf9\xb6\x39\x24\x22\x3a\x17\xfc\x56\x42\x2a\x0f\x25\x68\x4e\x3c\x24\xc9\x63\x1d\x45\x2f\x28\x61\x0e\xa4\xa6\xcb\x7d\xa4\x69\xf9\x28\x46\x1b\x92\xc3\x45\x67\xdb\xbb\x27\xac\x80\x42\x6b\x40\x58\x2d\xeb\xf5\x21\x71\x2c\xb4\x55\x28\xb0\xbe\x5b\xd1\x44\xa3\x7e\x43\x88\xaf\xe9\x98\xc7\x39\xe9\xee\xc4\xfc\x5b\xb8\x06\xcb\xa1\xb7\xc2\x0f\x77\x36\x0e\x79\x27\xd4\x8d\xc3\x3d\x42\xeb\xc7\x11\x42\x7c\xcd\x38\xb8\x97\x27\x88\x08\xe2\x45\xbc\x6f\x3c\x64\x1c\xea\xad\xde\xf0\xf4\xa4\x1b\x0f\xd1\x07\x39\x5f\x07\xf2\x1a\x27\x90\xc5\x48\xff\x60\xf7\xe6\x54\x70\x4a\x89\x1c\x84\xcd\xa8\x08\x72\x50\x3c\x7b\xb9\xeb\xcb\x5b\x9c\x57\x1a\x35\x1d\x68\x70\x04\xec\xc1\xe6\xa4\x90\x8e\xcb\xab\x74\xd0\xb1\x2e\x54\xaf\x93\xc2\x2f\x0b\x5e\x81\xb3\x6b\x59\xa2\xdf\x85\x22\x03\x0a\x9e\xad\x64\x21\x8f\x40\xb9\x3d\xce\xac\x2e\xe8\x75\xda\x98\x63\xd5\x80\x72\x2c\x7a\x0a\x67\xbc\x33\xd4\xce\x02\x67\x2b\x33\xe5\x13\xd3\x59\xe5\xb4\xd5\xa0\x76\xf9\x5d\x74\x00\xcc\xd7\xd1\xd8\x22\x8b\x76\xcd\x71\x89\x3d\x1d\x8a\x97\xd5\xf2\xb2\x92\x23\x98\xa3\x4e\x99\x45\xb8\xd5\xa7\x04\xe2\xc9\x6e\xdd\xe6\xec\x0b\xb7\xb5\x66\x66\x11\x90\x02\x1a\xfc\xc9\xcd\xd2\xbd\x52\xed\xb9\x01\x4e\xd8\xa8\xa1\x47\xf7\x31\x85\x3f\x30\x00\xb0\x8d\xfb\x47\x00\xb6\x20\xef\x43\xd1\x30\x02\x16\x70\xdf\x40\xf4\x79\xe9\xaf\x1f\x08\xf8\xc6\x57\x0e\xe4\xc4\x46\xa1\xaf\x92\x14\xc5\xec\xfe\xbf\x6f\x7c\x23\x73\x07\xc4\x19\x3d\x7b\x33\x22\xf8\xe8\x53\x1f\x8e\xe8\x83\x58\x08\x6b\x16\x07\x60\x1a\x9b\xa1\xe2\xcc\x37\x55\xd3\x12\xc2\x94\xad\xfb\x30\x7e\x23\xbe\x80\xc2\x11\x05\x7d\x7b\xa7\x2a\x09\x4f\x2e\xbe\xff\xe2\x6f\xf7\x8b\x11\x86\xb3\x4c\x79\x0a\xe9\x23\xd0\xfe\xe9\xc8\x37\x7b\xe4\xe9\x73\x39\x9e\xee\xa2\xef\xc7\x4c\x5f\xa5\xb9\xf7\x45\xa0\xf8\x25\xa4\xf1\x93\x58\x9d\xdc\x60\x5c\x9b\x2e\x67\xaf\x4b\x27\x3e\x78\xe3\xea\x8e\x70\xb0\xc3\x83\xfa\x2b\x7e\x0c\xa2\xa9\x2b\x39\xf7\xbf\x90\x14\xbf\x07\xc2\xae\x18\xf5\xc3\xf0\xc5\x5a\x1f\x61\xec\x67\x07\xe7\x22\xfb\x98\x54\x11\x90\x74\x50\x1e\xbc\x50\x83\x78\xcb\xd6\xde\xdc\xf1\x2d\x60\x24\x70\x61\x0e\xc1\xc8\x74\x1c\x68\x74\xe8\xe6\x7a\xcc\xf8\xa0\x2e\xd5\x63\x4a\xf7\x21\x10\x66\x12\xfc\x0c\x43\xc1\xcf\x30\xc8\x5b\xf3\x27\x41\x46\x84\xf3\xb0\x60\xef\x2e\xbc\x47\xd9\xb1\xe0\xf3\xf9\xb8\xec\x13\x67\xf1\x0d\x9f\x28\x23\x5f\x4d\x7a\x31\x07\x76\x98\x27\xb1\x74\x61\x0e\x3b\x13\xf9\xc0\x2e\x6a\x3d\xbe\x07\x1e\x16\xc9\xe3\x4e\x51\x96\xbe\x67\x1d\xcf\x44\x7c\xaa\x61\xde\xb6\x59\xf3\xc3\x54\x70\x42\xc6\xd3\x53\xdd\x39\x6e\xd3\x42\xfa\xa2\x26\x10\x14\x1e\xe6\xe0\x5c\xab\xcf\xbb\xb8\x36\xb6\x60\x98\xa1\xf7\x82\x27\x80\x64\x53\xe7\xab\x0d\xe6\xbf\x98\x23\x24\x33\x8d\x1d\x31\xe9\x97\x6c\x66\x20\xe5\xcd\xf1\xd4\x5e\x18\x9f\x85\xe1\x4f\x99\xe0\x41\xf7\xa0\x94\x43\x64\xeb\x4c\xaf\xca\x37\x7a\x33\x90\xe3\x65\xdd\xb5\xf8\xf4\x12\x3b\xae\xbb\xb7\x52\x20\xc5\xf8\x96\x82\x5e\xc5\xd7\x9a\xa2\x71\xdc\x23\xce\x7c\xcb\x2a\x18\x35\x72\x21\xf7\xb6\x5a\xe7\xf5\x04\xd6\x6e\x2c\xb4\xc1\x11\xc9\x57\xb5\x31\x1a\xa5\x87\x70\xcd\xfc\xf1\xa1\xc2\x7b\xc6\xd7\x95\xe0\x91\x8b\x06\x19\xb1\x35\x03\xf9\x42\x0b\xa3\x21\xce\x36\xf1\x07\x06\xc9\x1f\x41\x58\xaf\xdc\xa3\xf1\xe7\xfc\xde\x48\xbb\xe4\x8b\x51\x2c\xc3\x4a\xf9\x98\x47\x53\xc7\x1e\xb8\xf9\xea\xf7\x8d\x0c\x03\x62\x9b\x7b\xae\xf9\x63\x63\x6b\xcb\xee\xae\x5e\x65\x78\xc1\xbf\xdb\xe8\x41\xe5\xfb\x52\x7c\xe5\x8f\x16\x94\xf7\x24\xd7\xdb\xa9\x25\x8e\xf4\xba\x47\xf2\x20\xd3\xb7\x2b\xca\xc7\x17\x04\x48\xc4\x3d\x06\x4f\x44\x6d\x53\xe0\x48\x3d\xeb\xbf\xbb\xb7\xa3\xd1\x5c\x02\x86\x18\xe0\xb6\xc5\x50\xfa\xf2\xab\x66\x10\x1c\x92\x87\xd3\x60\x32\xd0\xdd\x0f\x5e\x11\xbe\x3c\xc8\x88\xfb\x96\x2f\xe4\xf2\x0b\x32\xfc\x30\xb3\x86\xfb\xa8\x40\xb3\x2f\x34\xa8\xf3\xe8\xc8\x84\xc2\x7e\xef\x59\xa1\x47\xd1\x28\xbe\x3c\xc7\x50\x08\xc9\xb7\x67\x86\x3d\x3e\x00\xe6\x3e\x3a\xf3\x01\xbf\x43\xa6\x20\x8f\x41\x65\xeb\xa6\x6d\x68\x79\xe0\x22\xb6\x07\xa2\x5e\x5a\x5e\x37\x53\x01\x2e\xf0\xbb\x6c\xd0\xfb\x7a\x56\xe7\x02\xd9\xa4\x3f\xf0\xe5\x3d\x5f\xab\x6f\xfa\x7c\x6b\x75\xd8\x03\xb9\x52\xbf\xf5\x35\x17\x58\xad\x53\x2b\x08\x6a\x6a\x9d\x66\xc9\xf1\x9e\xa8\xa2\xc0\x97\x9a\x13\xc0\xe2\x98\x83\x2f\x94\x11\xba\x86\x7d\xc6\x53\xc5\x5d\x24\xc9\x4e\xdf\x20\x3b\xbd\xe6\xec\x69\x0f\x36\x2a\x57\x6d\x34\xa8\x63\xf5\x6e\xda\x72\x52\xe7\x05\x5f\x1e\x1d\xc3\x1b\xe6\x36\x65\xbe\x9f\xe0\xed\x15\x65\x4e\xb0\x06\xc8\x29\x02\x00\x7b\x1c\x0b\x61\xad\xaa\x80\x61\x15\xd6\x78\x4d\x59\xc7\xa0\x11\x01\x30\x86\xc7\xa7\xb9\x8e\xd4\x50\x99\x3d\x1e\x95\x9e\xd9\x4c\x46\xd5\x2c\xff\x8e\x0f\x59\x29\xf4\xa5\xfc\x0c\xa0\x96\x4d\xd3\xf3\xf7\x02\xf6\xac\x6e\xad\x3e\x3b\x34\xfd\x62\xf9\xac\x6e\xad\x3e\x4f\x30\x25\xd0\x53\x54\x09\xf4\x71\x5c\xed\xf8\xe6\x3a\xf5\xd5\x0e\xab\x7e\xa0\x0d\xea\x3a\xbc\xb8\xe2\x5b\xf0\x57\xae\x60\xd2\xe3\xa4\x66\x48\xa1\xe3\xca\x73\x3d\xaf\x48\x89\x28\x67\xbb\x3e\xe3\x92\x7b\xfb\x9e\xd4\x0d\x3b\x9f\x54\x9f\xdb\x29\x78\xff\x90\x9d\xce\xcb\x61\xf5\xb9\xec\x39\x66\x7c\x93\xe1\x84\x39\x6c\xeb\x9d\x81\xa5\xbf\x00\x2c\x7d\x45\x60\xe9\xb5\x7c\x8d\x6a\xda\x2a\x09\x9d\x5d\xd9\xe7\x88\x14\x08\x5a\x79\x79\x46\x2b\xc0\xd9\x45\x3e\x57\x0b\xde\x99\x4c\xb5\x6c\xdd\x85\xac\xf8\x04\x2d\xe8\x77\xb2\x44\xf1\x3e\x75\x20\x73\xad\xb1\x19\x20\xd2\x6f\x75\xb7\x92\xc7\xfd\xd8\x30\xa0\x31\xbc\x97\x9c\x00\x16\x6f\x30\x11\xac\xf1\x48\x1c\x8a\xe3\x31\x26\x02\xbf\x8e\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\xde\xe5\x43\x37\x0b\xb8\xcf\x65\x33\x1d\x85\xb4\xee\x0d\xd0\x7a\x1e\xc3\x69\xa7\x9d\xa0\x52\xd8\x8a\x58\x6a\x12\x5b\xac\xef\x1f\xd9\x97\x32\x11\x5a\x6c\xaf\x1f\xe1\x7b\x99\x02\xfb\xc5\xcf\xbf\x28\x98\x68\xaf\xd0\x59\x25\xc7\xf4\x2d\x3c\x6d\x6c\x69\x2b\x83\x27\x4a\x7d\x7a\x9a\x17\x7d\x8b\x46\xf3\xec\xee\x94\xbb\xab\xaa\xf9\xe1\xa5\x4b\x6d\x11\x8a\xa9\x85\xac\xc4\xcf\xfc\x6b\xe4\x8a\x00\xca\x0b\x10\x72\x92\xb4\x0d\x2b\xc3\x68\x70\x1f\x4a\x8c\x1a\x78\x03\x7b\x22\x98\xdb\xd1\x67\x42\xed\x85\x9c\xaf\x7c\x29\xd4\xcf\x26\xc0\x31\x0e\xba\x63\xec\x56\x5d\x16\xa2\x73\xfc\xc0\x4e\x3e\x42\x2f\x83\x2b\x86\x23\x50\x9c\x7c\x87\x1f\xb6\x09\x8e\x1f\x0d\xe5\x38\xe8\xc3\x07\xb5\x34\x90\x6f\xd2\x42\x50\x27\xf8\x0a\x19\x87\x43\xcb\x5d\xa3\x39\x14\x79\xef\xa0\x61\xc8\xbd\xb8\x0a\xe8\x7b\x8f\x96\x62\x5c\xcc\x3f\x04\xfd\xff\xe5\x2d\xec\x70\x00\xfe\x45\xec\x23\xfd\xff\xbb\xbc\x88\x3d\xf6\xcc\xba\x27\xb1\xf1\xe4\xef\x02\x97\x03\xe2\x7d\x1c\x1d\x5c\x45\xfb\x19\x35\xc2\x7d\x8a\x8c\xf8\x28\x1f\x59\xde\xed\x6b\x1e\x5f\xf1\xda\x60\x8b\x8e\xfb\x0b\xee\x73\x44\xbd\x49\x8d\xe9\xc3\x4d\xf1\x10\x24\x67\x7a\x5a\x24\xf9\xea\x8d\x48\xf5\xf1\x91\x52\xbd\x47\x0b\xb8\x24\xf4\x88\xc6\xf2\x26\x1f\xdc\xe5\x4d\xad\x5b\x7b\x34\xe4\x78\x73\x47\xa3\x96\x4a\x72\xd3\xd7\xae\x8a\xcc\x32\x13\x05\x0c\xa6\x22\x39\xe1\x1d\x7f\xc9\x91\x27\x60\xf1\x4d\x04\x49\x69\xfe\x34\x0a\x23\x18\xb1\x36\x13\x77\x1d\x34\x0a\xa0\x59\x5e\x15\x8c\x65\x1c\x9f\x2a\xb9\xe1\xf7\x75\x25\x47\x3f\x55\x8a\xaf\x94\x4a\xce\x12\xf1\x43\x88\x72\x63\xe7\xd3\xf9\x5b\xeb\xb6\xef\xdb\x6a\x39\xf4\xf3\x8f\x1b\xbb\xd2\x09\xb4\x1d\xfb\x33\xed\xa6\x5f\x80\xed\x06\x6b\xf8\x6a\xf8\x52\xbb\xa3\x0f\xcf\x8c\xe0\xe4\x25\x83\xd4\xbd\x31\xf2\x02\xbf\xb5\x70\xc7\x3c\x32\xeb\xf8\x8b\xd8\x17\xc4\x62\x8a\xf4\xea\x54\x4b\xf0\x41\x52\xf5\x8e\xe0\xbb\xa5\x47\x57\x81\x21\x27\x1f\x38\xf5\x45\x8a\x57\x14\x05\xc8\xd5\x47\x92\x7b\x79\xbf\x56\x1e\x08\xbe\x7e\x73\x45\xc9\x55\x7b\x27\x07\x46\xba\x2e\x7c\x62\xa0\x9f\x01\xb5\xaf\x46\x9c\x5e\xb8\x0f\xad\x06\x2b\xad\x4d\xf2\x47\x1c\xb3\xe0\xfb\xe4\xda\x38\x8d\xbf\xd1\x4f\x94\xa9\xc3\x54\x69\x95\x9f\xd8\xe7\xe0\xdf\x7d\x67\xed\x04\x57\x91\x47\x64\xaf\x8f\x29\xeb\x0a\x4c\x84\x51\xec\xb9\x85\xa0\x71\x42\x29\xa4\xf7\x50\x56\x46\x1d\x7c\xe5\xd3\xc7\x61\x5b\x81\x50\xb9\x67\xac\xb3\x77\x0d\xe3\xa7\xb0\x42\xc0\x4c\xf6\x9f\xbd\x78\x17\x35\xec\x0e\x99\xa6\x15\xa2\xa7\xef\xa2\x4a\xf3\x61\x00\xf7\x3d\x7a\x27\x4e\x01\x33\xc6\x9d\xcf\x5b\x8d\xf1\xd8\xf5\xad\xb0\xf7\x7d\xe3\x39\x00\xb9\x95\xa3\xb5\x00\xc2\xbe\x4e\x1f\x00\xcd\x7f\x63\x58\x01\xc6\x3c\x45\xb3\x47\x9f\x9e\x8d\xbe\x39\x6b\x35\xed\x13\x7a\xcd\x20\xd6\x36\x3e\x71\xa9\x77\x8c\xde\x23\x93\x15\x2d\x03\x9f\xfb\xce\x73\x50\xa4\x1d\x71\x51\xd8\x09\x24\x14\x7f\xf4\xf2\xde\x6f\x52\x1b\x82\xd9\xe5\xbe\xca\xe4\x1d\xa4\xa0\x0e\x1c\xfe\x2b\x84\xf1\x4e\x2b\xd1\xb8\xa7\x35\x68\xdc\x47\xc0\xe5\x10\xd8\xf8\xf9\x15\x7e\x09\x0b\x71\x23\xe6\xd0\x32\xa5\x22\x9b\xb0\xe4\x8d\xbf\x08\x12\xe2\xa0\x58\x7a\xc2\x70\xdf\x09\x9d\x25\x0d\xff\x9d\xf5\xb0\x5b\xfe\x42\x7a\x20\x08\x7c\x6e\x28\xd2\x7c\x6e\xf8\x21\x76\x9f\x3b\xf7\x65\xf4\x69\xa9\x3f\x99\xff\x96\x63\x53\x1e\xec\xe5\x63\xf1\xdd\x03\x7c\x0e\xf7\xbb\xa0\x46\xf8\x55\xf5\x38\x77\xdc\x86\x7e\xc4\x75\xd4\x84\x31\xcb\x68\xcb\x54\xab\x23\x88\x71\xdf\x72\x8c\xde\xc8\x06\xfa\xe5\x9b\xc0\x2a\x56\xa2\x8f\x38\x8f\x89\xd9\x33\x5b\x47\xca\x21\xa3\xb5\x81\x71\x48\x7b\xf4\x75\x63\xfd\xa2\x9e\xc6\xb6\xbb\xef\x47\xfe\x82\x6c\x3f\xc2\xd9\x4f\x17\x8f\xbf\x59\xcc\x41\xe7\x56\x25\xfe\xc8\xf4\xf4\xeb\xd2\x0a\x66\x0f\xf5\xc3\x23\x30\x79\xd3\x1f\xae\x00\x7d\xd2\xdf\x18\x83\x5c\x71\xe2\xf8\xee\x6c\xab\xee\x6f\xb9\x06\x85\x28\xef\xf4\x0d\xfc\xdd\x6e\xdc\xd1\x87\xee\xa2\x4a\xf2\x7d\x3d\xf7\x31\xad\x69\x65\xbb\xad\xe7\x16\xd1\x6e\x1f\xcd\x2e\xe2\x6f\x43\x39\x50\xe3\xf2\x05\x3c\x7e\x4e\x8e\x7e\xa6\x6f\xf0\xd3\xad\x95\x5c\x2b\x82\x35\xcc\xc1\xcc\xcf\xec\xa2\x11\x8c\x62\xca\x71\xab\xf4\xb9\xda\xb3\x58\xd6\x2f\x00\xf1\xe2\x50\x0e\x64\xf3\x9f\x91\x13\x22\x39\xe4\xcc\x17\xf8\x3d\x3f\x40\x85\x9d\x6a\x81\x71\xb9\x11\x14\xd1\x79\x13\x10\xd3\xab\x5f\xdf\x5c\x8e\x20\x67\x36\xa8\x96\xcc\x6c\xe8\xf8\x0b\xe7\xe1\xf6\x95\xa3\x1c\x37\x05\x1c\xdf\xcc\xcf\x40\x20\x8f\x4e\x40\x68\xc8\x9f\xcc\x82\x78\x66\x1b\x52\x6a\x2b\xf2\xbd\xec\x18\xa5\x33\xf9\x1d\x03\x05\x6f\x6c\x0a\x94\x3d\xb1\x39\xe9\xb5\x0e\xfb\xac\xe5\x18\xc2\xf3\x03\x09\x11\x08\xf8\x81\x84\xda\xce\x0e\xcf\xa0\xc9\x64\xbd\xad\x0a\x55\x1c\x05\xfe\x9d\x66\x19\xa8\x81\xf8\x96\x0d\x42\x9b\x76\xc3\x24\xc2\xad\x9c\xf6\x76\x86\x5f\xd1\xd2\xe9\x46\xe4\xfd\x22\xb0\x7e\x1b\xf2\x17\x02\xa4\x86\x01\xaf\x57\x0e\x31\xe6\x50\x7a\x79\xe6\x5f\x1f\x85\xef\x69\x34\x99\x6d\x75\x53\x3a\x4f\x95\xce\xe6\x0d\xe5\x45\xc0\x1b\xfe\xc6\xa2\x5d\x88\x94\xaf\x2c\xf2\xc7\xcd\x47\x93\x08\x9b\xd2\x99\x4c\x5a\xda\x57\xf0\x1e\x06\x78\x91\x8c\x79\x8c\x1b\xb4\xf2\xed\x00\x5c\x19\xf7\x98\xdd\xda\x57\x8a\x82\x1d\xe2\x3f\x19\xe2\xe5\xb3\xeb\x9d\xe5\xf2\x6c\xcf\x0c\xa5\x92\x8b\x61\x20\xb9\x2c\x5a\x60\xb1\x6a\xe5\x6d\x15\xfe\x77\xcd\xe7\xb8\xae\x24\xdc\x7b\x96\xd7\x11\xed\x15\x83\x5c\xb6\xd1\xa4\x87\xf7\xd1\x05\x82\x26\x2b\x98\x79\xf3\x2c\x06\x28\x7f\x2f\x57\x43\x70\xac\xf0\xab\xfc\x56\x3f\x9e\x6f\xa6\xb1\xe0\xc0\xa1\xc6\xab\x6c\xef\x24\x27\x80\x99\x7b\x60\xc9\x86\x8e\x10\x47\x0b\x75\x3c\xda\xbf\xeb\x1e\xe6\x0f\x43\x59\xc4\x85\x45\x39\xc8\xcf\x6c\x2b\x77\x2f\x46\x41\x18\x06\x1b\x6a\x21\x61\x5e\xf6\x7d\xa4\xa7\xb9\xb2\x99\x81\x5b\x51\x83\xef\xef\xef\x17\x01\x2c\x54\xf1\xe0\xfd\x77\x19\x83\x94\x7f\x29\xc4\x2a\xf9\x28\x31\x0d\x9f\x46\x4f\x04\x9b\xfb\x31\x08\xa3\x89\xee\xff\x3c\x94\x77\xec\xe4\x92\x94\x55\xe2\x08\x22\x79\x87\x2f\x80\x7d\xd2\xb5\xab\x27\x0f\xc3\xd7\xef\xd8\x23\xe4\x01\xf8\xb5\x3c\x2e\xfc\x51\x9f\xc6\xd3\x71\xc0\xa9\x41\x6d\xfe\x4d\x5f\xd5\x93\xdf\x61\xbb\xe2\xf6\x90\xa6\xbb\xff\xe4\x5a\xff\x5b\xa2\xc1\x16\xbe\x09\xcd\xc0\xe7\x02\xfe\x48\x43\xee\x0d\x0f\x9d\x9f\xfd\x1e\xe1\x05\x57\xa6\x19\x21\x72\x77\x7a\xfc\x0d\x09\x45\x15\x6e\x5e\xf3\x4d\x1c\x8f\x27\xfa\x71\x3f\xa2\xa2\xa6\x26\x88\xd2\x67\xe1\x7e\xc8\xfc\x5b\xa3\xb8\x84\x27\x05\x55\xa7\xef\x62\xc9\x07\x3a\x7e\x70\xef\x8c\x26\x1f\xfb\xa6\xd9\x7e\x4a\xf2\x35\xcf\x89\xfe\x26\x78\xc8\x57\xe2\x75\x11\x93\x46\xc9\x44\x7e\x72\xea\x7b\x6e\xf8\x7b\xb2\x52\x89\x81\xe0\x71\xb6\xef\x77\xc8\x90\x4f\x3c\x23\x63\x83\x0c\x7e\x01\x1a\x3f\x0b\xfc\x2c\xf2\x3b\xfc\x3a\xe0\xd7\xa1\x2c\x3f\x4b\x65\x70\x18\xaa\x4e\x56\xdf\x06\x39\x77\xf8\xcd\xaf\x8d\xe1\xfb\xfa\xe8\x47\xdf\x1e\xb4\x1f\x78\x12\x4e\xbe\x28\x8d\x7c\xfb\x41\xf9\xf2\xad\x95\x67\xfe\xb3\x2b\x0f\xf9\x7c\xec\x4e\xb3\x90\xa2\x1c\xee\x5e\xb3\x24\xf9\x10\x6c\x82\x6c\x59\x6d\x50\xd2\x94\xcb\xe3\xd0\x4c\x49\x52\x5e\x9b\x1f\x32\x3f\x2e\x4d\x21\xd7\x8f\x4a\x53\xc9\xff\x0b\x00\x00\xff\xff\x24\xf9\x51\x8c\x17\x8e\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -787,7 +787,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 36214, mode: os.FileMode(420), modTime: time.Unix(1439139678, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 36375, mode: os.FileMode(420), modTime: time.Unix(1439188430, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index c145e682cc..5610d4c5c6 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -44,7 +44,7 @@ var ( ) func RetrieveLabels(ctx *middleware.Context) { - labels, err := models.GetLabels(ctx.Repo.Repository.ID) + labels, err := models.GetLabelsByRepoID(ctx.Repo.Repository.ID) if err != nil { ctx.Handle(500, "RetrieveLabels.GetLabels: %v", err) return @@ -180,10 +180,16 @@ func NewIssue(ctx *middleware.Context) { ctx.Data["IsAttachmentEnabled"] = setting.AttachmentEnabled ctx.Data["AttachmentAllowedTypes"] = setting.AttachmentAllowedTypes - // var ( - // repo = ctx.Repo.Repository - // err error - // ) + var ( + repo = ctx.Repo.Repository + err error + ) + ctx.Data["Labels"], err = models.GetLabelsByRepoID(repo.ID) + if err != nil { + ctx.Handle(500, "GetLabelsByRepoID: %v", err) + return + } + // // Get all milestones. // ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false) // if err != nil { @@ -403,7 +409,7 @@ func ViewIssue(ctx *middleware.Context) { ctx.Handle(500, "GetLabels", err) return } - labels, err := models.GetLabels(ctx.Repo.Repository.ID) + labels, err := models.GetLabelsByRepoID(ctx.Repo.Repository.ID) if err != nil { ctx.Handle(500, "GetLabels.2", err) return @@ -560,10 +566,10 @@ func UpdateIssueLabel(ctx *middleware.Context) { isAttach := ctx.Query("action") == "attach" labelStrId := ctx.Query("id") - labelId := com.StrTo(labelStrId).MustInt64() - label, err := models.GetLabelById(labelId) + labelID := com.StrTo(labelStrId).MustInt64() + label, err := models.GetLabelByID(labelID) if err != nil { - if err == models.ErrLabelNotExist { + if models.IsErrLabelNotExist(err) { ctx.Handle(404, "issue.UpdateIssueLabel(GetLabelById)", err) } else { ctx.Handle(500, "issue.UpdateIssueLabel(GetLabelById)", err) @@ -571,16 +577,21 @@ func UpdateIssueLabel(ctx *middleware.Context) { return } - isHad := strings.Contains(issue.LabelIDs, "$"+labelStrId+"|") isNeedUpdate := false if isAttach { - if !isHad { - issue.LabelIDs += "$" + labelStrId + "|" + if !issue.HasLabel(labelID) { + if err = issue.AddLabel(labelID); err != nil { + ctx.Handle(500, "AddLabel", err) + return + } isNeedUpdate = true } } else { - if isHad { - issue.LabelIDs = strings.Replace(issue.LabelIDs, "$"+labelStrId+"|", "", -1) + if issue.HasLabel(labelID) { + if err = issue.RemoveLabel(labelID); err != nil { + ctx.Handle(500, "RemoveLabel", err) + return + } isNeedUpdate = true } } @@ -958,7 +969,7 @@ func NewLabel(ctx *middleware.Context, form auth.CreateLabelForm) { } l := &models.Label{ - RepoId: ctx.Repo.Repository.ID, + RepoID: ctx.Repo.Repository.ID, Name: form.Title, Color: form.Color, } @@ -970,10 +981,10 @@ func NewLabel(ctx *middleware.Context, form auth.CreateLabelForm) { } func UpdateLabel(ctx *middleware.Context, form auth.CreateLabelForm) { - l, err := models.GetLabelById(form.ID) + l, err := models.GetLabelByID(form.ID) if err != nil { - switch err { - case models.ErrLabelNotExist: + switch { + case models.IsErrLabelNotExist(err): ctx.Error(404) default: ctx.Handle(500, "UpdateLabel", err) diff --git a/templates/.VERSION b/templates/.VERSION index b039250bc5..50ad739b63 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.4.0809 Beta \ No newline at end of file +0.6.4.0810 Beta \ No newline at end of file diff --git a/templates/base/head_old.tmpl b/templates/base/head_old.tmpl index fc2a86788d..9a4665de05 100644 --- a/templates/base/head_old.tmpl +++ b/templates/base/head_old.tmpl @@ -28,8 +28,6 @@ {{end}} - - diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index e0e2396e43..66e88a0530 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -17,7 +17,7 @@ {{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} {{.NumStars}} - + {{$.i18n.Tr "repo.fork"}} {{.NumForks}} diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 0be1b84de7..72d30fd72e 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -11,11 +11,11 @@