From 414eb22ef97d664da790a348dab403961f365976 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 5 Mar 2016 12:58:51 -0500 Subject: [PATCH] #1597 fix activitity feeds for pull requests --- README.md | 2 +- conf/locale/locale_en-US.ini | 2 + gogs.go | 2 +- models/action.go | 2 + models/issue.go | 275 +----------------------- models/issue_comment.go | 311 ++++++++++++++++++++++++++++ modules/bindata/bindata.go | 4 +- modules/template/template.go | 6 +- templates/.VERSION | 2 +- templates/user/dashboard/feeds.tmpl | 10 +- 10 files changed, 338 insertions(+), 278 deletions(-) create mode 100644 models/issue_comment.go diff --git a/README.md b/README.md index cd4a81613..aa3bf65db 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true) -##### Current version: 0.8.57 +##### Current version: 0.8.58 | Web | UI | Preview | |:-------------:|:-------:|:-------:| diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 7d97bddf3..3ce998e34 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -1064,6 +1064,8 @@ create_issue = `opened issue %s#%[2]s` close_issue = `closed issue %s#%[2]s` reopen_issue = `reopened issue %s#%[2]s` create_pull_request = `created pull request %s#%[2]s` +close_pull_request = `closed pull request %s#%[2]s` +reopen_pull_request = `reopened pull request %s#%[2]s` comment_issue = `commented on issue %s#%[2]s` merge_pull_request = `merged pull request %s#%[2]s` transfer_repo = transfered repository %s to %s diff --git a/gogs.go b/gogs.go index 812b42f60..6cf28b0f9 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.8.57.0305" +const APP_VER = "0.8.58.0305" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index 678d6c609..f83b9ad89 100644 --- a/models/action.go +++ b/models/action.go @@ -41,6 +41,8 @@ const ( ACTION_MERGE_PULL_REQUEST // 11 ACTION_CLOSE_ISSUE // 12 ACTION_REOPEN_ISSUE // 13 + ACTION_CLOSE_PULL_REQUEST // 14 + ACTION_REOPEN_PULL_REQUEST // 15 ) var ( diff --git a/models/issue.go b/models/issue.go index a11b9b3f0..0cda7150a 100644 --- a/models/issue.go +++ b/models/issue.go @@ -219,6 +219,7 @@ func (i *Issue) ReadBy(uid int64) error { } func (i *Issue) changeStatus(e *xorm.Session, doer *User, repo *Repository, isClosed bool) (err error) { + // Nothing should be performed if current status is same as target status if i.IsClosed == isClosed { return nil } @@ -230,7 +231,7 @@ func (i *Issue) changeStatus(e *xorm.Session, doer *User, repo *Repository, isCl return err } - // Update labels. + // Update issue count of labels if err = i.getLabels(e); err != nil { return err } @@ -245,12 +246,12 @@ func (i *Issue) changeStatus(e *xorm.Session, doer *User, repo *Repository, isCl } } - // Update milestone. + // Update issue count of milestone if err = changeMilestoneIssueStats(e, i); err != nil { return err } - // New action comment. + // New action comment if _, err = createStatusComment(e, doer, repo, i); err != nil { return err } @@ -258,7 +259,7 @@ func (i *Issue) changeStatus(e *xorm.Session, doer *User, repo *Repository, isCl return nil } -// ChangeStatus changes issue status to open/closed. +// ChangeStatus changes issue status to open or closed. func (i *Issue) ChangeStatus(doer *User, repo *Repository, isClosed bool) (err error) { sess := x.NewSession() defer sessionRelease(sess) @@ -857,7 +858,7 @@ func UpdateIssue(issue *Issue) error { return updateIssue(x, issue) } -// updateIssueCols updates specific fields of given issue. +// updateIssueCols only updates values of specific columns for given issue. func updateIssueCols(e Engine, issue *Issue, cols ...string) error { _, err := e.Id(issue.ID).Cols(cols...).Update(issue) return err @@ -1241,270 +1242,6 @@ func DeleteMilestoneByID(id int64) error { return sess.Commit() } -// _________ __ -// \_ ___ \ ____ _____ _____ ____ _____/ |_ -// / \ \/ / _ \ / \ / \_/ __ \ / \ __\ -// \ \___( <_> ) Y Y \ Y Y \ ___/| | \ | -// \______ /\____/|__|_| /__|_| /\___ >___| /__| -// \/ \/ \/ \/ \/ - -// CommentType defines whether a comment is just a simple comment, an action (like close) or a reference. -type CommentType int - -const ( - // Plain comment, can be associated with a commit (CommitId > 0) and a line (Line > 0) - COMMENT_TYPE_COMMENT CommentType = iota - COMMENT_TYPE_REOPEN - COMMENT_TYPE_CLOSE - - // References. - COMMENT_TYPE_ISSUE_REF - // Reference from a commit (not part of a pull request) - COMMENT_TYPE_COMMIT_REF - // Reference from a comment - COMMENT_TYPE_COMMENT_REF - // Reference from a pull request - COMMENT_TYPE_PULL_REF -) - -type CommentTag int - -const ( - COMMENT_TAG_NONE CommentTag = iota - COMMENT_TAG_POSTER - COMMENT_TAG_ADMIN - COMMENT_TAG_OWNER -) - -// Comment represents a comment in commit and issue page. -type Comment struct { - ID int64 `xorm:"pk autoincr"` - Type CommentType - PosterID int64 - Poster *User `xorm:"-"` - IssueID int64 `xorm:"INDEX"` - CommitID int64 - Line int64 - Content string `xorm:"TEXT"` - RenderedContent string `xorm:"-"` - Created time.Time `xorm:"CREATED"` - - // Reference issue in commit message - CommitSHA string `xorm:"VARCHAR(40)"` - - Attachments []*Attachment `xorm:"-"` - - // For view issue page. - ShowTag CommentTag `xorm:"-"` -} - -func (c *Comment) AfterSet(colName string, _ xorm.Cell) { - var err error - switch colName { - case "id": - c.Attachments, err = GetAttachmentsByCommentID(c.ID) - if err != nil { - log.Error(3, "GetAttachmentsByCommentID[%d]: %v", c.ID, err) - } - - case "poster_id": - c.Poster, err = GetUserByID(c.PosterID) - if err != nil { - if IsErrUserNotExist(err) { - c.PosterID = -1 - c.Poster = NewFakeUser() - } else { - log.Error(3, "GetUserByID[%d]: %v", c.ID, err) - } - } - case "created": - c.Created = regulateTimeZone(c.Created) - } -} - -func (c *Comment) AfterDelete() { - _, err := DeleteAttachmentsByComment(c.ID, true) - - if err != nil { - log.Info("Could not delete files for comment %d on issue #%d: %s", c.ID, c.IssueID, err) - } -} - -// HashTag returns unique hash tag for comment. -func (c *Comment) HashTag() string { - return "issuecomment-" + com.ToStr(c.ID) -} - -// EventTag returns unique event hash tag for comment. -func (c *Comment) EventTag() string { - return "event-" + com.ToStr(c.ID) -} - -func createComment(e *xorm.Session, u *User, repo *Repository, issue *Issue, commitID, line int64, cmtType CommentType, content, commitSHA string, uuids []string) (_ *Comment, err error) { - comment := &Comment{ - PosterID: u.Id, - Type: cmtType, - IssueID: issue.ID, - CommitID: commitID, - Line: line, - Content: content, - CommitSHA: commitSHA, - } - if _, err = e.Insert(comment); err != nil { - return nil, err - } - - // Compose comment action, could be plain comment, close or reopen issue. - // This object will be used to notify watchers in the end of function. - act := &Action{ - ActUserID: u.Id, - ActUserName: u.Name, - ActEmail: u.Email, - Content: fmt.Sprintf("%d|%s", issue.Index, strings.Split(content, "\n")[0]), - RepoID: repo.ID, - RepoUserName: repo.Owner.Name, - RepoName: repo.Name, - IsPrivate: repo.IsPrivate, - } - - // Check comment type. - switch cmtType { - case COMMENT_TYPE_COMMENT: - act.OpType = ACTION_COMMENT_ISSUE - - if _, err = e.Exec("UPDATE `issue` SET num_comments=num_comments+1 WHERE id=?", issue.ID); err != nil { - return nil, err - } - - // Check attachments. - attachments := make([]*Attachment, 0, len(uuids)) - for _, uuid := range uuids { - attach, err := getAttachmentByUUID(e, uuid) - if err != nil { - if IsErrAttachmentNotExist(err) { - continue - } - return nil, fmt.Errorf("getAttachmentByUUID[%s]: %v", uuid, err) - } - attachments = append(attachments, attach) - } - - for i := range attachments { - attachments[i].IssueID = issue.ID - attachments[i].CommentID = comment.ID - // No assign value could be 0, so ignore AllCols(). - if _, err = e.Id(attachments[i].ID).Update(attachments[i]); err != nil { - return nil, fmt.Errorf("update attachment[%d]: %v", attachments[i].ID, err) - } - } - - case COMMENT_TYPE_REOPEN: - act.OpType = ACTION_REOPEN_ISSUE - - if issue.IsPull { - _, err = e.Exec("UPDATE `repository` SET num_closed_pulls=num_closed_pulls-1 WHERE id=?", repo.ID) - } else { - _, err = e.Exec("UPDATE `repository` SET num_closed_issues=num_closed_issues-1 WHERE id=?", repo.ID) - } - if err != nil { - return nil, err - } - case COMMENT_TYPE_CLOSE: - act.OpType = ACTION_CLOSE_ISSUE - - if issue.IsPull { - _, err = e.Exec("UPDATE `repository` SET num_closed_pulls=num_closed_pulls+1 WHERE id=?", repo.ID) - } else { - _, err = e.Exec("UPDATE `repository` SET num_closed_issues=num_closed_issues+1 WHERE id=?", repo.ID) - } - if err != nil { - return nil, err - } - } - - // Notify watchers for whatever action comes in. - if err = notifyWatchers(e, act); err != nil { - return nil, fmt.Errorf("notifyWatchers: %v", err) - } - - return comment, nil -} - -func createStatusComment(e *xorm.Session, doer *User, repo *Repository, issue *Issue) (*Comment, error) { - cmtType := COMMENT_TYPE_CLOSE - if !issue.IsClosed { - cmtType = COMMENT_TYPE_REOPEN - } - return createComment(e, doer, repo, issue, 0, 0, cmtType, "", "", nil) -} - -// CreateComment creates comment of issue or commit. -func CreateComment(doer *User, repo *Repository, issue *Issue, commitID, line int64, cmtType CommentType, content, commitSHA string, attachments []string) (comment *Comment, err error) { - sess := x.NewSession() - defer sessionRelease(sess) - if err = sess.Begin(); err != nil { - return nil, err - } - - comment, err = createComment(sess, doer, repo, issue, commitID, line, cmtType, content, commitSHA, attachments) - if err != nil { - return nil, err - } - - return comment, sess.Commit() -} - -// CreateIssueComment creates a plain issue comment. -func CreateIssueComment(doer *User, repo *Repository, issue *Issue, content string, attachments []string) (*Comment, error) { - return CreateComment(doer, repo, issue, 0, 0, COMMENT_TYPE_COMMENT, content, "", attachments) -} - -// CreateRefComment creates a commit reference comment to issue. -func CreateRefComment(doer *User, repo *Repository, issue *Issue, content, commitSHA string) error { - if len(commitSHA) == 0 { - return fmt.Errorf("cannot create reference with empty commit SHA") - } - - // Check if same reference from same commit has already existed. - has, err := x.Get(&Comment{ - Type: COMMENT_TYPE_COMMIT_REF, - IssueID: issue.ID, - CommitSHA: commitSHA, - }) - if err != nil { - return fmt.Errorf("check reference comment: %v", err) - } else if has { - return nil - } - - _, err = CreateComment(doer, repo, issue, 0, 0, COMMENT_TYPE_COMMIT_REF, content, commitSHA, nil) - return err -} - -// GetCommentByID returns the comment by given ID. -func GetCommentByID(id int64) (*Comment, error) { - c := new(Comment) - has, err := x.Id(id).Get(c) - if err != nil { - return nil, err - } else if !has { - return nil, ErrCommentNotExist{id} - } - return c, nil -} - -// GetCommentsByIssueID returns all comments of issue by given ID. -func GetCommentsByIssueID(issueID int64) ([]*Comment, error) { - comments := make([]*Comment, 0, 10) - return comments, x.Where("issue_id=?", issueID).Asc("created").Find(&comments) -} - -// UpdateComment updates information of comment. -func UpdateComment(c *Comment) error { - _, err := x.Id(c.ID).AllCols().Update(c) - return err -} - // Attachment represent a attachment of issue/comment/release. type Attachment struct { ID int64 `xorm:"pk autoincr"` diff --git a/models/issue_comment.go b/models/issue_comment.go new file mode 100644 index 000000000..9ffad62fe --- /dev/null +++ b/models/issue_comment.go @@ -0,0 +1,311 @@ +// Copyright 2016 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package models + +import ( + "fmt" + "strings" + "time" + + "github.com/Unknwon/com" + "github.com/go-xorm/xorm" + + "github.com/gogits/gogs/modules/log" +) + +// CommentType defines whether a comment is just a simple comment, an action (like close) or a reference. +type CommentType int + +const ( + // Plain comment, can be associated with a commit (CommitID > 0) and a line (LineNum > 0) + COMMENT_TYPE_COMMENT CommentType = iota + COMMENT_TYPE_REOPEN + COMMENT_TYPE_CLOSE + + // References. + COMMENT_TYPE_ISSUE_REF + // Reference from a commit (not part of a pull request) + COMMENT_TYPE_COMMIT_REF + // Reference from a comment + COMMENT_TYPE_COMMENT_REF + // Reference from a pull request + COMMENT_TYPE_PULL_REF +) + +type CommentTag int + +const ( + COMMENT_TAG_NONE CommentTag = iota + COMMENT_TAG_POSTER + COMMENT_TAG_ADMIN + COMMENT_TAG_OWNER +) + +// Comment represents a comment in commit and issue page. +type Comment struct { + ID int64 `xorm:"pk autoincr"` + Type CommentType + PosterID int64 + Poster *User `xorm:"-"` + IssueID int64 `xorm:"INDEX"` + CommitID int64 + Line int64 + Content string `xorm:"TEXT"` + RenderedContent string `xorm:"-"` + Created time.Time `xorm:"CREATED"` + + // Reference issue in commit message + CommitSHA string `xorm:"VARCHAR(40)"` + + Attachments []*Attachment `xorm:"-"` + + // For view issue page. + ShowTag CommentTag `xorm:"-"` +} + +func (c *Comment) AfterSet(colName string, _ xorm.Cell) { + var err error + switch colName { + case "id": + c.Attachments, err = GetAttachmentsByCommentID(c.ID) + if err != nil { + log.Error(3, "GetAttachmentsByCommentID[%d]: %v", c.ID, err) + } + + case "poster_id": + c.Poster, err = GetUserByID(c.PosterID) + if err != nil { + if IsErrUserNotExist(err) { + c.PosterID = -1 + c.Poster = NewFakeUser() + } else { + log.Error(3, "GetUserByID[%d]: %v", c.ID, err) + } + } + case "created": + c.Created = regulateTimeZone(c.Created) + } +} + +func (c *Comment) AfterDelete() { + _, err := DeleteAttachmentsByComment(c.ID, true) + + if err != nil { + log.Info("Could not delete files for comment %d on issue #%d: %s", c.ID, c.IssueID, err) + } +} + +// HashTag returns unique hash tag for comment. +func (c *Comment) HashTag() string { + return "issuecomment-" + com.ToStr(c.ID) +} + +// EventTag returns unique event hash tag for comment. +func (c *Comment) EventTag() string { + return "event-" + com.ToStr(c.ID) +} + +func createComment(e *xorm.Session, opts *CreateCommentOptions) (_ *Comment, err error) { + comment := &Comment{ + Type: opts.Type, + PosterID: opts.Doer.Id, + IssueID: opts.Issue.ID, + CommitID: opts.CommitID, + CommitSHA: opts.CommitSHA, + Line: opts.LineNum, + Content: opts.Content, + } + if _, err = e.Insert(comment); err != nil { + return nil, err + } + + // Compose comment action, could be plain comment, close or reopen issue. + // This object will be used to notify watchers in the end of function. + act := &Action{ + ActUserID: opts.Doer.Id, + ActUserName: opts.Doer.Name, + ActEmail: opts.Doer.Email, + Content: fmt.Sprintf("%d|%s", opts.Issue.Index, strings.Split(opts.Content, "\n")[0]), + RepoID: opts.Repo.ID, + RepoUserName: opts.Repo.Owner.Name, + RepoName: opts.Repo.Name, + IsPrivate: opts.Repo.IsPrivate, + } + + // Check comment type. + switch opts.Type { + case COMMENT_TYPE_COMMENT: + act.OpType = ACTION_COMMENT_ISSUE + + if _, err = e.Exec("UPDATE `issue` SET num_comments=num_comments+1 WHERE id=?", opts.Issue.ID); err != nil { + return nil, err + } + + // Check attachments + attachments := make([]*Attachment, 0, len(opts.Attachments)) + for _, uuid := range opts.Attachments { + attach, err := getAttachmentByUUID(e, uuid) + if err != nil { + if IsErrAttachmentNotExist(err) { + continue + } + return nil, fmt.Errorf("getAttachmentByUUID[%s]: %v", uuid, err) + } + attachments = append(attachments, attach) + } + + for i := range attachments { + attachments[i].IssueID = opts.Issue.ID + attachments[i].CommentID = comment.ID + // No assign value could be 0, so ignore AllCols(). + if _, err = e.Id(attachments[i].ID).Update(attachments[i]); err != nil { + return nil, fmt.Errorf("update attachment[%d]: %v", attachments[i].ID, err) + } + } + + case COMMENT_TYPE_REOPEN: + act.OpType = ACTION_REOPEN_ISSUE + if opts.Issue.IsPull { + act.OpType = ACTION_REOPEN_PULL_REQUEST + } + + if opts.Issue.IsPull { + _, err = e.Exec("UPDATE `repository` SET num_closed_pulls=num_closed_pulls-1 WHERE id=?", opts.Repo.ID) + } else { + _, err = e.Exec("UPDATE `repository` SET num_closed_issues=num_closed_issues-1 WHERE id=?", opts.Repo.ID) + } + if err != nil { + return nil, err + } + case COMMENT_TYPE_CLOSE: + act.OpType = ACTION_CLOSE_ISSUE + if opts.Issue.IsPull { + act.OpType = ACTION_CLOSE_PULL_REQUEST + } + + if opts.Issue.IsPull { + _, err = e.Exec("UPDATE `repository` SET num_closed_pulls=num_closed_pulls+1 WHERE id=?", opts.Repo.ID) + } else { + _, err = e.Exec("UPDATE `repository` SET num_closed_issues=num_closed_issues+1 WHERE id=?", opts.Repo.ID) + } + if err != nil { + return nil, err + } + } + + // Notify watchers for whatever action comes in + if err = notifyWatchers(e, act); err != nil { + return nil, fmt.Errorf("notifyWatchers: %v", err) + } + + return comment, nil +} + +func createStatusComment(e *xorm.Session, doer *User, repo *Repository, issue *Issue) (*Comment, error) { + cmtType := COMMENT_TYPE_CLOSE + if !issue.IsClosed { + cmtType = COMMENT_TYPE_REOPEN + } + return createComment(e, &CreateCommentOptions{ + Type: cmtType, + Doer: doer, + Repo: repo, + Issue: issue, + }) +} + +type CreateCommentOptions struct { + Type CommentType + Doer *User + Repo *Repository + Issue *Issue + + CommitID int64 + CommitSHA string + LineNum int64 + Content string + Attachments []string // UUIDs of attachments +} + +// CreateComment creates comment of issue or commit. +func CreateComment(opts *CreateCommentOptions) (comment *Comment, err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return nil, err + } + + comment, err = createComment(sess, opts) + if err != nil { + return nil, err + } + + return comment, sess.Commit() +} + +// CreateIssueComment creates a plain issue comment. +func CreateIssueComment(doer *User, repo *Repository, issue *Issue, content string, attachments []string) (*Comment, error) { + return CreateComment(&CreateCommentOptions{ + Type: COMMENT_TYPE_COMMENT, + Doer: doer, + Repo: repo, + Issue: issue, + Content: content, + Attachments: attachments, + }) +} + +// CreateRefComment creates a commit reference comment to issue. +func CreateRefComment(doer *User, repo *Repository, issue *Issue, content, commitSHA string) error { + if len(commitSHA) == 0 { + return fmt.Errorf("cannot create reference with empty commit SHA") + } + + // Check if same reference from same commit has already existed. + has, err := x.Get(&Comment{ + Type: COMMENT_TYPE_COMMIT_REF, + IssueID: issue.ID, + CommitSHA: commitSHA, + }) + if err != nil { + return fmt.Errorf("check reference comment: %v", err) + } else if has { + return nil + } + + _, err = CreateComment(&CreateCommentOptions{ + Type: COMMENT_TYPE_COMMIT_REF, + Doer: doer, + Repo: repo, + Issue: issue, + CommitSHA: commitSHA, + Content: content, + }) + return err +} + +// GetCommentByID returns the comment by given ID. +func GetCommentByID(id int64) (*Comment, error) { + c := new(Comment) + has, err := x.Id(id).Get(c) + if err != nil { + return nil, err + } else if !has { + return nil, ErrCommentNotExist{id} + } + return c, nil +} + +// GetCommentsByIssueID returns all comments of issue by given ID. +func GetCommentsByIssueID(issueID int64) ([]*Comment, error) { + comments := make([]*Comment, 0, 10) + return comments, x.Where("issue_id=?", issueID).Asc("created").Find(&comments) +} + +// UpdateComment updates information of comment. +func UpdateComment(c *Comment) error { + _, err := x.Id(c.ID).AllCols().Update(c) + return err +} diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index e11ecfae3..1ad003a1b 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4322,7 +4322,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x84\xc3\x76\x84\x5c\x8e\xee\x3e\xff\xff\x6e\x74\xb4\xdd\x2b\x4b\xed\xcb\x19\xcb\xd2\x48\x72\xf7\xce\x76\x38\xd8\xac\x22\x55\xc5\x71\x15\x59\x43\xb2\x24\x6b\x26\xe6\x0d\xf6\x01\xf6\xf9\xf6\x49\x16\xf8\x01\xc8\x0b\xc9\x92\xec\x9e\xe3\x0f\x16\x2b\x13\x79\x47\x22\x01\x24\x80\xcc\xb7\xdb\xac\x28\xbb\x45\xfa\x3c\x3d\x4c\xb7\x79\x55\xaf\xcb\xae\x4b\xbb\x72\x7d\xf5\x74\xd5\x74\x7d\x59\xa4\xaf\xab\x9e\x7e\xb7\xd7\xd5\xa2\x4c\x92\x55\xb3\x29\x09\xf4\x0d\xfd\x49\x8a\xbc\x5b\xcd\x9b\xbc\x2d\x28\xe1\xd8\xbe\x93\xf2\xf3\x76\xdd\xb4\x0c\xf4\xb3\x7c\x25\xab\x72\xbd\xe5\x32\xf4\x27\xe9\xaa\x65\x9d\x55\x35\xfd\xbc\xa0\xaf\xf4\x6d\x2d\x29\xcd\xae\xb7\xa4\xd3\x5d\x2f\x69\xbb\xad\x25\x7d\xd8\x26\x6d\xb9\xac\xa8\x37\x2d\x25\x9d\xeb\x67\x72\x53\xce\xbb\xaa\xe7\x96\x7e\x95\xaf\xe4\xba\x6c\xbb\xaa\xe1\xda\x7f\x91\xaf\x64\x9b\x2f\x19\xe0\x8c\xfe\x24\x7d\xb9\xd9\xae\x73\x14\xb8\xd4\xcf\x64\x9d\xd7\xcb\x9d\xc0\xbc\xd3\xcf\x64\xd1\x96\x94\x95\xd5\xe5\x0d\xa5\x1e\xe1\xc7\x6c\x36\x4b\x76\x34\x09\xd9\xb6\x6d\xae\xaa\x75\x99\xe5\x75\x91\x6d\x64\x98\x1f\x28\x3d\xd5\xf4\x94\xd2\x53\x4e\xc7\x10\xca\x82\x86\x9a\xe5\x9d\x8e\x83\xe6\x92\x46\x9e\x77\x09\xaa\xaa\xf3\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\x67\x8d\xff\x52\xbf\xbb\xee\xa6\xc1\xd4\x9e\xe9\x27\xcd\x41\xd6\xdf\x6e\x4b\x4c\xc1\xd3\x4b\xfa\x4a\x16\xf9\xb6\x5f\xac\x72\xee\xa6\x7c\x25\x04\xb4\x6d\x68\x2e\x9a\xf6\x16\x70\xf6\x23\x69\xda\x65\x5e\x57\xff\xc8\x7b\x99\x9f\xd3\xe0\x67\xb2\xa9\xda\xb6\xe1\xa9\x3d\xc1\x47\x42\x23\xcf\xb8\x1e\x4a\x79\x4f\x93\x10\xd4\xc2\x39\x9b\x6a\xd9\xca\x2c\x72\xe6\x09\x7e\x71\x2d\x92\xa7\x35\x49\x96\xab\xed\xaa\x69\x3f\x69\xea\x2b\xfe\x1c\x54\x49\x9d\xd3\xdc\xb8\x5f\x79\x4d\xeb\xa1\xb9\x27\xf8\x11\x01\x74\x49\x5e\x6c\x68\x86\xb7\x79\x5d\xf2\xd4\x1d\xf2\x2f\x9a\x2f\xfa\x95\xe4\x8b\x45\xb3\xab\xfb\xac\x2b\xfb\xbe\xaa\x97\xbc\x06\x87\x92\x94\x5e\x68\x52\x12\xe4\xb9\xb4\xdb\x66\xe7\x56\x99\xd2\xff\x4a\x3f\xd3\x33\xf9\x29\x79\x41\x21\x64\xba\x92\xd4\x64\x5f\x5d\x57\x7d\x55\x4a\x63\xf6\x23\xd9\xee\xd6\x6b\x9a\xcf\xbf\xef\xca\xae\xe7\xac\x33\xfa\x4d\x33\x20\xbf\x93\xaa\xeb\x76\x28\xf1\x16\x1f\x09\x2d\x6a\xbd\xc0\x70\x8e\xf0\x91\x24\xbf\x75\x65\xde\x2e\x56\x1f\x13\xf9\x8b\xde\xf2\x07\x23\xe5\xbe\xe5\x66\x0c\x53\xec\x92\x16\xac\x81\x64\xd1\x14\xfc\xe3\x88\xfe\x50\xd5\x55\xdd\xf5\xf9\x7a\xfd\x31\xd1\x0f\x06\x93\x2f\x59\x82\xbe\xea\x31\x0f\x9a\x98\x5e\xf4\xe5\xb6\xe3\x35\x4c\x5f\x55\x6d\xd7\x3f\xed\x2b\xc2\xe2\xf3\x5d\x9d\x14\xcd\xe2\x13\xed\x0f\xde\xeb\x68\xf9\xed\x55\x4a\xd3\xf5\x88\x76\x48\xbb\xab\x6b\x9a\xa0\xf4\x75\x43\x93\x46\xcd\x54\xd4\xfe\x31\xa0\x0f\xd2\xed\xba\xcc\x3b\x02\x29\xf3\x22\xfd\x31\x4f\xfb\xbc\x5d\x96\xfd\xf3\x07\xd9\x9c\xf6\xe5\xa7\x07\xe9\xaa\x2d\xaf\x9e\x3f\x78\xd8\x3d\x78\xf1\x7a\x47\xc5\xd6\x55\x5d\x76\x3f\x3e\xcb\x5f\xa4\x8b\x9c\x72\x68\x1a\x6f\xd3\x79\x79\xc5\xdb\x90\xda\x4a\x09\xff\xeb\x25\x6f\xc1\xdb\x7e\xc5\x0d\x12\x2e\xd0\x47\x97\x32\x0d\xf8\x26\xe1\x05\x20\x1a\x91\x15\x73\xa3\x77\xe8\x10\x92\x5b\x5a\x80\x93\xdb\x8b\xbf\xbc\x3b\x48\xcf\x88\xe8\x2d\xdb\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x56\xc7\x2f\x67\x09\x95\xb5\x09\x39\xce\xfb\x7c\xce\x7d\x77\xeb\xcf\x99\xb2\x3d\x5d\x1e\x36\x29\x93\x51\x90\xcc\xae\x8f\x96\x65\x6a\x8b\x53\x1d\x4a\x17\x5c\x1d\xef\x99\x38\x50\xba\x9b\xd9\x33\x99\x33\xaa\x2a\x7d\xfb\xfe\xfd\xe9\xf1\xcb\xb4\xac\x97\x34\x33\xe9\x4d\xd5\xaf\xd2\x5d\x7f\xf5\xdf\xb3\x65\x59\x97\x6d\xbe\xce\x16\x15\x4f\x4a\x4b\x28\x9b\xd2\x2c\xc9\x10\x67\x49\xd7\xad\x89\x76\x01\x0b\x2e\x2e\xde\xa5\x27\x8c\x09\xdb\xbc\x5f\xa1\x23\xfd\x2a\xe9\xfe\xbe\xe6\x89\x72\x0d\x5e\xae\xca\x14\xdb\x01\x40\xcd\xd5\x70\x5e\xd2\x42\xfb\x3a\x4b\x7f\x9c\xb7\x2f\x82\xfe\xe5\xf3\xae\x59\xef\x7a\x2d\x79\xb3\x2a\x6b\x2c\x14\xa1\x52\xdb\x13\x21\xb4\x63\x65\x96\x94\x6d\x9b\x11\x49\xee\x6f\x79\x79\xb4\x2f\xfb\x5a\x91\xca\x68\x97\xd4\x4d\x4f\xcb\x9f\xa2\x9c\x54\x51\xd5\xd7\xf9\xba\x2a\x68\x91\xfc\x44\xc6\x65\x91\x58\x34\xb4\xde\x5c\x9a\x30\xba\xb9\xc1\x14\xd1\xde\xa5\x13\x23\x7d\x30\x7b\x00\x12\xfe\xe0\xe9\x83\x59\x52\x37\x99\xd0\x17\x26\xf6\x45\xd5\xe5\x73\x22\xfc\x72\x10\xb5\x46\x47\xff\xca\x78\x27\x5d\x51\x88\x34\x82\xe0\x35\xe1\xc3\x0d\x67\x0a\x23\x65\x4e\x27\x00\xc8\x94\x12\xa8\x70\xec\x46\xcd\x1c\x5e\x08\x41\x73\x09\xa3\x31\x27\xb6\xd0\x86\x95\x87\xdb\xed\xba\x5a\x48\xd3\xaf\x25\xcf\x23\x28\x1f\xf5\x3a\x29\x21\x1c\x10\xcc\xf2\x02\x34\xa3\x5e\x33\xc1\x4b\xa3\x93\x03\xe5\x57\x25\xed\xb8\xd5\x6e\x29\xc7\xdd\xba\xd9\x15\xdf\x80\x10\xd9\xca\x79\x3a\x94\x9e\x37\xd4\x61\x60\x95\x03\xf0\x4d\x1c\x12\x41\x61\xee\xa2\x2d\x37\x4d\xcf\x13\xa7\xc5\x98\x82\xde\x54\x94\x49\x23\xed\xf2\x6b\x3a\x37\xfb\x46\xb6\x72\x41\x5b\x75\xc1\x15\x13\xe5\xdb\x11\x8b\x20\xdb\x89\xe8\x8f\x6c\x29\x4b\x8b\x71\x17\x50\x9b\x1d\xed\xc2\x15\x55\xc6\x13\xcf\x2c\x0e\x55\x39\xd5\x4f\x0c\x89\xea\x01\x75\xa0\x1d\xdf\xd0\x71\xcc\x0b\x7d\x8c\x0f\xfd\x1d\xd6\x4f\xbd\xca\xaf\xae\xa8\x57\x1d\xed\xa6\x37\xe9\x62\xdd\xd0\x56\xfc\x70\xfe\xae\xe3\x8d\xb6\xca\xb6\x4d\x0b\xd6\x86\xb2\xce\xe8\xd3\xa5\x05\x13\xcd\x10\xf5\x6e\x33\xa7\x5f\x37\xab\x8a\x08\x3c\xa6\x9d\x4b\xf0\xfe\xa0\x54\x6a\x62\xd7\xd1\x12\x1e\xa4\xb4\xb5\x68\x04\x34\x65\x40\x00\x1e\x83\x61\x1d\x83\x5f\x11\x8e\xed\x5a\xda\x4e\xab\xbe\xdf\x5a\xcb\x6f\x2e\x2f\xcf\xa4\x69\x97\x7a\x57\xdb\x79\x80\x19\x58\x83\x35\x33\x5b\x75\xda\xd4\x33\x20\xc9\xae\x5d\x0f\xf0\x87\xc6\x6a\x39\x7b\xe6\x85\xbb\xf0\x8c\xff\xbb\xf0\xd3\x83\x79\xee\x88\x8d\xbc\x01\x36\xd1\x1c\x83\x01\x9a\x25\xeb\x66\x99\xb5\xb4\x1a\x86\x4c\xef\x9a\xa5\x20\x50\x94\xe1\x5b\x3a\x36\x94\xe0\xd9\xb8\x69\x99\x21\x24\x48\x10\x2c\x5e\x64\xda\x24\xcd\x96\xfb\x19\xec\x92\x53\x4d\xf0\x5b\x03\x6d\xbb\x7c\xb0\x60\x94\x09\xe2\x14\xb0\x0b\x1b\x9a\x3f\xa5\xe6\x17\x27\x34\xab\x20\xe9\x48\xbd\x6a\x9b\x0d\xa5\xbe\xa2\x3f\x3e\xc1\xf7\xf1\x84\xeb\x03\x4c\x5e\x14\x74\xd8\x74\x07\xe9\xf9\xab\xa3\xf4\xff\xfb\xfe\xbb\xef\x66\xe9\xdb\x9e\x37\x36\xe3\xfa\xdf\x18\x47\x73\x9d\x09\x0f\x4a\x04\xb0\x27\x34\x7e\xc0\x1b\xf5\x41\xfa\x23\x72\xff\x47\xf9\x39\x27\x16\xb6\x9c\x2d\x9a\xcd\x0b\x26\xee\x9b\x9c\x48\x09\xe7\x10\xf6\xeb\xb6\xb8\x28\xeb\x82\x3e\x84\xa1\xd4\xac\x80\xb8\x68\x76\xc0\x5e\x0a\x5f\x9d\x2d\x9a\xfa\xaa\x6a\x79\x3c\x3f\xd7\xc0\x2d\xe3\xb8\x89\x69\x40\x8e\x71\x67\x34\x65\x44\x8f\xaa\xab\x5b\x0f\x8a\x91\xbe\xe7\x44\x45\x8f\x44\x70\x38\x53\x52\xef\xe6\xf8\x42\x50\x9b\xb1\xe0\x94\x46\xd7\xda\x74\x77\x7e\xbe\x9b\xab\x2b\x3e\xf1\xed\xac\xd2\x16\x4e\x25\x55\x8e\xad\x10\x84\x50\x7b\x0b\x99\xe1\x58\xb7\xc4\xd1\xf1\xfb\xb4\xbc\x26\xdc\x65\x1a\xda\x36\xc5\x6e\x01\x7c\x65\xd8\x03\x26\xfd\x44\x70\x3a\xda\x69\x8b\x52\x91\xc5\x91\x1c\xee\x1a\xd3\xb5\x05\x01\x11\xa5\x31\xd2\x4f\x8c\xee\x35\x9d\x23\x6d\xd0\xc4\x6b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x5a\x70\x42\x0a\xe9\x45\x27\x9d\x92\x6c\xda\x3c\xb4\x2b\x76\x24\x40\xe5\x05\xf5\x65\x7e\x0b\x2a\xd6\x31\x2e\x14\xe5\x55\xbe\x5b\xf7\xbe\x5f\x83\x23\xc9\x5a\xba\x60\x19\x2e\xcc\x9b\x2c\x30\xea\x20\x90\xa7\x1b\x96\x25\x2c\xac\x89\xdb\x92\xa3\x8b\xd1\x55\x84\x24\x3b\xc5\x88\xd8\x95\x58\x9e\xcc\x8b\x24\xba\x5e\x26\x99\xc4\xf9\xae\xd9\x73\xe1\xbf\x52\x1c\xdc\x5c\xa3\x55\xc0\x0c\xcb\x74\x5f\x66\x89\x32\x6d\x99\x4a\x93\xd9\x75\x05\x59\xcd\xa1\xab\x54\xa9\x12\x26\xd3\x85\x5f\x18\x80\x85\xc0\x6e\xb2\xac\xeb\xcd\x29\x0f\xb2\x73\xb2\x9a\xcc\x39\x0f\x17\x2d\x30\x23\x49\xab\x74\x5d\xe1\xd0\x50\x84\xc1\xbc\xcc\x99\xd7\xa1\xa6\xa9\xa9\xae\x2c\x51\x03\x95\x7f\x46\x75\xa2\xcc\x4c\x05\x15\x95\x1d\x8c\x01\x65\xe6\xa1\x68\xc0\x89\xe0\x64\xa2\xd2\x36\xad\x03\x2e\x21\x6d\xab\xe5\x8a\x28\x75\x73\x73\x20\x93\x72\xb3\x6a\x4a\xde\x3f\x6f\x8f\x9f\x7f\x2b\xfd\x58\xf2\x39\xe5\x0a\xf1\x09\x97\xef\x08\xb9\x68\xc6\x14\x8d\xa5\x0b\x8e\x53\x00\xe4\x48\x24\x12\xa0\xa1\x6c\x3a\x62\x4c\x1c\xd1\x50\x5a\x11\xe6\x29\x91\xf0\x30\x52\xda\xe4\x5b\x69\x58\x88\x92\x0a\x1d\xd9\xb2\x81\x3c\x65\x42\x06\x1f\xbd\x24\xad\x77\x7d\xb6\xac\xfa\xec\x8a\x29\x17\x57\xfc\x8a\x2b\x60\x4e\x80\x72\xd2\x47\x94\xf5\x28\x25\xea\x47\x42\x62\xf1\x43\xfa\xf0\x5a\xd9\xd6\xef\x99\x24\x65\xb4\x89\xaa\x35\x56\x44\xa5\xb4\xb6\x14\xae\xd4\x34\x04\x8e\x05\xec\x76\x5b\x1c\x94\xca\x6d\x3a\x91\xa4\x68\x6e\x6a\xde\x7c\x20\xbd\x44\x66\xaa\x45\x45\x07\xc6\xbc\xaa\x73\x3a\x69\xac\x16\x90\xf4\x87\x84\x12\xef\x4f\x2f\x01\xb8\x6c\xe6\xbb\x6a\x5d\x18\xc0\x2c\x31\x8e\x94\xf8\x51\x5d\xfc\x90\xb7\xb7\xa4\x4a\xfa\xb2\x68\x5a\x3e\xcb\x30\x1a\x2b\xb8\x87\xaf\xe2\x83\x50\x18\xe1\x8a\x85\x2a\xc0\xa2\x9c\x63\x81\x78\x1a\x68\xf5\x21\x2f\x32\x83\x04\xb4\xa9\xba\xfa\x51\x8f\x9e\x2e\x76\xd4\x16\xad\x3c\x27\x53\xc1\x2e\x7d\xfa\x82\xfe\x4f\x98\xdd\x92\x03\x60\x39\x9e\x78\xce\x4c\x25\x73\x27\x5b\x31\xea\x6a\x84\xe3\x6e\xa5\x0d\x83\x83\xb1\x86\xfd\x35\x14\xe8\x76\x82\xb4\xac\xcc\x59\xd3\xb2\x96\xdf\xd0\x07\x8b\x8f\xcb\x35\x16\x21\xef\x55\xc6\x6b\x68\xde\x18\x41\x0e\x64\xcf\x5c\xd1\xd0\x98\x94\xf6\xf9\xa7\x12\x62\xa1\x9f\xf3\x29\x4e\x62\xef\xbc\x25\xbf\xb1\x6a\xeb\x63\xb2\x13\x2e\xb8\x59\x17\x4e\x52\xc3\x6e\x20\x6a\x54\x46\x9a\x19\x0f\xe3\x10\xbd\x23\x6e\x7f\xb1\xca\x9c\x5e\x8c\x27\xb2\x2f\x3f\x83\x5f\x40\x96\x57\x93\xf1\x2e\xe1\xac\x64\x73\x8b\x25\xe6\x81\x9f\xdc\xfa\x15\x66\xbd\xc1\xa2\x21\x29\x7c\xde\xf0\x4c\x5f\x97\x0e\xea\x28\x4c\x8d\x0b\x50\x5d\xc4\xac\x6b\x55\xb1\xa2\x84\xb2\x44\x37\xa3\xb9\xa2\x9b\xe9\x12\x50\x3f\x55\xea\x81\x48\x12\x0e\xa8\x4a\x62\x46\x8b\x09\x8d\x87\xb5\xfc\xb6\x16\xce\x34\xe4\xd3\x69\xde\x54\xe1\xf7\x31\x31\xb8\xf3\x38\x9f\xc8\xd0\xea\x63\xa0\x54\xcb\x0c\x23\x4c\xb9\x06\xc5\x8f\x52\x22\xcf\x85\xac\xca\x2d\x33\x2c\x9b\x0e\xa8\xb4\x66\x15\xc1\xad\x32\xf0\x0e\xa9\x7e\x12\x1a\x4f\x58\x46\x94\xf1\x9b\xa4\x6b\x78\x93\x66\x5f\x59\xc5\xcb\x8a\xd0\x07\xe5\xe3\xf3\x51\xb4\x7d\xc4\x67\xf3\xf2\xd1\xce\xbc\x3d\x88\x45\xbb\x15\x09\xb0\xf3\x92\xd8\x0b\x2d\x56\xcc\x4c\x34\xe7\x65\x27\x81\x12\xfb\x0c\x1a\x4a\xec\x0c\x29\xd9\xb4\xc3\x83\x9b\x7b\x28\xa4\x51\x5b\x71\xec\x16\x98\xa9\x90\xe7\x9a\x68\x93\x26\x6c\x53\x32\xff\x9e\x6d\x44\x33\x28\xbf\xd2\x93\x32\xa1\x13\x74\x09\xec\x17\xf4\x7c\xce\x6a\x9b\x25\xc4\x1c\xc5\x57\x06\x28\xfb\x90\x76\x2b\x84\xa5\xfc\x64\x9a\x58\xa2\x26\x37\xd0\xd0\x11\x3d\x18\x4d\x3f\x9d\x72\x94\x3d\xb3\xb3\x40\xd8\x0a\x70\x87\x1d\x51\x18\x3f\x89\x87\x29\xab\x54\x43\x28\xe5\x74\xdd\xa8\x18\x9e\x09\xcd\x8f\xf3\x17\x0f\xbb\x1f\x9f\xcd\x5f\x38\x72\xbc\x58\x95\x8b\x4f\x82\x7e\x55\x3d\x6f\x3e\x43\xb0\x86\x82\x87\x64\x7a\xde\x62\x0f\x8b\x94\x04\xed\x16\x72\x1d\x91\x0f\x2a\x46\xf3\xce\xb9\xd1\x9a\x51\x5f\x98\xca\xcc\x44\x57\x57\x0a\x7e\x7b\x7c\x84\xd2\x8e\x31\x12\x67\x86\x47\x49\x8c\x63\x5d\x6d\xaa\x7e\x84\x12\x4c\x94\x72\x45\x2d\xd5\xf1\xd9\x1c\xa1\x2e\x3f\x4a\x22\xed\x54\x0d\x9d\xc4\x86\x26\x37\x39\x09\x72\xdf\xa7\x84\x1a\xbb\x9e\x65\x15\x56\x8f\xf4\x44\xdb\x73\x3e\xca\x49\x88\xcb\xbb\x6c\x57\xeb\x74\x95\x85\x21\xc9\x9b\x0a\x27\x0e\xb7\x6b\xa8\x1c\x40\xc5\xb2\x43\xfa\xd8\xcd\xe4\x93\x99\xaa\xe4\x50\x8a\x4f\x01\xee\x4f\xc5\x8c\x6e\x3e\xb5\x26\x44\xef\xea\x52\x24\x6f\x8c\x9f\xc1\x78\xf9\x48\x7c\xf3\x8b\x42\x32\xe0\x27\x4a\xc1\x3c\xcf\x77\x7d\xdf\xb0\x18\xb3\x66\x5c\x90\x32\xd6\xe7\x23\x00\x42\xd0\xf3\xf5\x61\x31\x87\xb3\xa4\x92\x18\xce\xf0\x0e\xfb\x59\xf4\xf5\x2c\x4e\xc6\x43\xd3\x33\xd3\x41\x15\xa2\xff\xca\xeb\x5b\xaf\x5a\x41\x1f\xb8\xb9\x7e\xba\x27\x8f\xdb\xf2\x89\xef\x8b\xdb\x07\x28\xa1\xfd\x91\xd2\xc1\x16\x39\x47\xa6\xe8\x85\x6d\x23\xd9\x89\xa3\xba\x55\x8f\x1a\x6d\x3c\xb5\xc8\x67\x6c\x27\x9a\x49\x3c\x68\x81\x59\xa6\x41\xa0\xf4\x6c\xd0\x96\x17\x1f\xc7\xd3\xd7\xc7\x3d\xf6\x87\x52\xdf\x34\x59\xb7\x12\xc9\xdf\xba\x97\xae\xcb\x7a\x19\xa9\xcc\x70\xc7\x03\x7c\xfb\xff\x49\x3e\xfe\x8d\x07\xfa\x31\xd1\xa5\x28\x83\xfd\xa0\x88\x6a\x39\xb6\x64\xb2\x2d\x1c\xbc\x71\x76\xbf\x94\x2d\xcb\x82\x00\x8a\xd6\x6a\xdf\x24\xc6\x63\x70\xd4\xd0\xb3\x02\xe7\xe1\xde\xd5\xe4\xab\xdd\xfa\x20\xbd\x11\x1e\xc1\x97\x71\x72\xa8\x72\x0f\x8c\x95\x72\x1f\x45\xc3\x6b\x8a\x9c\xc6\x77\x0b\x2d\xfb\x5f\xe9\x4c\xaa\x71\xb3\xd1\x24\x94\x21\x85\x4e\xf0\x41\xa0\x2c\x48\x7f\x4c\xf8\xd0\x7f\x3f\x60\x81\xf9\x50\xd3\xb4\x80\x0d\x43\xd6\xcf\xe1\xcd\x8d\x1b\xf3\xd9\x04\xb7\x7c\x5e\xfa\x0b\x1c\x7c\xb9\xc1\x5f\x5c\xbc\xb9\x34\xc9\xf8\xe2\x4d\xfa\xa9\xd4\xba\xdf\xf4\xfd\xb6\xfb\x00\x9d\x8b\x28\x50\x58\xdb\x72\x96\xdf\x32\x6b\x2a\xc9\xfa\x03\x19\x97\x65\xbe\xd1\x4e\xf2\xa7\x54\x71\x48\xe7\xaf\x26\xf2\x27\x1d\xcb\x81\x2e\x2f\x01\x93\xf6\x73\xc4\x9b\x0b\xe2\x3b\x41\xa9\xd4\x2b\x9d\xdf\x47\xfa\xc7\xdf\x93\x7c\xbd\x25\x59\x8e\x19\x9e\x00\x0c\xaa\xb6\xb9\x8a\x74\x29\x40\x80\xe8\xbb\x0d\x21\xc8\x02\x22\x2c\x15\x78\xfc\x34\x7b\x12\xa8\x5e\xe3\xca\x0a\xda\xff\x7f\xa8\x42\xfe\x66\x4e\x3a\xac\xb7\xab\xfe\x61\xa3\x88\xaa\xe3\x74\xa2\xa5\x04\x01\xbe\xd5\x43\x39\x20\x1c\xe4\xcc\xc3\xf6\xac\x79\xa3\x04\xe2\x93\xa3\xaa\x37\xf9\xe7\xfb\x0a\x6e\x9a\x89\x72\x42\xe5\x7c\x21\x23\x66\x3a\xc4\x68\xf7\x10\x38\xab\xd6\xf6\x02\xd3\xc2\x13\x48\x55\x2f\xd6\xbb\x62\x6f\x47\xba\xdd\x9c\x36\x12\xf3\xdf\x8f\x1e\x76\x8f\xb8\xca\xfa\x13\x1d\xda\xb5\x83\xff\x20\xbf\x53\xfc\xfe\xc1\x6e\x16\x49\x40\x56\xa1\x24\x75\x77\x8c\xc4\x7b\x14\x7c\x7e\x40\xb8\x98\x79\xd2\x13\x0a\x1c\x0e\xf9\xa1\xe5\x50\x81\xd0\xed\x7f\x56\x6d\x40\xf6\x22\x04\x9c\xf9\xdb\xd0\x8c\x79\x80\x8c\x19\xf9\x3a\xe4\xbc\x99\x5e\xda\x09\x0b\x2e\x01\x10\x72\xf5\x95\x8d\xcb\x0d\x76\xe7\xde\xe2\xc4\xe9\x4c\x94\x3e\x1d\x2b\xbb\xf7\x94\xef\x69\x83\x4d\x54\xe0\xf6\xdd\xde\x82\xb2\xf6\x28\x44\x23\x2f\x86\x84\x63\x5c\x8e\xa1\x66\x7e\x96\xdc\x84\x87\x6b\x13\xca\x29\x6e\x9e\x63\xb1\x92\x55\x34\x84\x7e\x2d\x6e\xa5\x03\xe1\x52\x85\x7d\xa5\xf5\x1b\x96\xa3\xba\x1d\x1f\x35\x2c\x73\x09\x07\x15\xcf\x28\x33\x11\xa8\xaa\x44\x13\xfb\xab\x27\x7c\x62\xd2\x7c\x5f\xfd\x00\xfb\xca\xaa\x43\x5d\xc4\xb8\x62\xad\xdc\x01\xed\xab\xd6\x09\xca\xe5\xe7\x0a\x6a\xdd\xd7\xd5\x75\xa9\xa2\xb2\xd3\x10\x20\x6f\x96\xac\x69\xff\xb3\x78\x25\xa3\x12\x56\xbb\xb9\xe6\x1d\xc5\xed\x71\xae\x94\x13\x35\xaf\x0e\x8a\x91\x44\x85\x6e\xdc\x35\x95\xc5\x01\xdf\x7b\xf5\x38\xcb\xb1\x41\xf3\xf5\x4d\x7e\xdb\x41\x81\x64\x44\x86\x35\xe4\x52\x9c\x29\x08\xf1\x33\x4b\xf4\x2a\xbc\x87\xa1\x5d\x63\x33\xc1\x17\x0a\x7c\x5c\x38\xb6\xe3\x06\x62\x33\x28\x84\xaa\xa4\xae\x83\x83\x59\x4f\x17\x16\xf9\x59\xd6\x65\x31\x44\xb2\x83\x8a\x70\x31\xaa\xc4\x7e\xa2\xec\x01\xf3\x7a\xd4\x0c\xf3\x5e\x44\x82\x65\xae\x89\x95\xa5\x99\x45\x97\x02\x1d\xca\x8e\xea\x7f\x2a\xbc\x7b\x45\x73\xc8\xa2\xa0\x57\x2b\xf0\x69\x44\xab\x62\xf7\x08\x92\x2e\xc2\x78\xd7\x57\xeb\x35\xcf\xb4\xd9\x21\xfc\x35\xe0\x3c\x52\xe4\x62\x9f\x60\x9a\xba\x55\xb5\x4d\x1b\x68\x93\xc3\x29\xf4\x68\x1b\x70\xcb\x7c\x63\x52\x42\x36\x60\xad\x7a\x9b\xd7\xdd\x55\x09\xf5\xfa\x26\xbd\xe2\x0b\xed\x99\x36\xcd\xcc\xb7\xd8\x1d\xec\x69\x59\xc4\x2c\x34\x1d\x1e\x10\x58\xbb\x60\xa1\xe2\xa6\xe5\xfa\x06\x3a\x5c\xf4\x01\xb3\xea\x6b\xea\xac\x0f\x8c\x66\xa3\x29\x00\x0f\x1c\x5d\xc6\x4d\xce\xc3\x55\x24\x9f\x4b\xfb\xc0\xb4\x7b\xc6\x1d\xcc\xb9\xde\x1f\xc8\x1d\x4e\xbc\x48\x94\x22\xad\x8a\x76\x94\x15\xd3\xd1\xd8\xb9\x68\x70\xad\x4f\x3b\xa4\xd4\x56\x78\x5b\xf0\x4e\x19\x54\x08\xdd\x8d\x17\x7a\x12\x31\x01\xc8\xe6\xd4\xc5\xc5\x2a\xda\x9b\x97\xc8\x49\x25\x67\xb4\x3d\x93\xdf\xb8\xe9\x8f\x89\x18\x01\x64\x4e\x53\x7f\x24\x46\x01\xc2\xb9\xaa\xe6\xbd\x4f\x4d\x3d\xcf\xd7\x27\x56\x44\x94\xf1\x77\x96\xe4\x83\xd4\x34\xa5\x7f\x6b\x88\x69\x80\xc2\xfd\x3f\xe9\x8b\x79\xf9\x3a\x89\x6e\x30\x07\x8a\x10\xb5\x0e\xe1\xfd\x75\x46\xdb\x82\xf8\x16\x35\x11\xb9\x25\x39\x1c\xb4\x01\xba\x99\x57\xf6\x9d\xf0\x2d\x79\x8b\x8d\x72\xa1\x5f\x91\xe2\x45\x0a\x89\xa6\xed\x95\x7d\x6b\xaa\x4b\xa2\x2d\xee\x52\x3e\xe8\x67\xc2\x72\xff\x66\x86\xb3\x84\x19\x73\x5c\x76\x04\x27\x08\x33\x08\xbc\xce\x96\x37\x0b\xe0\xb7\x79\x4f\x54\xb4\x16\xf9\x4c\x08\x5a\x58\x54\xb3\x5d\x15\xee\x8e\x9d\x6b\x61\x3b\x16\x99\xbb\x8f\x89\x37\xb0\x31\xdb\x9a\x29\xe5\xb2\x52\xa4\x4e\x99\xe2\x3f\xd3\xa7\xea\x78\x40\xed\xf0\xa1\x42\x3a\x6e\xb7\xed\x4a\x12\xf6\x37\xc1\xcf\x44\xb5\x62\xb1\x4a\x4c\xf7\xc3\xf3\xf4\x58\x3e\x4c\xdc\xdf\x55\x18\x53\x45\xa2\xc3\x16\x0b\x15\x98\x03\xe9\xca\xb9\x4e\xab\x35\x98\xd7\xe7\xb7\x63\x29\x55\x2a\x01\xa2\xdb\x0d\x13\xce\x7d\xbe\xe0\x08\xa4\x55\x56\x51\x43\x8c\xad\x83\xdb\x33\xbe\x13\x62\xd1\x9b\xc0\x6e\xca\x79\xca\x4a\x63\x42\x34\x92\x0a\x75\x9c\x9b\x9c\x04\xca\xeb\x2a\x77\xaa\xa6\x80\x1f\x73\x0c\x83\xe9\x8a\x20\xf4\xd4\x4f\x71\xaf\x95\x42\xfc\x90\xfb\x0d\x63\xc7\x6c\x41\x59\x83\x22\xb8\x4f\xb5\x56\x72\x0b\x53\x83\x55\x63\x93\x1b\x3b\xcf\x5f\xb1\x15\x13\x6c\x07\xc6\x76\x78\xdc\x84\xde\x46\xbd\xd3\xcf\x64\xb7\xe5\xeb\x9d\x60\x2e\x3f\x20\xc1\xcd\x65\x9c\x1f\x08\x81\x98\x55\x2b\xe6\x54\x45\x02\x5e\x04\x52\x21\xdf\x71\xe8\x56\x9e\xb0\xaf\xd3\xed\x5c\x0c\x41\xbc\x42\x07\xe4\x4e\x07\x8e\x85\x92\xeb\x6b\x4c\x2d\x9d\xd1\xe9\x8a\x76\xd1\xba\xaa\x3f\x75\xba\x52\x3c\x4f\xa1\x40\x0c\x05\x18\xe1\xf7\x4e\xcc\xab\xe4\x73\x6c\xcd\x65\xf7\x60\x03\x6a\x63\xb7\x65\x72\x23\x78\x88\x64\xea\x6b\xd3\x74\xaa\x34\xf5\x64\x89\xd3\xa0\x8b\x91\x34\x9b\x39\x07\xa1\x13\x7b\x68\x37\x93\xd8\x74\x8a\xee\x99\xea\xfd\x3d\xb4\x62\xff\x91\xde\x07\x1c\x5a\x9d\x72\xf3\xa8\x70\xb2\xe1\xb3\x6a\x23\xa6\x92\x1f\xec\x5e\x12\x6b\xe2\xe4\x11\x64\xcf\xe2\xfe\x0c\x17\x52\xdb\xb5\xdb\x80\x7b\xd6\xd3\x56\x2b\xbc\x5e\x92\x15\x72\x44\xa2\x59\x47\xdc\xa0\x8d\xc3\xe5\xf3\xe4\x05\xf9\xef\x71\x11\xe8\x54\x0e\xbc\x0d\xb2\x01\x88\x4a\xe9\x11\xe4\x24\xd3\x6d\x6d\xed\x65\xb8\x07\xbd\x1f\x21\xb5\x95\xbb\x61\x5b\xa8\x60\xe0\x8a\x86\xc5\xcc\xec\x8b\x58\xc1\x2a\xb7\x8a\x30\x04\x11\x63\x98\x1a\x57\x92\x52\x45\xb0\xef\xb5\xd1\x7f\x77\xd7\xfb\x9a\x45\x62\xe9\x9c\xa0\x72\x28\xb4\x8d\x2f\x1c\xc4\x40\xd3\xe5\xab\x8d\x66\x44\x02\x4b\xb3\xae\x08\x89\xe4\xb6\x25\x5c\xa1\x53\x3f\x26\x96\x23\xf2\x18\x91\x42\x50\xc2\x06\xb6\x02\x9e\x02\xd2\xb8\xb5\x2a\x3e\x4a\xf0\x65\x29\x4e\x2f\x45\x3b\x80\x99\x6e\x4d\xb6\x8d\x60\xb9\x82\xff\xae\x8f\xf4\x43\x08\x97\x8c\xf5\x58\x13\x06\xf9\x36\x18\xc9\xb6\x05\x99\x18\x8d\xb2\x40\x46\xdb\xab\x5a\x4c\x35\xdc\xe5\x61\x44\x40\xd2\x63\x50\x14\x42\x07\x51\x83\x1b\x3d\xf9\x69\xd8\xba\xc7\xa3\x9f\x63\x05\xba\x8c\x2d\xde\x45\xdf\x24\xd4\x23\xe0\xb8\xbf\x82\x2d\x80\x3c\xb1\x92\x8e\xa1\x42\x08\x51\x03\xb9\xd4\x2c\x52\xef\x43\x53\xff\x35\x2a\x7d\x66\x09\xfe\x0b\xb4\xf9\x51\x53\x5e\x9b\xef\x3a\x39\xd8\x61\xa3\x51\x8e\xb7\x1a\x65\x80\x3b\x51\x5c\x0e\x78\x0e\xc5\x66\xc7\x7a\x70\x2b\x22\x20\xf1\xf4\x50\x12\x18\x14\xc5\x04\x9c\x1e\xcc\x2f\xc3\x60\x0a\x56\x92\x22\x2d\x75\x23\x15\x75\xbc\xe6\x87\x10\x07\x69\x52\x04\x16\xcc\x1a\x9d\xf7\xc2\x4c\xab\x78\xb9\xe1\x79\x90\x0b\x7e\x67\xbc\x36\xba\x8a\x3b\x50\x19\x6c\x55\x2d\x57\x34\xae\x6a\xc3\xf7\xda\xc0\x24\xbb\x3c\xf5\x22\x32\xff\x22\x12\xd5\x2c\x6b\xd6\x81\x71\x0b\x62\xad\xe6\x54\xce\x3f\x76\x7d\xdb\xd4\xcb\x17\xc7\x0d\xcb\xae\xac\x1a\xe2\xf3\xef\xa7\x1f\x9f\x69\x3a\x91\x61\x5e\x42\x36\x6d\x7c\x5d\xf5\x6f\x76\xf3\x47\x5d\xba\x64\x1b\x5d\x5c\xdf\xe4\x81\xe5\xae\x5a\x34\x88\x29\xe1\x4d\xed\xa6\x05\x76\xbc\xb4\xc7\xbb\x66\x4d\x1b\x24\x2e\xd2\x6c\x36\xb2\xbc\x44\xc0\x36\x02\x89\xfe\xc3\x08\xa2\xac\x31\x73\x65\xab\xf3\x43\x15\xce\x1c\x8a\xfb\xf5\xd1\x65\x33\x26\x32\x52\xb8\x28\x1b\xc7\xc0\xb8\xa2\xad\xfb\xe0\x20\x82\xb6\xc5\x4a\x81\x45\x18\x97\xc2\x3a\xb2\xfa\x6a\xac\xea\x81\x3c\xc2\x55\x58\x71\x2a\x49\xfd\x10\x56\x89\xd3\xac\x45\x61\x12\x4a\xd6\xa4\x0b\x62\x05\xc8\xcb\x67\x8f\xe9\x81\xc1\x4c\xbb\xee\x01\x5d\x07\xfb\x5b\x29\x9a\x8c\x5d\xe9\x99\x0d\x20\xa0\x68\x3a\x23\x9e\xa6\x0d\x61\x22\xaa\x56\x0a\x4d\xb3\x5e\x84\xd4\x4c\x6c\xa7\x84\xa2\x09\x42\x92\xb8\xc3\xf4\xfa\x0b\xa9\xd9\xa8\x5d\x3f\x70\x6b\xee\x0b\x28\x1a\xc6\x74\x88\xe9\xa0\xb1\x40\x3d\xa3\x0b\xf5\x4e\x95\x31\xc8\x60\x2b\x5e\x2f\x7a\xbd\x6f\xf4\x1e\x2e\xb5\x44\xac\x09\xc9\x5a\x7d\x19\x6d\x65\xee\x04\xec\x2e\xc5\x12\x08\xfa\x9d\xff\x96\x16\x39\xd1\x81\xbe\xf9\x44\xa8\x34\x2e\x82\xf4\x7d\x85\x1c\x7d\x31\xf9\x45\xa9\xcb\xa1\x27\x0e\x43\x89\x46\xaf\xb3\xf7\x12\x98\x80\xae\x68\xad\xce\x1a\x4b\x94\x53\xb0\x85\x67\x9b\x95\x42\xe8\x88\x92\x01\x35\x39\x72\xfb\x9f\x38\xb6\x9a\x81\x20\x23\xf2\x87\xfe\x0e\x97\x25\xaa\x3f\xd8\x2c\x44\xbd\x77\x75\x40\x3e\x05\x1d\x32\x99\x0a\x37\xc8\x33\x62\x38\x60\x70\x79\x28\x15\x5e\x72\x76\xa7\xd6\xcb\x6a\x15\x60\x45\x5e\x6b\x22\xf6\x00\x00\x65\xc2\x3b\x37\x11\xf8\xe5\xf5\x2a\x56\x8b\x5a\x89\xa8\x2d\x25\xd6\x80\xb0\xce\x08\xe6\x4a\xac\x46\xd2\xc3\xb3\xb7\x74\x60\xb8\x06\xad\xd2\x9f\xf3\xc5\x4a\x17\xf0\x46\x94\x2a\xb0\x2d\x59\xaf\x87\x14\xd7\x31\xfb\x52\xdc\x8c\xcc\x51\x12\x5b\xdc\x0d\x6a\x34\x20\x19\x4c\x9c\x2f\x73\x5c\x76\x81\xa2\x49\x5a\x43\x4f\x86\x67\x95\x1b\xea\x37\x34\xb3\x4e\xdd\xc9\x5b\x6b\x7b\xcb\xd4\x3f\xb0\x12\xcb\x65\x86\x6e\x40\xbf\x07\xe6\x69\x04\x09\x75\x4b\xca\x5b\xb8\x75\xf4\xc3\x3a\xac\x14\x24\x5c\xca\x90\x8c\x4c\x2e\xa6\x27\x2a\x93\xc5\xa6\x28\xcb\xd6\xea\x89\xc7\x7c\x1f\x9d\x61\xc4\xf7\xb2\xfd\x1d\x54\x26\x1c\x55\x80\xca\x67\x93\xcd\x3a\x8c\x96\xa6\x07\xf4\x26\x95\x63\x50\xec\x25\xb8\x15\x91\x56\x14\x23\x02\x5b\x68\xaa\xe5\xa6\x5c\xaf\x69\x3f\x68\xeb\xfe\x2e\x55\x87\x1e\x59\x16\x28\x50\x20\x82\x96\x9e\xb7\x95\xa9\x08\x35\x85\x56\x19\x41\xd0\x76\x83\x31\x81\xe8\x07\xec\xb4\x3e\x3a\x7c\xff\xfe\xf4\xd2\x1f\xd2\xbc\x0f\xea\x82\x58\x89\x6f\x9c\xa1\xde\xa8\x5f\x66\xae\xe7\x16\x30\x86\xf0\x06\x83\x5a\x62\x1f\x5c\x48\xa6\xac\x76\xfa\x5c\x36\xa0\x3d\x0d\xf7\xc5\x68\x79\xd4\xff\x62\xdf\xfa\x25\xbf\x31\x77\xf3\x31\x31\x7d\xfb\x29\xff\x4d\xc2\x2b\x8b\xe0\xaa\x07\x5b\xcf\xdf\x08\x79\x17\x03\xea\x40\x53\x8c\xae\x30\x40\xa4\x77\x39\x44\x2d\x9a\xfb\x06\x67\xc5\x55\x8a\x9b\xf3\x03\xd6\xc8\x36\x2d\x36\x0c\x4f\xee\xae\xae\xfe\xbe\x03\x7b\xc6\xe2\x10\x11\x0f\xb6\xff\x9c\x57\x6b\x39\x50\x7e\x71\x3f\x24\x9d\xbf\x06\x66\xf0\x41\xe3\xf4\xeb\xc7\x6e\xcb\xe6\xb3\x74\x36\x74\xcf\x1f\xec\xaa\x94\x15\x7b\x6c\x09\xf6\xe0\x05\xc9\x2f\x7c\x9f\x4e\xcb\x47\x10\x2f\x46\xd5\xb1\x13\xdd\x42\xf4\x81\xce\xa6\x08\x78\xab\xe9\xbc\x5b\x98\xdf\x8d\x94\x90\x32\xf1\x7f\xa0\x4d\xf6\xd8\xf3\xe3\x78\xac\x52\x37\xcd\x11\xf6\xee\x75\xbe\xde\xc5\x5a\x12\x6e\x9d\xcb\x74\x4f\x12\xd8\xf8\xfb\xb2\x30\x1a\x82\x0f\x28\x67\x10\x36\xfc\x84\x49\xeb\xef\x76\xf8\x62\x6f\x51\x66\xfc\xbe\x49\xd0\x13\xd5\x81\x0f\x9d\x07\x91\x67\xc6\xf7\x9c\x07\x0b\x7c\xa4\x4e\xac\x46\xe0\xac\x93\xaf\x7b\xd1\x7f\xa7\xc1\x6a\x32\x69\xc1\x20\x42\x5d\xeb\xad\xde\x34\x3a\x0a\xd6\x2d\xda\x0a\x0e\x04\x92\xce\x1e\xa4\x69\xe0\x3d\xea\x12\x7d\xbb\x17\x84\xf7\x34\x45\xb3\x65\xd5\x93\x08\xcf\xee\x6a\x30\x38\x4f\x88\x6c\xd0\x49\x06\xdf\x53\xf9\xb2\x94\x51\x51\x3e\xf4\x05\x16\xba\x32\xe6\x34\x75\x07\xf0\x87\xfe\x9e\x28\xa5\x80\xe6\xf9\xca\x17\x30\x4d\x56\xd5\x15\x6f\xfc\xb7\xf4\x87\x0e\x75\x11\x00\x62\x34\x15\xf6\x16\x95\xa8\x92\x47\xa4\x6f\x57\x8f\x5a\xf3\xe9\xaa\xa8\x19\x5f\xb0\x2e\x6a\xa3\xae\x6a\x7c\x4c\x1b\x12\xd2\x97\x48\x50\x8f\x53\xea\x09\xad\xc2\xb5\xb0\x43\xe2\x39\xfa\xd6\x52\x1e\xb3\xfc\xf7\xc4\x00\x4d\x7a\x73\x70\xaa\x83\x18\xe4\xdb\x22\xe9\x95\xa0\xde\x89\xd3\xae\x60\x52\xce\x4a\x02\xdc\x6c\x50\xe7\x0b\xbe\x81\xc8\xd7\x5d\xaa\x42\xa7\x5d\xb5\x27\x37\x7c\x81\x2d\x9a\xf8\x5f\xf5\x13\x8a\xf8\x65\xfe\x0f\x49\xbd\x70\x3f\x80\x66\x9d\x22\x5e\xa7\x5a\x75\x9a\x89\xc5\x4a\x4d\xc5\x9a\xab\x4c\xdc\xbe\x70\x6c\x5e\xba\x9b\x4e\xde\xb3\x80\xa3\xb9\xdd\xe4\x9f\xab\xcd\x6e\x93\x3a\x40\x14\x65\x4c\x7c\x18\xeb\xfb\x67\xd3\x5a\xfb\xe1\x6d\xf7\xd7\x2b\xef\x87\x35\xdc\xad\xc3\x67\x9b\xb0\x8c\xaf\x70\x6c\x63\x47\x26\x25\x89\xfa\x06\x9b\x23\xa4\x73\x0e\x16\x4f\xc8\x30\x77\x3f\x8d\x34\x2d\x50\x1e\x93\x2d\x18\xd2\xce\x89\xec\x3c\x78\x21\x8b\x6e\x34\xcb\x6a\x55\x64\x3c\x51\xf7\xe4\x00\x1b\x15\x62\x26\x84\xc9\xe3\xd2\x11\x9c\x91\x3c\x2a\x4d\x40\x45\xc7\x9a\xb2\x96\x79\xe0\xd0\xf4\xec\xf5\xdb\x4b\xb8\x33\x11\x4e\x8a\x8a\x4d\x7d\xb6\xd8\xc6\x78\xe6\xea\xe4\x13\xaf\xea\x3a\xe1\x84\xea\x0a\x13\xcf\xd4\x68\x42\x09\x27\x72\xbb\x56\x16\x63\x80\xd5\xe6\x0d\x9c\x09\xc6\xac\x9b\xdf\x4a\xa2\x16\xe4\x44\x28\x04\xe2\x7b\x32\x33\x38\xcb\x43\x4f\x3a\xab\xd6\x5d\xcc\xfa\x65\x0b\xef\x64\x75\xab\x29\xb5\x55\x4f\xef\xe6\x2a\x11\x82\x69\xe9\x4a\x3e\xaf\x1c\x1d\x86\x27\x14\xfb\x70\xc4\x04\x18\x1e\xe1\x79\xb8\xee\xa1\x25\x25\x6d\x14\x66\x59\xb6\xb7\x19\x6b\xdc\xc1\xa5\x6c\x6f\x7d\x42\xc0\xce\x51\x06\x4d\x67\x00\xec\x2c\x5a\xce\xb0\xca\xff\xf7\x7f\xff\x9f\xa7\x47\x3c\xec\xa3\xbe\x5d\xd3\x97\x72\xcb\x0c\x2f\xcb\x20\x15\xa4\xa7\x7f\x26\xa9\xe7\x46\xcd\x57\x3e\xc8\x57\x62\xbf\x41\x0a\x28\xbf\x53\x05\x3b\x3e\x12\xfd\xc5\x14\x21\x51\x07\x77\x26\x05\x09\x8b\x9c\x8a\x36\x24\x6e\x86\x07\xc6\xdf\x77\xd5\xe2\x53\x26\x7a\x92\xe7\xe9\x5f\xf8\x57\x0a\xcf\x66\x3d\x33\x99\x0e\x3b\xa2\x0a\xe4\x1c\x50\xe6\xd0\x8c\x1a\x07\x8d\x3a\x40\x78\x22\x9c\xc7\x3c\xc0\xad\x99\x67\x1a\x20\xbb\x4b\x25\xdb\x1d\x1b\x6c\x31\x42\x58\x6b\x67\x94\x02\xd7\x33\x4e\x64\x8e\x2d\xa8\xc1\x5d\xdd\x46\x75\xa0\x79\xea\xae\x78\x22\x4e\xb2\x3a\xc8\xf2\x4a\x3f\x36\xcb\x9b\xe7\x34\x64\x15\x3b\x22\x57\x74\x77\x52\xe8\x09\xd1\xb7\x25\x04\x2b\xfa\x93\xd0\x01\xc4\x36\x7e\x7a\x27\xcc\xde\xb8\x7d\x8e\x6b\x4f\xa4\xdb\x8d\x30\x5f\x6c\xe7\x4b\xad\x08\x12\xd5\x4b\xfd\x4c\x28\x9d\x7f\x5f\xd2\x9f\x91\xbf\x3d\x7b\xe7\x8f\xbd\xf2\xd7\xf9\xbc\x44\xf2\x3b\x7c\x10\xf2\xd3\x19\xd8\xd3\x8a\xc8\x19\x64\x3f\x12\x9e\x92\xaa\x17\x44\xc4\x57\xa2\x9e\x26\x72\xff\x2b\x9f\x09\x6e\xb4\xda\x9c\x6f\x61\xcf\xf3\x1b\xf9\x49\xd3\xa5\x6e\xfb\x6f\xe4\x4b\x92\x61\x90\x2f\xa0\xb0\xc7\x77\xf0\x60\x9a\x75\x37\x9c\xd9\x77\x62\x1d\x98\x8d\x3b\x62\x39\x83\xa8\x01\xe9\x62\x90\x7f\x25\xa2\xff\x2b\x16\xfc\x2d\x2d\x07\x55\x4f\xcd\x62\xd0\xa5\x6f\xf8\x1c\xc5\x15\xd0\x89\x7c\xb9\x9c\x42\x0c\x75\x8f\xc1\x1d\x68\x9a\x39\x48\x9c\xf2\x5f\x97\x4a\xf8\xa9\x7c\x21\xfd\x75\xce\x06\x12\x6d\x83\x65\x7e\x09\x53\xe0\x93\x67\xc3\xb5\x08\xb2\x6a\x66\xb5\xe6\xb8\x5f\xa3\xad\x86\xfc\x30\x7b\x41\xf3\xdf\x66\xae\xfc\x11\xff\x4c\xd7\xa3\x5a\xdc\xe2\x86\x6b\x3b\x68\x26\x84\xa1\xa6\x26\xc1\xa4\xb9\x10\x52\x5a\xdc\x4c\x01\x93\x9c\x57\x47\xb0\xa7\x94\x10\xa2\x56\x54\x31\x4b\x28\x83\x9a\x21\xb4\x4c\xc3\xd3\x81\xc9\x3e\x6c\x10\xdb\xf4\x73\xdc\xcf\x00\x48\xba\x99\x4f\x80\xb2\xf6\xcc\xc3\xd1\xc0\x87\x40\xaa\xde\x75\xf4\x67\xb8\x7a\x7e\x7d\x68\x69\x87\x0b\x24\x99\x19\xf1\x94\x8b\xd2\xb9\xd3\x00\x08\xbc\x08\x07\xb8\x88\x9a\x71\x95\x69\x63\x51\x7d\x98\xd0\x3e\x9f\x53\x36\xf1\x4e\x3c\x9b\xae\x30\xcf\x95\xcf\x92\xa9\xb3\x4c\x25\x2e\x56\x73\x54\x65\x98\x47\x6c\x53\x26\x2c\xb1\x4c\x84\x63\x8f\xd7\x13\x25\xee\xc4\xa8\x21\xcc\xde\x9a\x47\x78\xa3\x25\xef\x58\x5e\x0f\xc1\x21\x21\xf6\x57\xbd\xa7\x9c\xf2\x6d\xe0\xd6\xc6\x39\x33\x76\xd4\x72\xf4\x93\xbd\xf7\xe5\xc7\x24\x68\xa7\x11\x70\x48\xe0\xe0\x93\xdd\x75\xb5\x50\x55\xda\x54\x21\x59\xe5\x22\x9b\xdf\x6a\x19\x59\x67\xf8\xbf\xee\x29\xb2\x61\x4e\x1e\x62\xa5\x16\x39\x71\x09\x13\x45\x3a\xf5\xc6\x67\x77\xf8\x71\xce\x8c\x0f\x26\xd8\x1a\x31\x6d\xea\x26\x41\x18\x4b\x01\x72\x8a\x8f\x29\x10\x51\x30\xab\x8a\x88\x4f\x01\xf1\xfb\xb0\x2b\xee\xc9\x86\xd9\x80\xca\x95\x78\x07\x73\xaa\xf6\x0b\xca\xb1\x71\x31\xd3\x55\xb9\x4f\x38\x69\x60\xf1\x8b\x9f\x77\xb4\xe3\x0b\x48\x43\xa3\x12\xbc\x93\xb0\x0a\x04\x22\xdf\xe9\xc3\xdf\xbe\xfd\xd8\xf1\x32\xf8\x8b\x9a\xdf\xbe\xfb\x48\x72\xfa\xc3\xdf\xbe\xff\x88\x1b\x9a\x51\xe1\xec\x8a\x55\x94\xe3\x1a\x50\xd0\xa0\xb7\x6d\x79\x5d\x35\xbb\x4e\xf8\x35\x7c\x7a\xfa\xf0\x59\x96\xe2\x73\x1f\x6f\x71\xe7\xc5\x3f\xd8\xe1\x85\xcb\x8a\x77\x78\xbd\xdb\x64\x3a\xc6\x4e\x28\x80\xfd\x72\xc5\x6d\x06\xb2\x9c\x9b\xfc\xdd\xfd\xe6\xe1\x56\x05\x0f\x96\x3a\x6f\xea\x89\x3f\xc9\xaf\x17\x18\x08\x0f\xfd\x77\xd7\x52\x13\xdc\xee\x5c\x4a\x60\x03\xe6\xbe\xdd\x2d\xd3\x6d\xd9\xcf\x62\xaa\x64\xc1\x79\xd0\xe5\x38\x4b\x7b\xe1\x41\x74\xdd\x60\x53\x1d\x82\xb7\x25\x26\xc6\xe0\xce\xf1\x73\x90\x79\x57\x65\x6d\x54\x40\x49\xad\xc7\x12\x05\x1d\xcc\xb5\xce\x94\x1c\x43\x5f\x37\x4d\xd2\x9e\xab\xc3\x7e\x7e\x65\x2d\xc2\x4f\x10\x03\x7b\xe5\xea\xb9\xa2\x19\xaf\x17\xb8\x09\xc0\x65\x09\x0f\x55\xed\x71\x05\xfa\x2b\x9b\xd8\x36\x1a\x73\xec\x0c\x1f\x96\x2c\xaa\x37\x75\x97\x70\xb8\x19\xa9\x29\x35\xd1\xdc\xe7\xae\x20\x38\x81\x62\x9b\xcb\x1c\xdf\x97\x71\x52\x04\x5a\xd5\x99\xb9\x5d\xa8\x04\x41\xc4\x92\x2d\x0d\x65\x44\x84\x46\xec\x59\xac\x9a\xef\xbd\x1e\x8d\xd1\x65\xaa\x79\x48\xca\x4d\x3a\x2f\x64\xb8\x5b\xcb\x02\xba\xa0\x9f\xe9\x8f\x9b\xd7\x81\xc5\x92\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x73\xd1\x36\x9d\x3f\xb7\xe3\xfc\x45\xb3\x6e\xfc\xb9\x8e\x5f\x43\x00\xd1\x44\x3f\x2c\x06\xbc\x99\x64\x7b\xdc\xd6\xdd\xcb\x09\x83\x93\x47\x20\x27\x06\x23\x19\x03\x53\xbf\x38\xd3\x79\x01\x49\x07\xe1\x0b\x64\xc1\x2b\xc6\xb5\xa8\x55\x1b\x40\x9d\x2a\x7c\x12\x6c\xda\x46\x44\xf8\x8c\xf0\x96\x83\xb9\xf6\xd0\x2e\x84\x6f\xf9\x83\x8b\x0f\xad\x7b\xff\x3d\xc7\x74\xe3\x5e\x42\x96\xbe\xde\x73\xa1\x1a\x90\xca\x6d\xde\xf6\xd5\xa2\xda\xe6\x8e\x5c\x9e\x05\x29\x89\x08\x4c\x01\xbf\x1e\x0a\x4e\x9a\xc9\x3a\xf5\x9c\x70\x58\x0c\x8a\x54\x28\xe1\x14\xb5\xde\xea\xa6\xe1\x6c\xc6\x0c\xb8\xbf\x69\x52\x27\xce\x21\xb2\x1e\x9f\x28\x79\xca\x85\xcd\xd9\x12\xfb\x48\xcb\xcf\x06\xd5\xc2\xc7\xfe\x39\xac\x26\x87\x0d\x6a\x0b\xcf\x53\xfd\xd2\xfc\x48\xd2\x1c\x4a\x98\x36\xf2\x86\x15\x70\xbb\x35\x66\x07\xf7\xc9\xf2\xe3\x4a\x6e\x42\x0d\x08\x31\xc8\x98\xfb\xf1\x6d\x05\x27\x82\x44\x28\x53\xeb\x16\xce\x9d\x97\x8b\x1c\x06\xd5\x70\xb8\xab\x59\x63\x9e\x17\xc1\xe8\x09\x84\x63\x99\x58\xfd\x6c\x9f\x1e\xc6\x95\x63\xfa\xe7\xaa\x37\x2d\xca\x60\xa6\xe6\x65\x7f\x03\x3f\x14\x98\x9b\xf0\xe4\x8a\xfa\xbd\xfb\x21\x3c\xd5\x89\x14\x3e\x43\x1b\xcf\xf8\x68\x2f\x94\x2c\xfe\x09\x3f\x84\x38\xea\x54\x0e\x18\xff\x09\x34\x00\x65\xb0\x45\xbd\x01\x3e\xd1\x88\x37\x25\x35\x0a\x76\xa0\x30\x59\x54\x88\xf4\x8f\xac\x0f\x30\x2a\x8c\x6f\xda\x0b\x6c\x4e\xa2\xe9\xdf\xbb\x74\xad\x1f\x35\xe9\xa9\x6f\xcd\x48\xda\xbf\x57\x3d\x95\xfe\x8f\x8f\x86\xa3\x24\x36\x64\x21\xdd\x05\x7e\xfa\x9f\x11\xd4\x50\x04\xf7\x79\xa2\x43\x07\x42\x95\x66\x65\x5a\x68\xbe\x9e\xd0\x84\x2a\x32\x35\x4e\x7f\x2d\x19\x7a\x5b\x1a\xae\x24\xf5\x7a\x5b\xb6\x4c\x32\x74\x36\xdd\xa5\xe1\x2c\x9a\x1a\xb0\xc3\xad\x6f\x89\xb1\xc6\xe5\x5c\x8e\xaa\x75\x34\x42\x61\x62\x12\x21\x55\x70\x24\x35\xda\x1f\x76\x55\x4c\xbf\xdc\xa5\xd0\x74\x5d\x0a\x5b\xec\xbc\xf3\x05\xcf\x22\x15\x82\xce\x2c\xa0\x7c\xd6\xf7\xaa\xcb\x60\x20\x26\xb6\xed\x97\x6a\xf5\xb5\xae\x16\x7d\xea\xd2\x43\x3f\x84\x6d\xdb\x2c\x25\x52\x92\xf3\x3b\xa0\x83\xb5\x5b\x21\xf6\x0a\x03\x5c\x11\x95\xda\x34\xe0\xf8\x1c\x89\xc8\xeb\x0c\x97\x21\x18\x6a\xa4\xe5\x8d\x86\xa1\x2a\x5f\x9d\x90\x41\x44\x15\x57\x15\x34\xea\x5f\x56\x9b\xdc\xc6\x4f\xd5\xe7\x48\x80\x78\x07\xf1\x8e\xb7\x71\x77\xfb\xdb\x1a\x86\x05\x14\x7c\xd8\xe4\xb5\xdc\x6e\x56\xec\x37\xc4\x72\xb5\x38\x0e\xc3\xd6\xaa\x5f\x4d\xd4\x2c\xb5\x0d\x48\x0a\x90\x67\x6a\x67\x03\x61\x77\xb5\x6e\x40\x94\x82\xe6\x90\x51\xfc\x77\xd5\xf2\x3e\xea\x1d\x92\x2a\x22\xfb\xab\xed\x78\xa8\x21\xc9\xaa\xe5\x78\x8f\xa6\xed\xf1\x9f\x1e\x16\x4f\x64\x13\xc3\xe6\x6a\x74\x53\xc5\x89\x32\xf0\xf0\x20\x65\x2a\x5a\x75\x70\xb3\x67\x94\xe1\x83\x82\x81\xe8\x7b\xf6\x7b\x12\x68\xf4\x82\xb3\xcc\xcb\xea\x41\xf6\x84\x62\x21\xc8\x9d\x56\x2e\x0c\x01\x0a\xaf\xb2\x79\xd8\x45\x6d\x37\x19\x6d\x8d\x4c\x25\x3f\x3a\x4e\x78\xa3\xf0\xaf\x61\x0f\x4c\xe2\x19\xd6\xec\x64\x87\x78\x40\xc4\x00\xcc\xf9\x08\x11\x07\x72\x21\xd1\x81\x12\x93\xd0\x41\x5d\x89\xd4\xb6\x40\x19\x80\xa8\xfa\x01\x85\x9f\x9c\x1c\xe3\xfe\xe0\xbd\x1c\x66\x4c\xdc\x97\x86\xb9\x7e\xcc\xc7\x34\x60\x56\x1b\xa6\x8f\x2d\x50\xdb\x93\x78\x90\xa5\xd8\xbd\xf3\xdf\x30\xc3\x85\xd6\xd1\xaa\x32\x59\x79\xad\x11\x95\x6b\x8a\x0f\xf5\x72\xe0\x9c\x7f\x1f\xdd\xd2\xbf\xa7\x9b\xcd\xd3\xa2\x78\x34\x31\xea\x80\x7f\x72\xc3\x1e\x58\xe2\xa9\xb2\x62\x40\x25\x83\x9a\x02\x76\x74\x7a\xee\x18\x20\x5a\xa7\x0f\x7c\xf6\xf3\x39\xcd\x4c\x47\xe1\x67\x4e\x70\xd7\xaf\x5e\xc7\xf4\xbf\x21\x6a\xe7\xed\x7b\x78\x43\x8b\xe9\x62\x38\x96\x01\x2b\x1f\x64\x0d\x7c\xdf\xef\xec\xa0\xbb\x6b\x51\x76\x8e\x68\xf7\x66\xcf\xa4\x48\xb8\xc6\xbd\x53\x12\xb0\xd0\x7e\x5a\x1d\x1b\x3d\x01\x38\xcd\x44\xfb\xd6\xff\x2b\x19\xe9\xa9\xe6\xa7\xd0\xe0\x1e\x56\x3a\xb9\xa9\x3e\x55\x54\xe0\x57\xfa\x83\xef\x99\x46\x2b\x48\x7d\x74\x02\x6a\x97\xb3\xbf\x89\xf2\x6d\xac\x9c\xc3\x38\xcb\x74\x1a\xaa\xd1\x54\x62\x24\x8a\x3d\xd7\x6e\xcd\x17\x30\x9f\xe4\x34\x6d\x16\x3b\x08\xe9\xb7\xea\x23\xf3\x37\x38\xac\x34\xc4\xd4\xad\x34\xb8\x1e\x58\xe6\xaa\x57\xa4\x9a\x49\x83\x8a\xe3\xf0\xfc\xcb\x34\x44\xb6\x6e\xf2\x1e\xc1\x5e\x29\x1d\xa7\xa7\x80\x87\x41\xb4\x91\xa0\x6c\xb2\xa6\x2b\x93\xec\xe1\xc5\x9f\x22\xac\xf5\xbd\x86\x5f\x93\x7c\xb3\x0e\x50\x09\xde\x5f\x2a\xfc\x8a\xf0\x8d\x39\xf3\xc7\x6c\xb1\xc6\xd6\xc5\x58\x6f\xd5\x8c\x79\x02\xa1\xe3\x40\xb4\x2a\x6d\x89\x05\xd3\xa0\x0d\xd8\x83\x6a\x03\x8c\x14\x4c\x9d\xbb\x94\x11\xda\xd4\x03\x28\x47\xc4\x18\xe0\xc0\x74\x4e\xc9\x34\x8e\x89\x8a\x91\xd1\x78\x7c\xde\x70\x3c\x62\xc6\x15\x81\xa8\xbd\xd7\x34\x14\x3b\x36\x2c\xca\xec\x5b\xe3\x12\x42\x53\x2f\x2c\x3b\xf7\x4d\x18\x53\x16\xe2\x95\x2f\x75\x91\x63\x78\xbf\x97\x6d\x0f\x8f\x49\xb7\x42\x99\x9e\xa1\xfe\x24\x06\x22\xa1\xaa\x81\xbd\x72\x64\xab\xdc\x05\x75\x74\xba\xcc\x5d\x30\x89\xe6\x99\x63\x76\xb5\xfa\x93\x03\x45\x4d\x05\xd0\xb6\xb4\x99\x2c\x16\xfc\xee\xe4\xcb\x67\x05\x91\xad\x94\xa1\x0e\x7e\x7b\xb0\x55\xd3\x7c\x92\x88\x60\x73\x7c\xfa\x9c\x25\x87\xd5\x95\x4c\x0e\x20\xfb\x26\xce\x25\x19\xaa\x5a\x84\x81\xba\x5f\x72\xc2\x44\x17\xd5\x6d\xed\xd4\xc2\xbb\xb1\x61\x95\xcf\x55\x3f\xa6\xa0\x1e\xf5\xac\x1a\x57\xa4\x3e\x37\xcc\x98\x7c\x99\x53\xd9\x94\x33\x59\xec\x6b\x3f\xf3\xb5\xe7\xc5\x35\xd3\xef\x22\x0a\x66\xae\x69\x13\x9d\xe1\xa5\x73\x76\xad\xe2\x56\x06\x92\xc4\xd6\xb0\x70\x2f\xb0\xb3\x03\xbb\xcd\x68\x48\x50\x01\x9d\x23\x84\x44\x6c\x05\x92\xaf\x33\xa5\x66\x7c\x34\x59\x1a\xaa\xf3\xe0\x11\xa8\x06\x88\xfd\xd9\x40\x81\x83\x1c\x9b\x64\x3f\xb8\xf5\xf5\x97\x28\xae\xe2\x9c\x27\x43\xac\x14\xe4\xce\x80\xad\x2c\x10\x42\x9a\xe6\xe9\x36\x8e\x3d\x44\xdc\x57\x30\x5d\x42\xe8\x07\x33\xc0\x71\xf9\x7a\x36\x79\x65\x13\xd9\x9b\x12\x86\xb2\xa2\x20\xec\xdb\x9c\x83\x91\xef\x19\x3e\x60\x32\x85\x19\xce\xc3\x9e\x0a\x34\x01\x63\x73\x4c\x89\x9b\x11\xdc\x90\xa5\x97\x5a\x23\x8f\xea\x15\x60\xee\x2a\x1f\x46\x8c\x64\x91\x84\x79\xe7\xf0\xd6\x4c\x48\xc5\x3f\xd9\xbc\xe9\x5f\xe9\x3f\x19\x89\xe8\x4f\x55\x17\xe5\xe7\x7f\x99\x4c\xeb\xe2\x69\x32\x82\x1e\x8c\x2c\x22\x85\x59\xe6\x9e\xa1\x58\x30\x9d\xe0\xf8\x07\xb3\x19\xb2\xe7\x9d\x99\x59\x13\xc2\xab\xaf\x2b\x9f\xa9\x6d\x45\xa4\x30\xde\xf6\x05\x6f\x83\x36\xfb\x87\xdc\x8b\x1d\xe3\x57\xfa\xbf\x98\xe7\x70\x20\x78\x0d\x00\x61\x23\x58\x56\xed\xc4\xda\x49\xdd\xdf\xc5\xe9\x51\xf4\xac\xb9\xd3\x7d\x76\xb1\x15\x49\x4c\xe9\x7c\x48\x36\xf1\x9a\xcc\x6b\x71\x20\x13\x77\xd6\x80\x1e\xb1\x40\xdf\x3b\xd1\xbe\x4f\x2f\x39\x3a\xf4\x72\xb7\x26\xd6\x33\x30\x24\x1a\x16\x18\x2e\x8b\xd5\xa3\x4c\x0a\x0c\x51\x78\x72\x38\x08\x19\xea\x0a\xb6\xb7\x33\x29\xd2\x90\x3a\x2d\xc7\xf3\x14\xdf\x93\x61\x2b\x72\x5a\x74\x38\x2e\x9e\x6a\x1c\x80\xd8\x4a\x38\x6a\x38\x98\x0d\xed\x03\xf4\x1c\x53\xbd\x90\xbb\x04\xd7\x07\x31\x16\x9e\xe8\x81\x0f\x09\x6c\xe6\xc2\xaa\x03\x89\xe8\xb5\x41\x8b\x4d\xfb\xc0\xb8\xcc\xf3\xcd\x02\x65\xb1\xc5\xa4\x4b\xb8\x78\x8c\x7d\x3f\xc3\xed\x20\xe1\x0a\xd8\x1c\x44\x3f\x4f\x2d\xe0\xc1\x18\xcc\x89\xdf\x3e\xca\x41\x3c\x29\x3c\x17\x8a\x07\xd8\x10\xba\x48\x71\x84\x0d\xe6\x1e\x5d\x34\x6e\x55\xb1\x43\xed\x0f\x1b\xfb\x6e\xa2\x7b\x83\x65\x62\x9c\x90\x00\xda\x40\x3c\x61\x23\xab\xab\x00\x87\xe1\xcc\xc1\xce\x19\xd7\x55\x41\xd2\x3a\x3a\x73\x57\xbd\xdf\xc5\xf5\xd2\x3c\xc2\xd6\x6c\x6f\xdd\x83\x01\x61\x87\xbb\x57\x19\x10\xa8\xe2\xca\xc7\x5f\x99\x1c\x11\x13\x1f\xa7\xdf\xd7\x9d\x84\x38\x2a\xa9\x8f\x3e\x10\x72\xdc\xc2\x4e\x03\x3f\xc4\xdf\xcb\xb0\xf4\x87\xd1\xe9\xa4\x0a\xf9\x9f\x5b\xae\x13\x87\x04\xeb\x92\x26\xc1\x6c\x41\x4f\xe9\xbc\x93\x50\x2e\x28\x84\x83\x89\xd5\x51\x5e\x8b\x50\x37\x6a\x6f\xce\x66\x46\x93\xdc\xd2\x64\xfd\x13\xfb\x2b\x64\xc8\x78\xe2\x2c\xcc\x3a\x9c\xc1\xb9\x61\x26\xa7\x0f\xc7\x87\xee\x48\x6c\x38\x0f\x49\x93\x75\x18\xe8\x84\xcd\x80\xa1\x0c\xbd\x9e\x3d\xc1\x1c\x84\x28\x40\xd7\xa6\xe8\xd1\x9e\x89\xb2\x01\x44\xb1\x50\xfe\xc8\x6c\xed\x9f\x28\x4f\x88\xee\x75\x42\xd8\x5f\xdf\x77\x7b\x09\x5b\xe0\x2a\x10\xf2\xc7\x4c\x2b\xf5\x95\x0f\xd3\x3e\x86\x43\x14\xc3\x5f\x3c\x3a\xc2\x26\x90\x34\xe5\x07\x2a\xfe\x1d\xb8\xbb\x5f\x09\xac\x10\x78\x95\x78\xa6\xb4\x89\x76\xc3\xa0\xaf\x30\x6a\x94\x09\x78\x3b\x6a\xda\xc7\x7b\x38\xf0\x16\xf1\xc6\xcf\x40\xf2\xe3\xd3\x75\xcb\x91\xd7\xf9\xee\xf5\x4a\xe4\x7c\x41\x9a\x7b\x9a\xfc\xee\xae\x26\xc5\x8a\x7f\xa2\x4d\xe7\xcf\xa2\xb1\x96\x70\x32\xf2\xa3\x2d\xf7\xb4\xf6\xbd\xb5\x16\x8a\xca\x9f\xca\x72\x1b\x34\x11\x77\x3f\x70\xee\x05\xb7\x1b\xdb\xd5\x4f\xd0\x60\xe5\x15\x2c\xec\x4e\xd4\x9b\xbd\x7b\xe8\x1e\xd9\x7b\x1f\xef\x3e\x5d\x99\x49\x28\xf7\x04\x21\x18\xd3\x45\xbb\xeb\xc5\x8b\x45\xb8\xef\x75\x30\x2c\x6f\x67\xc1\x89\x05\x3f\x2d\x3b\x8a\x26\xaa\x9a\x3c\x2b\x7d\x38\x1f\xd7\x35\x2b\xd0\xee\xef\x5e\xec\xe2\x93\x4e\xb8\xf6\x04\x12\x05\x07\xab\xf4\xf8\x9e\x8a\xcf\x2c\x8f\xe7\x28\x48\xde\x5f\x60\xe0\xab\x1a\xd5\x15\xfb\xaa\x06\x1d\x14\x5c\xdc\x57\xcf\xd1\x64\x1d\x8a\xbf\x41\x2d\x62\xcf\x28\x41\xae\x63\xcb\x31\x35\x70\xc4\x39\x3a\x0b\x4a\x20\xd4\x9b\x37\x7a\xe7\x9b\x96\x79\x39\x1c\x7f\x14\xf9\x2d\xb6\x7b\x57\x2f\x1a\x71\xbd\x05\xc3\x19\x96\x9d\x45\x92\x43\xcb\x36\xb1\xdc\xa0\xc6\xe1\xd5\xf7\xc1\x86\xa1\x9b\x34\xf7\x66\xd5\x04\xec\xd7\xfd\x0d\xf0\x32\xdc\x88\x34\xac\x4b\xa6\xb2\xf1\x40\x68\x76\xaa\x24\x95\x9c\x71\x9b\xb0\xd9\xd1\xe4\x40\x75\x04\x01\x59\x5f\x06\x39\xbd\xb8\xc4\xcd\x22\xed\x70\x62\x6d\x96\xcc\x09\xa4\xbf\x92\x98\x85\xf0\xf2\xfc\x40\x87\x92\xd9\xc5\x82\xfd\xf1\xab\x5a\x83\x6f\xdf\x94\xe6\x28\x59\x17\x7a\x2e\x86\xd1\x1a\x4c\x9e\x95\x1b\xc6\x14\xaf\x66\xe0\xe9\x9f\x6d\xb9\xa8\xae\x88\xfb\x7d\x47\x6b\x55\xe3\xa9\x34\xf7\x4e\xd3\x9d\xfe\x40\x6e\x24\xb0\x97\xe6\x8b\xc8\xf0\x30\x97\xcc\xf0\x86\x5e\x4f\xcc\xd1\xf4\x0c\x41\xa7\x3c\x13\x6d\x86\xef\x52\x2e\xe2\xf4\x10\x1e\xa1\xe2\xc3\x28\x55\x7b\xde\xbb\xdc\x9e\xf7\xf6\x21\x0c\x7e\x2e\x4d\x7f\x29\x9d\xd3\xaa\x66\x88\x96\xef\xfa\xc2\x61\x08\x3b\xb8\xea\xe1\xf7\x3d\xe0\x36\x05\x17\x12\xe5\x17\x66\x5b\x6c\x21\xae\x68\xe1\x6a\xb5\xd0\xfb\x60\xed\x6c\x8e\xba\xb1\xfa\x61\xb2\x0d\x3f\x44\x74\xed\x66\x38\x4e\xc1\x7d\xb9\x21\x94\xe6\x48\xb8\xdc\x95\x78\x1e\x65\x93\xdf\x4a\x7c\x77\xbe\xc8\xeb\xe8\x1c\xad\x8b\xce\x1e\xfe\xe2\xc7\x09\x57\xcd\x0d\xeb\x08\xcd\x99\x67\xb4\x24\xe3\xbe\xf9\x2b\x2e\xbb\xd7\x9a\x00\xe9\xb6\x8d\x78\x67\x9d\xeb\xe7\x18\x48\x34\xf7\x3c\xaa\x37\xf2\x35\x06\xd9\x6a\x7c\x56\x17\xa9\x75\x0c\x32\x6f\x0a\x5e\xb3\x97\xf4\x67\xac\xe2\x72\xaf\x95\x99\x9e\x0b\x7b\x79\xcb\x31\xc2\xc4\x30\x92\x33\x08\x3b\xcb\xf5\x95\x04\x7b\x63\x41\x14\x57\x0f\x72\xe7\xcc\x6e\x8d\xf2\xc6\x01\xbb\xe1\xa1\x02\x9d\x27\xf8\x91\x23\x5e\x73\x78\xa1\xac\x6f\x92\x84\x21\x56\x86\x7d\x82\xa1\x8d\xf5\xeb\xad\x08\x11\x58\x4d\x5c\xb4\x48\x68\xed\x03\x66\x35\x58\xcb\x64\xa6\x6f\xc6\x90\x6c\x25\x9c\x36\x07\xb7\x21\x1a\x80\x00\x8a\x06\x22\x52\x98\x38\x14\x04\x1e\x86\x9e\xf7\xe6\xe8\x16\x3c\x61\xe3\x1e\xa9\x47\x28\x4f\x90\xf8\x82\x8e\x20\xbc\x61\x1e\x80\x2c\xf6\xc2\x90\x63\x50\x70\xaf\xec\x7b\x13\x91\x8f\x80\x00\x47\xcf\xc8\xa1\xa3\x1a\x26\x5b\x94\x31\x4c\x58\x4d\xf7\x12\xdc\xdb\xf3\x5c\xb1\xce\x27\x20\x86\xcc\xb6\x11\xa7\x2c\xaa\x0b\x12\x88\xf3\xb6\xb0\xb0\x92\x4a\x98\xd9\xaf\x1d\x04\x38\x0c\x09\x94\xaf\xbb\xc6\xaa\xa0\x83\x84\x40\x3e\xb1\x25\x3f\xad\x37\x64\x0c\x55\x3c\xb1\xb8\xe7\x2f\x0c\x98\x16\xef\xb6\x4c\x9e\x85\xd6\x5b\x3b\x18\xf2\xe3\xff\xbc\x38\x7d\x7f\x90\x7e\x7e\x7a\x73\x73\xf3\x94\x8b\x3f\xdd\xb5\x6b\x8e\xb6\x51\x70\xd8\xca\xff\x79\xf2\xee\x20\x2d\xfb\xc5\x93\x59\x7a\x22\x54\xdb\x13\x43\xbd\x25\x87\x05\x0c\xae\x9c\x89\x40\xfc\x71\x6a\xae\x3b\x46\x35\x89\x61\x7c\xe3\x90\xd5\xe1\xd5\x33\x7b\x65\x5d\x4c\xb1\x5b\x0e\x18\x85\x45\x5b\xc2\xdc\x17\x1f\x41\x06\x71\x0d\x9f\xa6\x82\x84\x0d\x41\x2a\x6a\x47\xbb\xf1\x76\xa1\x4f\x5d\x0d\x40\xcc\xba\xed\x08\x76\x6d\x5e\xc9\xc9\x0b\xe7\x4e\x61\xd6\x5a\x12\x95\xe2\xab\x9b\xe8\x80\x99\x97\xb6\x10\x65\xf1\xd3\xb0\x30\x9c\x74\xf0\xba\xcc\xf3\xf4\x3f\xf9\xd6\x92\x17\x4a\x70\x8b\xb3\x0c\xb7\x00\x3c\x1b\x16\x46\xe4\xf3\x40\x4a\xa2\x01\x48\x3c\x77\x93\xd2\x7c\x9e\x93\xd4\x46\x95\xa8\xd2\x8c\xed\x84\x89\x08\x3b\x25\x1a\x70\x4d\xaa\x1b\x17\x89\xef\x8c\xa7\xb3\x6d\x5e\xc4\x3f\xe7\x40\x3d\x77\xec\x42\x75\x6a\x1e\x52\xf1\x50\x9a\x9c\xa2\x80\x3e\x02\x54\x55\x5d\x63\x21\x59\x08\x53\xaa\x61\xfe\xcb\x61\x46\xf0\xa4\x58\xd9\x23\xa0\xd5\xd4\x5e\x14\x9d\x90\x5b\x35\xbf\x7b\x8c\xbe\xe9\xe9\x23\x8c\x9c\x04\x03\x88\xa8\x07\x48\x47\xcc\x3d\x4f\x1f\x86\xb3\x11\x6d\xf2\x9c\x9f\xd2\xa6\x11\x77\xa3\x80\x83\x36\x46\x4c\x85\xca\x39\x63\x19\xd0\xb7\xb0\x8f\x7f\x12\xab\x74\x3b\xd7\x2d\xce\x25\x22\xaa\x1c\xbb\xb4\x98\x1b\xb5\x5d\x0a\xba\x1b\x6f\x51\x9e\x10\xd9\x47\x21\x45\x65\xbe\x36\xb6\x61\x65\x10\x84\x01\x62\x8f\x61\x73\x4e\x1c\x05\x41\x0a\x4f\x7a\xa9\xd5\x42\x5a\x48\xe8\x8d\x41\xe6\xf0\x6d\xbf\xe1\xce\x26\xd6\x56\xde\x95\x3d\x92\xaf\x70\xb6\xb6\xeb\xe6\xd6\xe2\x44\x1d\xe3\x97\x86\xa7\x0c\x47\xe6\xc1\x74\x50\x1e\x72\xaa\x2e\xcf\x8a\x02\x0a\xb5\x43\x53\xc4\xaa\xee\xa7\xf2\xfe\x16\x96\x94\x75\xc7\x54\xa7\x39\x8f\x3a\xb9\x3e\x8f\x83\x6a\xc8\xcb\x4e\x1a\x6e\x29\x98\x1a\xb8\x27\x86\x03\xf8\x6b\xf0\x2a\x84\xca\x20\x35\xab\x5b\x5c\x37\x42\x19\x38\xb2\xf7\x98\x1a\xc5\x38\xbe\x91\x83\x1a\xc6\x61\xf2\x23\xdd\x1b\x87\x29\x2c\x1a\x06\x63\x0a\x8a\xe2\xdc\x74\x93\x30\x79\xc1\x19\x2d\xcb\x38\xd4\x92\x1f\xea\x17\x44\x5b\x9a\x5e\xb9\xa1\xe0\x71\xef\x52\xdf\x65\xdf\x50\x84\x83\xfb\x82\xb8\x4b\x03\xed\xca\x97\xc8\x20\x53\x7d\xf1\x93\x12\xcc\xee\x7d\xd6\x0e\x45\x75\x75\x35\x9b\xb7\xc4\x82\x73\x70\x23\x3c\xa7\xc7\x94\x9d\x7f\xa7\x17\xf8\x2d\x20\x6c\xe5\x0a\xac\x90\x0f\x49\x54\xab\xfc\xe7\x6a\xa9\x29\x89\x30\x31\x1c\xbe\xe2\x75\x4c\x39\x62\x6e\xf8\xbe\x41\x94\x4a\xc9\x99\x49\x11\x16\x01\x32\xfe\x42\x58\x26\xdc\x47\xf3\x0d\x2b\x0a\x5d\x70\x4a\x00\xd6\x6d\xd7\xc4\xbd\xea\x93\x71\x17\xfc\x03\x9e\x96\x01\xc4\xae\x26\x39\xb6\x2c\x0c\xe6\x83\xfc\x0c\xa1\xb8\x4a\x5b\x3a\x3b\x51\xe1\x58\x22\x86\x9d\xc2\x7a\x7b\x15\x28\x30\xd4\xe0\x08\x8c\xd0\xaa\x02\x6f\xed\x41\xc2\x30\x2e\x04\x61\x6b\xe2\x21\x74\xa2\x41\xb0\x5e\xbe\x7d\x2f\x3f\xe1\x2d\xaa\xf1\x54\xe1\x2e\xca\xf6\xa5\x89\xf9\xa0\xce\xa6\x7c\x51\x2d\x4f\x5c\x88\x45\x65\x67\xef\x7c\xe3\x97\x83\x28\xda\xfc\x0a\xe6\x54\xfc\xd7\xa5\x12\xff\xee\x8b\x9d\xb5\xe5\xd3\x61\x31\x9a\x1c\x59\xb2\x0b\x7c\xb8\x74\x35\x87\xe2\x3f\x2e\x2d\x87\x95\xf3\xf3\x60\xe4\x7e\x46\xcc\x9c\x96\xf0\xf7\x61\x97\x76\x15\x2b\xb5\x15\xd1\x07\x0d\x02\xcb\xfc\xe3\x2b\xc0\x41\x38\x15\x87\x63\x0d\xed\xac\x10\xc9\xad\x5b\xa5\x6e\x7e\xd8\xef\xbe\x97\x28\x4d\xfa\x52\xe4\x2c\xea\x77\x54\x5a\xd8\x83\xd2\x56\x1b\xcf\x8d\x32\x07\x8c\x18\x27\x12\x5c\x73\xc7\x4f\x6b\xd2\x44\x70\xcc\x5f\xe6\x96\xdc\x26\xaa\x36\x54\xff\xb5\xbc\xdb\x24\xd5\x13\xe7\xe3\xa2\x48\x11\x13\x54\x4b\x20\x1b\xcb\x83\xf6\xc4\x62\x5f\x47\x65\xfc\xeb\x30\x76\xb5\xe9\x9d\xb7\x29\x1f\x5c\xd5\x22\xf4\x09\x67\x16\x8b\xa3\xea\xc9\xd8\x83\x0e\x44\x14\xdd\x52\xc7\x54\xdc\x72\xc4\x6c\x40\x8d\x75\x42\xb4\xd0\xed\x72\x26\x5f\x2e\x87\xb9\x77\x61\x41\xdf\xc9\x97\xbc\x5b\x3e\xc4\xa6\x71\x9c\x33\xca\x7b\x3a\x5c\xeb\x00\xde\x4d\xc0\xaf\xe5\x23\xbe\x29\x68\x88\x37\x48\xc5\x64\x28\xef\x23\x4c\x31\x75\x9e\x7f\x04\xf4\x29\x8e\x07\xdf\x8d\xa1\xa1\x9c\x6b\x4e\x11\xc5\xa3\xcc\x08\xdb\xd9\x04\xc9\x76\x0a\x6c\x90\xe2\xed\x02\xec\xf1\x1b\x06\xc6\x80\xa3\x8d\x26\xcc\x97\x87\x8a\xaf\x7b\x26\x80\xe5\xa8\xd1\x2c\xaf\xdf\x1d\xc2\x4c\x9f\x2e\xd6\xce\xd0\xe8\x08\x61\x6b\x59\xd3\xe1\x6e\x4e\x08\x65\xee\x38\x4b\x46\xad\x85\x4a\x76\x69\xe2\x9e\xc3\x63\xb8\x07\x62\x13\xa6\xa0\x1e\x3d\xe2\xd9\x28\x4e\xf7\xc8\xe8\x88\x77\xbd\xd1\x87\x1b\x71\x8c\xd9\x77\x92\xfc\xd6\xb4\xcb\x8f\xfe\xd1\x0f\xa7\x33\x8e\xd4\xbe\xd0\x1c\x30\x8c\x0b\x74\xbd\x07\xd0\x07\xbf\xf6\x35\x1a\x3a\xbe\xe6\x4d\x37\x7e\x35\x5b\xf4\x36\xf2\x36\x13\x0c\xf3\x2c\xc8\xd4\xcc\x82\x3a\xc8\x7b\x03\x6a\x31\x17\x36\x27\xb1\x16\xbc\x1d\xd6\x07\x75\x08\x55\x3b\x1e\x8e\x07\xc0\x1f\xfc\x24\x04\x3f\xdc\xce\x4a\x5b\x31\xb1\x78\x8b\x04\x22\x89\x48\xc0\x93\x25\xa2\x81\xa3\xbf\x09\xc2\xcc\xab\x9a\x9a\x53\xf5\x4b\xd3\x07\xa1\xec\xa3\xd0\xf3\x41\x10\x0a\x3c\x70\x11\x99\xf9\x71\xe5\x98\x95\x09\x03\x60\xf7\x66\x8a\x76\x42\xa6\x10\xa9\x77\x41\x47\x11\x9c\x78\xaf\x8b\xe9\x38\xef\xea\x5c\x8c\x29\xd5\x0b\x58\x51\x04\x8f\x6e\xd4\x91\xb7\x5c\x37\xf3\xcd\x04\x94\x63\x25\xd6\xc1\xbe\x18\x5e\xe0\x65\xc3\xc3\x9f\x04\x3e\x0a\xdc\xa2\xc2\x7c\x2e\x11\xd8\x24\x39\x5d\x93\x5c\xb8\x8e\xa4\x7b\x54\xc4\xfc\xf4\x4f\x7b\x42\xed\x8f\x1f\x99\xf9\xfa\xb0\x3d\xe3\x3a\xee\x0e\xdc\xf3\x47\x4d\xf5\xa6\x43\xbe\x87\x2a\xcc\x41\xec\x77\x97\x35\x15\x04\xfe\x8f\xd8\xd6\xc5\xa0\x01\x91\x89\xa6\xc0\xd5\xf4\xa5\x97\x79\x6a\xb2\x47\x98\xfa\xef\x59\xec\xc5\xcf\xb2\x0c\x7b\x3d\x0a\x82\x1e\x75\xfa\xeb\x82\xa1\xef\x35\x0b\x88\x68\xc5\x50\xa4\x1f\x45\x20\xc4\x00\xef\x2c\x12\xc7\x23\x0c\x3b\xec\x94\xb8\xc1\xb5\xbc\xde\xd0\x49\x24\x42\xb9\xc8\xb9\x3f\x1c\xe1\x9e\x4b\xcb\xbb\xe2\x12\x0e\x7b\xc9\x34\xc6\xf9\x82\x87\x9d\xbc\xb3\x44\xc8\x65\x34\x83\x2b\xbf\x3f\x1e\xab\x70\xfa\xf6\x8d\x45\xfe\x1b\xd3\x74\x82\x2b\xb1\xf9\xf3\xfa\x23\x16\xdf\x6c\xbe\x44\xbe\xf3\x84\xd6\xcf\x1c\xf8\x49\x99\xdc\xc1\x33\x40\x4a\xb5\x67\xfe\x15\x99\x2c\x8a\x4f\x78\xe2\xdf\xa9\xf1\xa1\x0a\x7f\x70\xc5\xf4\x12\xde\x82\x1b\x0f\xd2\x3d\xa5\x84\x19\xb9\x9a\x19\x78\x20\xf9\x0d\x9e\x6f\x32\x67\x58\x3e\x6e\x43\xdf\x2d\x6d\x9b\x75\xe9\x3a\x9a\x9e\xd3\x2f\xdf\xbd\xd8\xa9\x3a\x2e\xe8\xca\xb8\x74\x15\x93\xf5\x69\x26\xdf\x1b\x79\x76\x07\xe1\x0e\x82\x54\x3d\x2d\x83\xb5\x12\x3e\x59\x6b\x87\xd8\xf1\xc3\x10\x5a\xde\x41\xd5\x73\xf5\x3d\x3f\xa6\x82\x43\x75\x06\x1f\x6d\x79\x0a\x46\x53\xe2\x46\x25\x8d\x39\x16\x0d\x91\x9b\x4a\xf0\x3e\x0d\xa2\x3a\xce\x1f\xc4\x47\xc3\x99\xe2\x22\xa3\xd9\xbb\x4e\xcc\x70\x6b\x34\x80\x5a\xae\x28\xe3\x80\x61\x52\x2b\x18\x76\xdf\xac\x18\xd9\x47\xed\x86\x10\x5f\xd2\x30\xf7\x73\xd4\xdc\x81\x29\x3c\xa1\x87\x52\x4d\xac\x84\x16\x97\x56\xe4\x7d\x68\xd7\x0f\xf7\x02\xb9\xef\x47\x08\xf1\x25\xfd\xe0\x56\xe0\xac\x2a\x02\xdc\x1d\xfd\x21\x89\x5b\xdf\x0e\x88\xcc\x7c\x86\x5d\xf4\x91\xbb\x2e\x83\x93\x1c\xa6\x52\xc5\x80\x33\xe1\xfb\x85\xf1\x91\x2a\x39\x62\xbf\x31\xc1\x3c\x88\xd9\xe2\x64\x74\xe1\xfb\x89\x00\xbc\x82\xb9\xa4\x03\x0d\x0c\x12\x3d\xd8\xe4\xb9\x24\xfd\xf2\xcc\x1e\xb8\x2f\xa5\x0d\x9a\x79\xff\x91\x2c\x70\x16\x57\x57\x38\xbf\xf0\x50\x01\xeb\x67\x2b\x59\x00\xc2\x9b\x41\xf0\x06\x0b\x5a\x1d\x57\xe6\x88\x39\xa0\x1c\x11\x1f\xc3\xd9\x8e\x0d\xf9\xb6\x40\xfb\xce\x64\xfb\xc0\xb8\x59\x67\x7b\x04\x28\xbe\x48\x0e\xcd\x31\x39\x1e\x72\x13\x3a\x14\x56\x77\x3a\x08\x8d\xbb\xe2\xcf\x75\x79\x39\xce\x21\xcc\x5e\xa1\x67\x16\x6e\xf5\x31\x82\x78\xb4\x5b\xb6\x70\x98\xb6\xb5\x66\x62\x11\xa0\x02\x2a\xfc\xc1\x8d\x92\xd5\x0f\x03\x6a\x00\xeb\x0b\xaa\xe8\xd1\x5d\x44\xe1\x2b\x3a\x00\xb2\x71\x77\x0f\x40\x16\x24\xde\x06\x75\x23\x20\x01\x77\x75\x44\xf6\xfc\x57\x74\x04\x74\xe3\x0b\x3b\x72\x60\xbd\xd0\x77\x94\x8a\x62\x72\xff\xdf\xd5\xbf\x81\x20\x04\xe4\x8c\x1e\xf6\x32\x62\x00\xab\x24\x79\xae\x7f\xca\x2a\x29\x50\xcf\xce\x66\xc3\x5d\x12\x58\xc6\x05\x3b\x25\xb0\xf4\xb4\xbe\xc0\x80\x4a\x2d\xe2\xf5\x94\xf3\x55\xd5\xb4\xee\x78\x7d\xa0\xee\x43\xab\xf9\x38\xc6\x22\x1b\xff\xf6\xed\xad\x72\x3a\x3c\x23\x71\x88\x48\x6f\xc7\x27\x32\x1d\x0c\x09\xe4\x85\xb8\xdf\xb0\x56\x1f\x13\xf7\xc0\x3d\xef\x7f\xfb\x4e\x44\xf3\x25\x97\xa9\x78\x72\xcb\xbf\xb5\x95\x0e\xdf\xde\xba\xf3\xa1\xb4\xf8\x81\xb8\xe1\x3b\x81\x9d\x84\xb2\x5e\x1a\x8b\xb8\xdc\xa9\xdb\x90\xda\x2f\xf2\x8c\xdf\xd2\x1c\x6c\x58\x51\xcc\x09\xc9\xa6\xa9\x2b\xb1\xf1\x3a\x91\xaf\x8a\x1f\x4a\x0b\x7d\xdf\x5e\xf1\x0f\x79\x42\x40\x53\xd8\xd5\x29\xe9\x9b\x1e\xb1\x69\x2f\xf9\xef\x0f\xe9\xc3\x22\xf1\x43\x87\x0e\x98\xd5\x6d\x0b\xd1\x74\xca\x77\x90\x1f\xbc\xd2\x05\xcf\xdd\xd6\x9e\x1d\xf3\x35\xa0\x9b\xd0\x58\xef\x82\x6e\x6b\x27\x51\xe9\xae\x9b\x6a\xd1\x1c\xda\x60\x79\xc0\xda\xf2\xb9\xe9\x5a\xf8\xb9\xef\x82\x9f\xfb\x16\x3d\xe4\x41\x90\x10\x2d\x48\x98\xb1\x75\xcf\x5a\x44\xc9\xf1\x51\xea\xd3\x25\x42\x6e\x94\xc4\x81\x30\xa3\x84\x7c\x31\x6a\xc5\xee\x2b\xc2\x34\x33\xc9\xf5\x29\x66\x9c\x1b\xd5\x1e\xbf\x6d\x10\x66\x89\x15\x7a\x94\x24\x1e\x0f\x83\x91\x88\x96\x37\x4c\x5b\x37\x4b\x7e\xcc\x0f\xba\xe2\x78\x78\xca\xaf\xc7\x75\x9a\x63\x68\x54\x05\x62\xd5\x84\x29\xb8\x3a\xed\xf3\x2e\x2e\x8d\xfd\x19\x26\xa8\x37\xe3\x08\x90\xe4\xf7\x7c\xb1\xd2\x30\x05\x13\x88\x64\x62\xb8\x43\x26\x91\xc5\xa7\x20\xbb\x9b\x4a\x22\x97\x5e\xe0\x63\x12\xa6\xdd\x41\x87\xb8\xab\x83\x5c\x76\xb6\x66\xc7\x7e\x3c\xff\xd0\x68\x9c\x5f\xf6\xbc\x76\x4f\x3d\xa4\xa7\xd8\x8e\xdd\x9d\x85\x82\x73\x91\xa3\xc4\xe9\xf3\x12\x5a\x32\xb0\x7e\x9f\x3e\x20\x7d\xcd\x7a\xd4\xaa\x4d\x51\xf0\x36\x79\xe7\x39\x8f\x1c\x41\x20\xf4\x6e\xdf\xb2\xbf\xa8\x8e\x41\x2f\x3d\x84\xab\xe6\xeb\xbb\x0a\xfa\xcf\xf4\x9e\x7a\x33\xe8\x64\x44\xf3\x0c\xe4\x9e\x1a\x06\x5d\x9c\xac\xe2\xeb\x3b\x89\x93\xb6\x5e\xca\xa9\xb3\xa7\x93\xb7\x78\x1f\xa4\x2d\x54\x70\x5d\xb3\x01\xe7\x6b\x33\x2a\xbb\xa7\xca\x7d\xbd\xbe\xb3\xce\xaf\x18\xc6\xb2\xea\xb3\xe5\xc2\x77\x9f\xdf\x46\x6a\xe7\x4c\xb8\xf9\x70\x2f\x17\x12\x60\xa4\x8e\x95\x96\xd3\xc5\xef\x9a\x60\x74\x88\xd5\x15\x53\xd5\xef\xeb\x5b\x5b\x76\xb7\xf5\x82\x15\x75\xfc\x94\x94\x5e\xb0\x9f\x97\x72\x69\xf2\x68\x46\x69\xcf\x72\x0d\x99\x5d\xe2\x2a\xba\x7b\x24\xaf\xe8\x3d\x5e\xe4\xf0\x97\xfb\x81\x8e\xe2\xfa\x29\x48\x3b\x4a\x1b\x67\xcb\xb3\xf5\xe4\xce\x86\x06\x63\x09\xe8\x7a\x30\xb7\x2d\xba\xd2\x97\x5f\x34\x82\xc0\x9c\x24\x1c\x06\x23\x8a\x12\x31\x90\xbc\xc1\x9b\xb3\xe9\x63\x36\x0d\xe2\xd7\xae\xd8\xee\x49\xed\x09\xf5\xd0\x46\xb0\x6a\xa7\x60\x2b\xf6\x0c\x28\x6c\xf7\x8e\x15\x7a\x14\xf5\xe2\xeb\xc6\xc8\x41\xf0\x47\x1b\xe1\x1c\xc9\x1a\x14\xff\x0f\x6d\x87\xa9\x8a\xff\xdd\xed\xd0\x06\xbd\x1a\x3d\x90\x18\xb0\x07\x08\x3c\x4e\x73\xc7\xee\x1d\xe0\x3b\x11\x88\xfc\x03\x7e\x87\xe4\x5a\x5f\x80\x5c\x36\x6d\x43\x18\x27\xd1\x64\xf5\x25\xc3\xd7\x96\xd6\x4d\x14\xc0\x8d\xc5\x6d\xb6\x53\x67\x7d\x2b\x73\x82\x64\x62\xfb\xd8\xd3\xdd\x97\x02\xf3\x64\x65\x58\x0f\xbd\xd0\xdb\x0b\x70\x53\x56\xea\xd0\x32\x82\x92\x5a\xa6\x99\xb3\x13\x92\x06\x31\x02\xf0\xa9\xa6\x04\xb0\xb8\xf5\xe3\x10\xad\x84\x01\xbb\x6d\xc6\x43\x85\x0f\xbb\x24\xa7\xef\x90\x9c\x5e\x72\xf2\xb8\x05\xeb\x95\x2b\x36\xe8\xd4\xbe\x72\x1c\xb6\x6f\x58\xe6\x15\x47\xf7\x1b\xc2\xdb\xcc\xad\xca\x7c\x3b\x9a\xb7\x37\x94\x38\x9a\x35\x40\x8e\x27\x00\xb0\xfb\x67\x21\x2c\x55\x15\x10\xa2\xc3\x12\x6f\x29\x69\x1f\x34\x6c\x71\x86\xf0\x35\x33\xf1\x7b\x4a\x28\x37\x35\xec\x95\xde\xd4\x8d\x7a\xd5\xcc\x39\x26\x45\x67\xd0\xa7\xf2\x33\x80\x9a\x37\x4d\x4f\xb2\x1c\x81\x12\x1b\x09\xb3\x4c\x99\xa6\x97\x96\xce\x8c\xf0\xe2\xd3\x68\xa6\x04\x7a\x3c\x55\x02\xbd\x7f\xae\x36\xfc\x6a\x00\xb5\xd5\xee\x16\xfd\x8e\x68\x8e\x6b\xf0\xe4\x82\x5f\x1b\xb8\x70\x19\xa3\x16\x47\x25\x43\x0c\x1d\x16\x9e\x6a\x79\xc1\x6f\x3e\x4c\x36\x7d\xc4\x39\x77\xb6\x3d\x2a\x1b\x36\x3e\x2a\x3e\xb5\x53\xf0\x82\x2e\x13\xa5\xf9\x6e\xf1\xa9\xec\xd9\xc1\x7a\x95\xc1\x44\x23\xac\xeb\xcc\xc0\xd2\x97\x00\x4b\xdf\x10\x58\x7a\x09\x8d\xdb\x44\xad\x74\x8e\x6e\xca\x3e\x87\xc9\x4e\x50\xcb\xeb\x23\x5a\x01\x49\x9e\x2a\x05\x4d\x5c\xa6\xf2\x8f\xee\x42\x66\x49\x83\x1a\x4e\xa1\xac\x53\x91\xe8\xd0\x81\x4c\xd5\xc6\x81\x62\xe5\x40\x5f\xdc\x2e\xd6\x62\xcd\xf2\xb9\xe7\x3e\x9c\x4b\x4a\x00\x0b\x19\x8f\x60\x8d\x46\xc2\xaa\x04\x71\x2d\x08\xfc\x32\x26\x94\x42\xc1\x3c\xb0\x10\x2e\x82\x3b\xe3\xd8\x55\x53\x80\xdb\x5c\x36\xd3\x5e\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\xc9\x54\x0a\x59\x11\x01\x5b\x7c\x8c\xf4\xb5\x35\xc2\x39\x58\x2d\xc0\xc5\xc8\xde\x5a\xe3\x34\x85\xc5\xc3\xc1\xfe\x46\xc5\x5f\xd2\xba\xb7\xae\x05\x4c\xe4\x0a\x48\x13\x92\x62\x9c\x30\x9e\xe9\xb7\x6f\xcb\x8b\xa2\x9f\x4a\x9a\x3f\x40\xe9\xaf\xa6\x59\x7c\x24\x17\xc5\x59\xd3\x61\x9a\xdc\x96\x4b\x56\x54\x88\x73\x33\xe2\x10\xc1\xfb\xe4\x1c\xc9\x26\xdd\x84\xfe\x44\x97\x0d\x46\x19\x0c\x2c\x36\xe1\xb3\x61\xde\x1f\xa3\x69\xa6\x75\x84\xd1\x42\x75\x64\x10\x5d\xcc\x86\x2d\x56\x3b\x98\x2d\x9b\x40\xca\x23\x1b\x72\xb1\xb9\x0e\x4b\x43\xae\x34\x41\x6d\x50\xc3\x3b\xc8\x9c\xc1\x2c\xbb\x27\x7b\x9d\xaa\x1b\x97\x05\xac\x72\x11\x27\x08\xa8\xda\x61\xa4\xba\xab\xed\x49\x60\x43\x83\x7d\xcf\x65\xdb\x3b\x5d\x5f\xf8\x62\xb6\x9f\x8b\x00\x53\x60\xa5\x12\xe3\xc8\x26\xff\xac\x2f\x4e\xf8\x27\x6d\x4e\xf4\xf1\x9a\xc0\x73\xf1\xc8\x72\xdf\xf1\x3b\x36\xfb\xca\x9a\x8e\xef\xf1\x05\x11\x98\xa7\xdf\xe2\x45\x35\xda\x0f\xcb\x75\x33\xcf\xd9\x24\x45\xde\x0a\xc2\x53\x38\x4f\xb4\x8e\xaa\xcb\x42\xa4\x1c\x3e\x33\x96\x0f\x90\x94\xc1\x15\x4f\x23\x50\xc4\x8b\xe0\x0c\x41\xb3\xa6\x0d\xae\xf2\x0d\x71\x71\x69\xce\x8e\x20\x99\xda\x42\x8f\x6a\x08\xca\x40\x43\x2c\x1b\x8b\x79\x37\x89\x53\x13\xd6\x23\xef\xb9\x64\x86\x31\xf7\xd5\xb5\xf7\xf9\x97\xc9\x75\xf7\x4a\x7a\x5b\x76\xf7\x9c\x3a\xa0\xef\xbc\x03\x8e\x17\x18\xe1\x14\xd9\xb3\xd5\xab\x0e\x83\x9e\x4a\xb0\x45\xee\xaf\xf7\x4d\x6d\x98\xbd\x64\xc6\x15\x51\xc4\x59\x4e\x0a\x7d\xb0\x5d\xd8\x04\x8b\xfa\x58\xc2\xce\xdf\x07\x65\x20\xba\xae\x8a\xc5\xb0\x03\x1c\xf6\x43\x0c\x61\xf6\xb4\xef\x2f\x3a\x11\xe0\x2b\x6c\x3e\x54\x71\xc5\x1d\x90\xcb\xb8\xa6\x0d\xcd\x9d\x62\x0d\x65\xd4\x95\x09\x8b\xa6\xc3\xe1\xd3\x97\x7b\xcc\x61\xa9\x56\x71\x38\x1d\x90\xe8\xe8\x86\x3a\x22\xd5\x28\x11\x92\x60\x24\xc4\xb6\x3a\x48\xf2\xb7\x37\x76\x71\x23\x7a\x54\x50\xdf\x61\x7b\xc1\x9e\x8c\x5a\x93\x12\xe3\x37\xf5\xe2\x2e\x48\xca\xf8\x7e\x57\xd2\x55\x05\x98\xda\x1b\x59\xaa\xcf\x9d\x41\x0f\x28\x2c\x58\x6b\x69\xc3\xe7\x56\xa0\xde\x55\x62\x39\xe8\xf2\x80\x5c\x46\xdd\x96\x52\x12\xa8\xd1\x3c\x95\x95\x22\x6b\x56\xd0\x7b\x49\x09\xdf\x32\x90\x14\x79\x7a\x9f\xc9\x87\x84\xb1\x29\x34\x7d\x6c\x59\x15\x74\x52\xab\x19\x74\x2e\xa8\x15\x50\xd3\x14\x3f\xe8\xcd\xd0\xd9\x40\x52\xe1\x17\xcb\x9e\x11\x5d\xaf\x29\x5b\x79\xa1\xe0\x8c\x5f\x28\x90\x14\xa8\xd5\x0a\x98\xfd\xb2\x16\xed\xf8\x7d\x98\x1e\x3c\x5b\x8f\x5c\xf7\x60\xfd\x04\x4c\x60\xf7\x94\xb7\xfc\x40\xc2\x0f\x1a\xa2\x34\x78\xbe\x9e\x1d\x26\x4b\xf8\x70\x6d\xd7\xdc\x5f\x7e\x75\x0b\x37\x62\x7c\x3f\xb0\x43\x78\x42\x7e\x5f\x1a\xa6\x00\x44\x66\x96\x62\x89\x2e\x2f\xa2\xea\x64\x32\x7f\xa2\x91\x97\xc1\x97\xe8\xfd\xc7\x4b\x36\x62\x0c\x40\x30\x22\x00\xb8\x11\xe5\xbd\x44\x0d\x2a\xa7\x7c\xb3\x52\x97\xbb\x17\x7a\xf8\x90\x08\x36\xbd\x3b\x49\xb9\xf7\x1c\x64\xfd\x69\x85\x78\x8a\x4c\x7d\xca\x75\xa1\x8e\x86\x51\x74\xa4\xd9\xa8\x05\x33\x80\x42\x60\xbc\x7b\x7a\xd3\xed\xac\xeb\x17\xbb\xfb\x7a\xae\xcf\xad\xcb\x2b\xee\x7b\xc1\x3a\x16\xd3\xf4\x85\xde\x57\x25\x2b\x76\x7d\x16\x2f\x95\xe2\x85\xf8\x50\x7c\x36\xbc\x91\x20\x7d\x36\xc9\x12\xa4\xcf\x6a\xc6\x9d\x9b\x03\x90\x9b\xf8\x08\x62\xc3\xe7\x67\xd6\xe5\x4c\x6c\xe8\xa4\x28\xd2\x8b\x43\xcd\xe9\x36\xfd\xd6\x5e\x80\xbb\x38\xb9\x3c\xbb\x63\x67\x30\xa8\x62\x38\x20\x03\x34\xe7\x2c\x45\x75\x64\x05\xf8\x6e\x5e\xfa\xb2\x63\x54\x6b\x02\xab\x37\xd9\x3a\xdd\x34\xdc\x5d\x4c\x94\x3c\x77\x4c\x27\x3e\xc7\x10\x86\x6f\x8b\x94\x99\xa5\x27\xc4\x68\x54\x6c\x44\x69\xad\xa9\x21\xdf\x9c\x70\xa5\xdc\xe6\xad\xbd\x3e\x82\xa7\xaf\xd2\x47\x07\x8f\x66\x11\x2d\xc9\x7a\x3c\x2c\xa4\x51\xb1\x2e\xdf\x5d\xd0\xe7\xa2\xbd\x15\x2b\x01\x1d\xe9\xa7\x6a\xcb\x60\x19\xbb\x46\x09\xa7\x4b\x29\x80\xfd\x05\x29\xb6\xf1\xf9\x3a\xb9\x6c\xaf\x39\x2e\xa0\xe2\xcf\xd9\xe1\x09\xb4\x38\x94\x14\x92\x12\x6d\x1a\x41\x80\x8d\x8f\xf6\x9d\xa0\xe5\x68\x22\x3e\xda\xc8\x61\xb5\xc5\x79\x42\x7f\xac\x9e\x20\x3e\xe9\x90\xd9\x95\x2b\x7f\x9b\xe9\x11\xe3\x15\x43\x07\xfc\x97\x27\xd4\x43\xfe\x3c\x2e\x72\x9f\x9b\xcd\x2c\x22\xcd\xe1\x39\x1c\xd7\xf3\x85\xa6\x73\x61\x65\x01\xcf\x74\xd7\xa0\x27\x63\xef\xc4\x25\x22\xc8\x4c\x4e\x0b\x7b\x2d\x37\xae\xda\x59\x33\x8c\x4b\x44\xef\xe6\x8e\xe6\x75\xc2\x24\xed\x0e\x33\xb4\xa0\xf6\x01\xf7\x12\x57\x7c\x1f\x13\x23\xca\x5a\xd3\x28\xba\xfb\x56\xd5\x28\xc6\xd7\xae\x0a\x9b\x6f\xb7\xee\x10\x0c\x1e\x44\x06\xda\x06\x20\xd7\x42\x70\x02\x88\x5f\x34\x8a\x58\x00\x24\x1e\xb7\x21\x10\x3b\xde\x2a\xc0\xf0\x20\xd5\xe4\xe6\xea\x8a\x9f\xa5\xe3\xd7\x1c\x34\xa4\x23\xff\xe4\xe8\xb6\xae\x7d\xf5\x23\xcf\x58\xc5\x09\x95\x21\x8f\xe9\x58\x9d\xcb\xcf\x91\xc8\x32\x9a\x81\xb7\x3b\xe8\xc6\xb8\xbf\xe7\xbb\x5a\xa4\xcf\x20\x4b\x1b\xe2\xac\xb0\x11\xf0\x62\x6d\xd3\xf4\xf6\x2e\x63\xc0\x88\x9d\x53\x32\x9d\xd0\xfd\xca\x4d\x30\xdf\xe8\x2e\x32\x79\x1e\x2e\x28\x83\xfb\xe4\x05\x9c\x79\xc6\x85\xa8\xdf\xe3\x12\xd4\xef\x3d\xe0\x62\xb5\x64\x6c\xcc\x05\x7e\x09\x91\x76\x3d\x46\xe0\x39\xc1\x46\x1b\xb0\xa4\x0d\xf1\x06\x73\xe0\x2a\xee\x56\x01\x6a\x5c\xbc\x99\xc6\x0b\x86\x1a\xf3\x5d\x41\x26\x33\x8d\x7d\xa6\xe1\x19\x33\x7d\x3d\x53\x78\xc8\x3e\x7d\xa9\x51\x1b\x05\xf3\xc2\x62\x7b\xd0\x80\xb3\x42\x16\x2a\x48\x5e\xc3\x32\xc2\x72\xdf\xe1\xd7\x08\x28\x5a\xb9\xd1\x54\x12\x00\x3b\xcc\x21\xb2\x85\x02\xfd\xb9\xbc\x95\x88\x16\x13\x80\x4b\x6e\xce\x81\xd1\xaf\xf4\xf1\x23\xca\x7a\x2a\x59\x8f\x9e\x8c\xca\xb0\x5c\x4a\x02\xb5\x78\x28\x56\xff\x28\x25\x0e\x3e\x9f\xc1\x92\x81\xd6\x2e\xf8\x72\xe2\x88\x33\xee\x2a\xda\x4d\x94\xea\xdc\xda\x15\x73\xbf\x74\xc7\x66\x40\x30\xb9\x7e\x04\x19\x32\xd2\x3e\x35\x64\x5d\x7d\x6a\xc8\x86\xfb\x54\xc5\xaa\x70\x0b\x51\x6a\xd7\xad\x6d\x17\x5d\x5c\xbc\x8b\xb7\xaa\xcf\x0d\x1e\xa1\x66\x26\xed\x01\xbf\xc9\xc3\xe1\xfe\x1f\xa4\xec\x11\xfb\x24\x28\xa1\x53\x1d\x4e\xaa\xa6\x0e\xeb\xe8\xfe\xbe\xae\xfa\xf2\xfb\x07\x30\x0a\x7a\xd0\x57\xc5\xfc\xc1\x93\x90\xe8\x55\x70\x27\x0b\xa8\x5e\xb5\xd8\x33\x3d\x4e\x8f\xc5\x6a\x9a\x75\x10\x27\xf1\x5c\x9e\xf1\x51\xd6\x4e\x8d\x99\xe3\x99\x35\x72\xe4\x8f\x70\x47\x8c\xc2\xe3\xdb\xfa\xc5\x9e\x89\x6d\x90\xe1\x43\x0d\xc3\xd7\xf1\xdc\xaa\x79\x89\x64\xdf\x41\x79\x4e\xc8\x9e\x17\x52\x27\x2d\xeb\x1e\x5e\x07\x7a\x5b\x8b\x6f\xa3\x16\xc1\x48\x9c\x5e\xee\x84\xfb\x1f\xaa\xe2\x86\xfd\x1f\x21\xab\x8d\xe2\x6e\xa4\x55\x2e\x66\x91\x6f\x89\xa1\xcd\x3d\xff\x72\x24\x09\xee\x3c\x10\xdf\x7c\x76\xee\xcb\xd6\x7a\xa9\x2e\xfe\xfb\x70\xf1\xa3\x7d\x7c\x5d\x76\x7e\xb0\xc4\x0f\x78\x79\x27\x2a\x74\xce\x79\x4e\x3e\x9a\x28\x6c\x61\x3d\xdc\xc2\x9b\xdb\xfc\xe4\xc2\x23\x3a\x4d\xb6\x2e\xeb\x25\x90\xee\x2f\xfc\x93\x38\x4f\xfe\xe9\x26\x48\xfc\xe1\xa1\xc9\x65\xbf\xb4\xe7\xe6\x21\x0f\x85\x2e\xa5\xb8\xa5\xbd\x97\x45\x0c\x56\x26\x3c\x90\x4f\xf0\x7b\xba\x83\x0a\xbb\x97\xf6\x6a\xbe\xad\x22\xed\x90\x26\x58\xbb\x37\x3f\xbf\x3b\x1d\x40\x4e\x6c\x6d\xcd\x99\x20\x05\x9a\x33\xb1\xf1\xa1\xfe\x05\x05\x55\xe1\x07\x8a\x5f\x90\x50\xec\x15\x83\x73\x20\x99\x7b\x97\xf8\x15\x17\x60\x9b\xcd\x12\x6f\x91\x77\xcc\xe1\x6b\x12\xf3\x93\x78\xa6\x78\x54\xba\xd3\xd7\xd8\x3c\xb8\x0f\x56\xaf\x41\x67\xb8\xf0\xcc\x31\x12\x38\x07\xdd\x14\xc3\x68\x65\x7a\x86\x05\x72\xef\x04\xcb\x8d\x8d\x37\x56\xc3\x1d\xcd\x64\x45\x02\x99\x17\x84\xf9\xe2\xd1\x09\xd0\x43\xf9\x1d\x03\x05\x2f\xa6\x0b\x94\x3d\x98\x3e\x6a\xb5\x0e\xdb\xac\xc5\x6a\xc1\xaf\x81\x98\x5a\x06\x34\x4e\x9c\x99\xa6\x8f\x70\x85\x66\xcf\xd5\xca\x6c\x1a\x05\xfe\x4c\x93\x0c\xd4\x40\x7c\xcd\x06\xa1\x55\xbb\x6e\xd2\xc6\xaa\x9c\xa0\x73\x84\x5f\x11\x6a\x29\x79\xe0\xfd\x2c\xb0\x9e\x42\xb0\xd2\x58\x4a\x18\xf0\x72\xe1\x26\xc6\x2e\x6b\x5e\x1f\xf9\xb7\xe4\x71\xaf\x33\x18\xcc\xba\xba\x2a\xdd\x2d\x90\x8e\xe6\x1d\xa5\x45\xc0\xab\xbe\xdf\x76\x16\x83\x05\xef\x7d\xa7\xa7\xf4\x63\x30\x88\xb0\x2a\x1d\xc9\xa8\xa6\x6d\x85\x9b\xb9\x60\x5e\x24\x61\x7a\xc6\x0d\x5a\xcf\xa2\x00\x5c\x0f\xa3\x21\x0d\x5e\xb6\xea\x4a\xe4\x77\xf0\x6b\x4d\x0a\xd9\x46\xd7\x3a\xb3\x8b\x93\x2d\x33\x94\x9e\xc9\x0c\x83\x33\xd9\x0c\x28\x67\x8b\x56\xa2\xb5\xf3\x9f\x4b\xb6\x5e\x73\x39\x21\x6d\xb0\xb4\x8e\x1f\xb8\xdf\x89\x27\xb8\x7e\x7a\x78\xff\xb6\xa3\x4c\x93\x65\x4c\xbc\x07\x19\x03\x94\x9f\xcb\xc5\x2e\xb8\xb2\xff\x59\x7e\xeb\x1d\x99\xaf\xa6\x31\x27\x8b\x5d\x8d\xb7\x40\xcf\x24\x25\x80\x99\x7a\xa0\xc4\xba\x0e\xe6\xd3\x98\xd0\xbd\xed\xbb\xe6\xa1\xf7\x60\x28\x33\x42\x35\xdb\x4e\x8d\xf3\xbf\x16\x6f\xd6\x81\x5d\xaa\xc1\xc2\x89\xbf\x80\x53\x79\xe6\x9c\xcc\xe1\xcd\x2f\x90\xea\x70\xee\xe0\xd5\xba\x52\x0f\x42\xbe\xb7\x70\xad\x96\x6c\x9e\xc4\x37\xaa\xc0\x6a\xbc\xfb\x7a\xb8\xf6\x25\x69\xc8\x21\xc4\xb1\xfe\x8c\x60\xaa\x5a\xc4\x01\xc9\x92\x8b\x9e\xb7\x92\xa6\x55\x06\xc6\xb6\x26\xc9\xba\x77\x65\x9d\xb8\x7c\xa1\x29\x43\x48\x6b\x19\x40\x6c\x0e\x33\x9c\x8d\x90\xdb\x0c\xd3\x10\x73\x35\xb0\x88\x0e\xc6\x34\x5c\x46\xcb\x6a\xb6\x4c\xc0\xb7\xb3\x51\x6f\x9d\x5c\xac\x2b\x62\xa6\xc3\xf7\x99\xa0\x25\xbf\xc9\xdc\x7f\x34\x17\x58\xbd\x2a\xb1\x6b\xc6\xc0\xb4\x27\x8a\x5f\xf3\x50\x5e\x48\x6d\xcb\x3a\x08\x68\x2e\xbf\x8a\xd1\x4b\xeb\xf6\x1e\xd9\xb7\xfe\x3d\x32\x76\x0f\xd9\xfb\xee\xaa\x7b\x07\x13\xb5\xb2\xbd\xbb\x04\xd2\x1b\xbc\xe9\xd6\xb5\x8b\x67\xc3\xb2\x7c\x7d\x12\x83\x71\xe6\x7f\x58\xc5\x32\x46\x7b\x31\xf4\x77\x7d\xa5\x53\x7e\x07\xe3\x7b\x26\x3a\xfe\x67\x32\xd2\x3f\x05\xcf\x68\xc6\x4f\x9c\xda\x63\xa1\x5f\x51\xc1\xe0\x65\x53\xff\x54\xe8\xd7\x74\x42\x86\x31\x7c\x2d\xcf\xd6\x2c\x7a\x69\x2a\xac\x50\x1f\xc1\x1b\xd7\x37\x78\x49\x35\x78\x2d\xb6\xa9\xbf\xa6\x63\x93\x4f\x6e\xfd\xae\x4f\x83\x7d\x75\xb7\x5c\x44\x59\x45\x04\xfb\x3d\x40\x4b\x41\xae\x69\xcc\xf2\x98\x8a\xc0\x5a\xf2\xc8\xbe\x21\x14\xfd\x08\xbb\x01\x74\x0a\x1f\x4d\x1d\xa3\xdc\x00\x49\xed\xe1\x45\x7d\x23\x0f\x04\x4e\x92\xab\x4e\x9f\x38\x92\x97\x09\x1f\xba\x87\xfb\x68\xc3\xf5\x4d\xb3\xfe\x98\xe4\x4b\x1e\x12\xfd\x9f\xf0\x16\x51\x2f\x3c\xec\x16\xfa\x4c\xe4\x27\x7f\x7d\xcb\x35\x7f\xab\x31\x22\x39\x3e\xf7\xb7\x1b\x24\x90\x74\xcc\x87\x04\x27\xac\x90\xb0\xe2\xc0\x51\xfc\xb3\xc0\xcf\x22\xbf\xc5\xaf\x1b\xfc\xba\x29\xcb\x4f\x52\x18\xd4\x8f\x8a\x37\x35\x31\x81\x9c\x72\x8b\xdf\xb7\xfc\x24\x15\xa2\x7f\x2f\x10\x8b\x12\x2f\x7f\xd9\x0f\xbc\xef\x55\x43\x37\x8f\x74\xfb\x41\xe9\xdc\xaa\xa6\xca\xe7\x43\xb6\x84\xba\xd5\x24\x7c\xf1\x83\x34\xd4\xbc\x26\xc9\xe7\x43\x1c\x5a\xfd\xca\x2a\x94\x6f\x4a\xe5\x7e\x68\xa2\x7c\x52\x5a\x9b\xdf\x64\xbe\x5f\xfa\x85\x54\xdf\x2b\xfd\xa2\xe9\x2d\xda\x66\xcb\xef\x31\x7c\x4c\xec\x51\x1e\xff\x1a\xcf\x31\xe5\x99\x31\x22\x87\x0c\xe7\x80\x22\x78\x75\x83\x2f\x53\xb6\x1c\x57\x61\x96\xd8\x23\x5c\x55\xbd\xdd\x39\x25\x93\x7f\x00\x4e\xc0\x7c\x24\x4a\x71\xc5\xe2\x77\xbb\x13\xa8\xb0\x68\x75\xb3\x39\x38\x12\x28\xaf\x58\x8c\x4c\x1f\xff\xf3\x9f\x80\xa7\xef\x7f\xfd\x2b\x3d\x79\xf9\x24\x2d\x3f\x73\x88\xe4\x2e\xdd\xa8\xbd\x81\x81\xd1\xef\x57\x11\x24\x47\x81\x80\x87\x8c\xde\x8d\x8b\x87\x0c\x9a\x4f\xfe\x5f\x00\x00\x00\xff\xff\xba\x47\x13\x02\xe9\xc4\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x84\xc3\x76\x84\x5c\x8e\xee\x3e\xff\xff\x6e\x74\xb4\xdd\x2b\x4b\xed\xcb\x19\xcb\xd2\x48\x72\xf7\xce\x76\x38\xd8\xac\x22\x55\xc5\x71\x15\x59\x43\xb2\x24\x6b\x26\xe6\x0d\xf6\x01\xf6\xf9\xf6\x49\x16\xf8\x01\xc8\x0b\xc9\x92\xec\x9e\xe3\x0f\x16\x2b\x13\x79\x47\x22\x01\x24\x80\xcc\xb7\xdb\xac\x28\xbb\x45\xfa\x3c\x3d\x4c\xb7\x79\x55\xaf\xcb\xae\x4b\xbb\x72\x7d\xf5\x74\xd5\x74\x7d\x59\xa4\xaf\xab\x9e\x7e\xb7\xd7\xd5\xa2\x4c\x92\x55\xb3\x29\x09\xf4\x0d\xfd\x49\x8a\xbc\x5b\xcd\x9b\xbc\x2d\x28\xe1\xd8\xbe\x93\xf2\xf3\x76\xdd\xb4\x0c\xf4\xb3\x7c\x25\xab\x72\xbd\xe5\x32\xf4\x27\xe9\xaa\x65\x9d\x55\x35\xfd\xbc\xa0\xaf\xf4\x6d\x2d\x29\xcd\xae\xb7\xa4\xd3\x5d\x2f\x69\xbb\xad\x25\x7d\xd8\x26\x6d\xb9\xac\xa8\x37\x2d\x25\x9d\xeb\x67\x72\x53\xce\xbb\xaa\xe7\x96\x7e\x95\xaf\xe4\xba\x6c\xbb\xaa\xe1\xda\x7f\x91\xaf\x64\x9b\x2f\x19\xe0\x8c\xfe\x24\x7d\xb9\xd9\xae\x73\x14\xb8\xd4\xcf\x64\x9d\xd7\xcb\x9d\xc0\xbc\xd3\xcf\x64\xd1\x96\x94\x95\xd5\xe5\x0d\xa5\x1e\xe1\xc7\x6c\x36\x4b\x76\x34\x09\xd9\xb6\x6d\xae\xaa\x75\x99\xe5\x75\x91\x6d\x64\x98\x1f\x28\x3d\xd5\xf4\x94\xd2\x53\x4e\xc7\x10\xca\x82\x86\x9a\xe5\x9d\x8e\x83\xe6\x92\x46\x9e\x77\x09\xaa\xaa\xf3\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\x67\x8d\xff\x52\xbf\xbb\xee\xa6\xc1\xd4\x9e\xe9\x27\xcd\x41\xd6\xdf\x6e\x4b\x4c\xc1\xd3\x4b\xfa\x4a\x16\xf9\xb6\x5f\xac\x72\xee\xa6\x7c\x25\x04\xb4\x6d\x68\x2e\x9a\xf6\x16\x70\xf6\x23\x69\xda\x65\x5e\x57\xff\xc8\x7b\x99\x9f\xd3\xe0\x67\xb2\xa9\xda\xb6\xe1\xa9\x3d\xc1\x47\x42\x23\xcf\xb8\x1e\x4a\x79\x4f\x93\x10\xd4\xc2\x39\x9b\x6a\xd9\xca\x2c\x72\xe6\x09\x7e\x71\x2d\x92\xa7\x35\x49\x96\xab\xed\xaa\x69\x3f\x69\xea\x2b\xfe\x1c\x54\x49\x9d\xd3\xdc\xb8\x5f\x79\x4d\xeb\xa1\xb9\x27\xf8\x11\x01\x74\x49\x5e\x6c\x68\x86\xb7\x79\x5d\xf2\xd4\x1d\xf2\x2f\x9a\x2f\xfa\x95\xe4\x8b\x45\xb3\xab\xfb\xac\x2b\xfb\xbe\xaa\x97\xbc\x06\x87\x92\x94\x5e\x68\x52\x12\xe4\xb9\xb4\xdb\x66\xe7\x56\x99\xd2\xff\x4a\x3f\xd3\x33\xf9\x29\x79\x41\x21\x64\xba\x92\xd4\x64\x5f\x5d\x57\x7d\x55\x4a\x63\xf6\x23\xd9\xee\xd6\x6b\x9a\xcf\xbf\xef\xca\xae\xe7\xac\x33\xfa\x4d\x33\x20\xbf\x93\xaa\xeb\x76\x28\xf1\x16\x1f\x09\x2d\x6a\xbd\xc0\x70\x8e\xf0\x91\x24\xbf\x75\x65\xde\x2e\x56\x1f\x13\xf9\x8b\xde\xf2\x07\x23\xe5\xbe\xe5\x66\x0c\x53\xec\x92\x16\xac\x81\x64\xd1\x14\xfc\xe3\x88\xfe\x50\xd5\x55\xdd\xf5\xf9\x7a\xfd\x31\xd1\x0f\x06\x93\x2f\x59\x82\xbe\xea\x31\x0f\x9a\x98\x5e\xf4\xe5\xb6\xe3\x35\x4c\x5f\x55\x6d\xd7\x3f\xed\x2b\xc2\xe2\xf3\x5d\x9d\x14\xcd\xe2\x13\xed\x0f\xde\xeb\x68\xf9\xed\x55\x4a\xd3\xf5\x88\x76\x48\xbb\xab\x6b\x9a\xa0\xf4\x75\x43\x93\x46\xcd\x54\xd4\xfe\x31\xa0\x0f\xd2\xed\xba\xcc\x3b\x02\x29\xf3\x22\xfd\x31\x4f\xfb\xbc\x5d\x96\xfd\xf3\x07\xd9\x9c\xf6\xe5\xa7\x07\xe9\xaa\x2d\xaf\x9e\x3f\x78\xd8\x3d\x78\xf1\x7a\x47\xc5\xd6\x55\x5d\x76\x3f\x3e\xcb\x5f\xa4\x8b\x9c\x72\x68\x1a\x6f\xd3\x79\x79\xc5\xdb\x90\xda\x4a\x09\xff\xeb\x25\x6f\xc1\xdb\x7e\xc5\x0d\x12\x2e\xd0\x47\x97\x32\x0d\xf8\x26\xe1\x05\x20\x1a\x91\x15\x73\xa3\x77\xe8\x10\x92\x5b\x5a\x80\x93\xdb\x8b\xbf\xbc\x3b\x48\xcf\x88\xe8\x2d\xdb\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x56\xc7\x2f\x67\x09\x95\xb5\x09\x39\xce\xfb\x7c\xce\x7d\x77\xeb\xcf\x99\xb2\x3d\x5d\x1e\x36\x29\x93\x51\x90\xcc\xae\x8f\x96\x65\x6a\x8b\x53\x1d\x4a\x17\x5c\x1d\xef\x99\x38\x50\xba\x9b\xd9\x33\x99\x33\xaa\x2a\x7d\xfb\xfe\xfd\xe9\xf1\xcb\xb4\xac\x97\x34\x33\xe9\x4d\xd5\xaf\xd2\x5d\x7f\xf5\xdf\xb3\x65\x59\x97\x6d\xbe\xce\x16\x15\x4f\x4a\x4b\x28\x9b\xd2\x2c\xc9\x10\x67\x49\xd7\xad\x89\x76\x01\x0b\x2e\x2e\xde\xa5\x27\x8c\x09\xdb\xbc\x5f\xa1\x23\xfd\x2a\xe9\xfe\xbe\xe6\x89\x72\x0d\x5e\xae\xca\x14\xdb\x01\x40\xcd\xd5\x70\x5e\xd2\x42\xfb\x3a\x4b\x7f\x9c\xb7\x2f\x82\xfe\xe5\xf3\xae\x59\xef\x7a\x2d\x79\xb3\x2a\x6b\x2c\x14\xa1\x52\xdb\x13\x21\xb4\x63\x65\x96\x94\x6d\x9b\x11\x49\xee\x6f\x79\x79\xb4\x2f\xfb\x5a\x91\xca\x68\x97\xd4\x4d\x4f\xcb\x9f\xa2\x9c\x54\x51\xd5\xd7\xf9\xba\x2a\x68\x91\xfc\x44\xc6\x65\x91\x58\x34\xb4\xde\x5c\x9a\x30\xba\xb9\xc1\x14\xd1\xde\xa5\x13\x23\x7d\x30\x7b\x00\x12\xfe\xe0\xe9\x83\x59\x52\x37\x99\xd0\x17\x26\xf6\x45\xd5\xe5\x73\x22\xfc\x72\x10\xb5\x46\x47\xff\xca\x78\x27\x5d\x51\x88\x34\x82\xe0\x35\xe1\xc3\x0d\x67\x0a\x23\x65\x4e\x27\x00\xc8\x94\x12\xa8\x70\xec\x46\xcd\x1c\x5e\x08\x41\x73\x09\xa3\x31\x27\xb6\xd0\x86\x95\x87\xdb\xed\xba\x5a\x48\xd3\xaf\x25\xcf\x23\x28\x1f\xf5\x3a\x29\x21\x1c\x10\xcc\xf2\x02\x34\xa3\x5e\x33\xc1\x4b\xa3\x93\x03\xe5\x57\x25\xed\xb8\xd5\x6e\x29\xc7\xdd\xba\xd9\x15\xdf\x80\x10\xd9\xca\x79\x3a\x94\x9e\x37\xd4\x61\x60\x95\x03\xf0\x4d\x1c\x12\x41\x61\xee\xa2\x2d\x37\x4d\xcf\x13\xa7\xc5\x98\x82\xde\x54\x94\x49\x23\xed\xf2\x6b\x3a\x37\xfb\x46\xb6\x72\x41\x5b\x75\xc1\x15\x13\xe5\xdb\x11\x8b\x20\xdb\x89\xe8\x8f\x6c\x29\x4b\x8b\x71\x17\x50\x9b\x1d\xed\xc2\x15\x55\xc6\x13\xcf\x2c\x0e\x55\x39\xd5\x4f\x0c\x89\xea\x01\x75\xa0\x1d\xdf\xd0\x71\xcc\x0b\x7d\x8c\x0f\xfd\x1d\xd6\x4f\xbd\xca\xaf\xae\xa8\x57\x1d\xed\xa6\x37\xe9\x62\xdd\xd0\x56\xfc\x70\xfe\xae\xe3\x8d\xb6\xca\xb6\x4d\x0b\xd6\x86\xb2\xce\xe8\xd3\xa5\x05\x13\xcd\x10\xf5\x6e\x33\xa7\x5f\x37\xab\x8a\x08\x3c\xa6\x9d\x4b\xf0\xfe\xa0\x54\x6a\x62\xd7\xd1\x12\x1e\xa4\xb4\xb5\x68\x04\x34\x65\x40\x00\x1e\x83\x61\x1d\x83\x5f\x11\x8e\xed\x5a\xda\x4e\xab\xbe\xdf\x5a\xcb\x6f\x2e\x2f\xcf\xa4\x69\x97\x7a\x57\xdb\x79\x80\x19\x58\x83\x35\x33\x5b\x75\xda\xd4\x33\x20\xc9\xae\x5d\x0f\xf0\x87\xc6\x6a\x39\x7b\xe6\x85\xbb\xf0\x8c\xff\xbb\xf0\xd3\x83\x79\xee\x88\x8d\xbc\x01\x36\xd1\x1c\x83\x01\x9a\x25\xeb\x66\x99\xb5\xb4\x1a\x86\x4c\xef\x9a\xa5\x20\x50\x94\xe1\x5b\x3a\x36\x94\xe0\xd9\xb8\x69\x99\x21\x24\x48\x10\x2c\x5e\x64\xda\x24\xcd\x96\xfb\x19\xec\x92\x53\x4d\xf0\x5b\x03\x6d\xbb\x7c\xb0\x60\x94\x09\xe2\x14\xb0\x0b\x1b\x9a\x3f\xa5\xe6\x17\x27\x34\xab\x20\xe9\x48\xbd\x6a\x9b\x0d\xa5\xbe\xa2\x3f\x3e\xc1\xf7\xf1\x84\xeb\x03\x4c\x5e\x14\x74\xd8\x74\x07\xe9\xf9\xab\xa3\xf4\xff\xfb\xfe\xbb\xef\x66\xe9\xdb\x9e\x37\x36\xe3\xfa\xdf\x18\x47\x73\x9d\x09\x0f\x4a\x04\xb0\x27\x34\x7e\xc0\x1b\xf5\x41\xfa\x23\x72\xff\x47\xf9\x39\x27\x16\xb6\x9c\x2d\x9a\xcd\x0b\x26\xee\x9b\x9c\x48\x09\xe7\x10\xf6\xeb\xb6\xb8\x28\xeb\x82\x3e\x84\xa1\xd4\xac\x80\xb8\x68\x76\xc0\x5e\x0a\x5f\x9d\x2d\x9a\xfa\xaa\x6a\x79\x3c\x3f\xd7\xc0\x2d\xe3\xb8\x89\x69\x40\x8e\x71\x67\x34\x65\x44\x8f\xaa\xab\x5b\x0f\x8a\x91\xbe\xe7\x44\x45\x8f\x44\x70\x38\x53\x52\xef\xe6\xf8\x42\x50\x9b\xb1\xe0\x94\x46\xd7\xda\x74\x77\x7e\xbe\x9b\xab\x2b\x3e\xf1\xed\xac\xd2\x16\x4e\x25\x55\x8e\xad\x10\x84\x50\x7b\x0b\x99\xe1\x58\xb7\xc4\xd1\xf1\xfb\xb4\xbc\x26\xdc\x65\x1a\xda\x36\xc5\x6e\x01\x7c\x65\xd8\x03\x26\xfd\x44\x70\x3a\xda\x69\x8b\x52\x91\xc5\x91\x1c\xee\x1a\xd3\xb5\x05\x01\x11\xa5\x31\xd2\x4f\x8c\xee\x35\x9d\x23\x6d\xd0\xc4\x6b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x5a\x70\x42\x0a\xe9\x45\x27\x9d\x92\x6c\xda\x3c\xb4\x2b\x76\x24\x40\xe5\x05\xf5\x65\x7e\x0b\x2a\xd6\x31\x2e\x14\xe5\x55\xbe\x5b\xf7\xbe\x5f\x83\x23\xc9\x5a\xba\x60\x19\x2e\xcc\x9b\x2c\x30\xea\x20\x90\xa7\x1b\x96\x25\x2c\xac\x89\xdb\x92\xa3\x8b\xd1\x55\x84\x24\x3b\xc5\x88\xd8\x95\x58\x9e\xcc\x8b\x24\xba\x5e\x26\x99\xc4\xf9\xae\xd9\x73\xe1\xbf\x52\x1c\xdc\x5c\xa3\x55\xc0\x0c\xcb\x74\x5f\x66\x89\x32\x6d\x99\x4a\x93\xd9\x75\x05\x59\xcd\xa1\xab\x54\xa9\x12\x26\xd3\x85\x5f\x18\x80\x85\xc0\x6e\xb2\xac\xeb\xcd\x29\x0f\xb2\x73\xb2\x9a\xcc\x39\x0f\x17\x2d\x30\x23\x49\xab\x74\x5d\xe1\xd0\x50\x84\xc1\xbc\xcc\x99\xd7\xa1\xa6\xa9\xa9\xae\x2c\x51\x03\x95\x7f\x46\x75\xa2\xcc\x4c\x05\x15\x95\x1d\x8c\x01\x65\xe6\xa1\x68\xc0\x89\xe0\x64\xa2\xd2\x36\xad\x03\x2e\x21\x6d\xab\xe5\x8a\x28\x75\x73\x73\x20\x93\x72\xb3\x6a\x4a\xde\x3f\x6f\x8f\x9f\x7f\x2b\xfd\x58\xf2\x39\xe5\x0a\xf1\x09\x97\xef\x08\xb9\x68\xc6\x14\x8d\xa5\x0b\x8e\x53\x00\xe4\x48\x24\x12\xa0\xa1\x6c\x3a\x62\x4c\x1c\xd1\x50\x5a\x11\xe6\x29\x91\xf0\x30\x52\xda\xe4\x5b\x69\x58\x88\x92\x0a\x1d\xd9\xb2\x81\x3c\x65\x42\x06\x1f\xbd\x24\xad\x77\x7d\xb6\xac\xfa\xec\x8a\x29\x17\x57\xfc\x8a\x2b\x60\x4e\x80\x72\xd2\x47\x94\xf5\x28\x25\xea\x47\x42\x62\xf1\x43\xfa\xf0\x5a\xd9\xd6\xef\x99\x24\x65\xb4\x89\xaa\x35\x56\x44\xa5\xb4\xb6\x14\xae\xd4\x34\x04\x8e\x05\xec\x76\x5b\x1c\x94\xca\x6d\x3a\x91\xa4\x68\x6e\x6a\xde\x7c\x20\xbd\x44\x66\xaa\x45\x45\x07\xc6\xbc\xaa\x73\x3a\x69\xac\x16\x90\xf4\x87\x84\x12\xef\x4f\x2f\x01\xb8\x6c\xe6\xbb\x6a\x5d\x18\xc0\x2c\x31\x8e\x94\xf8\x51\x5d\xfc\x90\xb7\xb7\xa4\x4a\xfa\xb2\x68\x5a\x3e\xcb\x30\x1a\x2b\xb8\x87\xaf\xe2\x83\x50\x18\xe1\x8a\x85\x2a\xc0\xa2\x9c\x63\x81\x78\x1a\x68\xf5\x21\x2f\x32\x83\x04\xb4\xa9\xba\xfa\x51\x8f\x9e\x2e\x76\xd4\x16\xad\x3c\x27\x53\xc1\x2e\x7d\xfa\x82\xfe\x4f\x98\xdd\x92\x03\x60\x39\x9e\x78\xce\x4c\x25\x73\x27\x5b\x31\xea\x6a\x84\xe3\x6e\xa5\x0d\x83\x83\xb1\x86\xfd\x35\x14\xe8\x76\x82\xb4\xac\xcc\x59\xd3\xb2\x96\xdf\xd0\x07\x8b\x8f\xcb\x35\x16\x21\xef\x55\xc6\x6b\x68\xde\x18\x41\x0e\x64\xcf\x5c\xd1\xd0\x98\x94\xf6\xf9\xa7\x12\x62\xa1\x9f\xf3\x29\x4e\x62\xef\xbc\x25\xbf\xb1\x6a\xeb\x63\xb2\x13\x2e\xb8\x59\x17\x4e\x52\xc3\x6e\x20\x6a\x54\x46\x9a\x19\x0f\xe3\x10\xbd\x23\x6e\x7f\xb1\xca\x9c\x5e\x8c\x27\xb2\x2f\x3f\x83\x5f\x40\x96\x57\x93\xf1\x2e\xe1\xac\x64\x73\x8b\x25\xe6\x81\x9f\xdc\xfa\x15\x66\xbd\xc1\xa2\x21\x29\x7c\xde\xf0\x4c\x5f\x97\x0e\xea\x28\x4c\x8d\x0b\x50\x5d\xc4\xac\x6b\x55\xb1\xa2\x84\xb2\x44\x37\xa3\xb9\xa2\x9b\xe9\x12\x50\x3f\x55\xea\x81\x48\x12\x0e\xa8\x4a\x62\x46\x8b\x09\x8d\x87\xb5\xfc\xb6\x16\xce\x34\xe4\xd3\x69\xde\x54\xe1\xf7\x31\x31\xb8\xf3\x38\x9f\xc8\xd0\xea\x63\xa0\x54\xcb\x0c\x23\x4c\xb9\x06\xc5\x8f\x52\x22\xcf\x85\xac\xca\x2d\x33\x2c\x9b\x0e\xa8\xb4\x66\x15\xc1\xad\x32\xf0\x0e\xa9\x7e\x12\x1a\x4f\x58\x46\x94\xf1\x9b\xa4\x6b\x78\x93\x66\x5f\x59\xc5\xcb\x8a\xd0\x07\xe5\xe3\xf3\x51\xb4\x7d\xc4\x67\xf3\xf2\xd1\xce\xbc\x3d\x88\x45\xbb\x15\x09\xb0\xf3\x92\xd8\x0b\x2d\x56\xcc\x4c\x34\xe7\x65\x27\x81\x12\xfb\x0c\x1a\x4a\xec\x0c\x29\xd9\xb4\xc3\x83\x9b\x7b\x28\xa4\x51\x5b\x71\xec\x16\x98\xa9\x90\xe7\x9a\x68\x93\x26\x6c\x53\x32\xff\x9e\x6d\x44\x33\x28\xbf\xd2\x93\x32\xa1\x13\x74\x09\xec\x17\xf4\x7c\xce\x6a\x9b\x25\xc4\x1c\xc5\x57\x06\x28\xfb\x90\x76\x2b\x84\xa5\xfc\x64\x9a\x58\xa2\x26\x37\xd0\xd0\x11\x3d\x18\x4d\x3f\x9d\x72\x94\x3d\xb3\xb3\x40\xd8\x0a\x70\x87\x1d\x51\x18\x3f\x89\x87\x29\xab\x54\x43\x28\xe5\x74\xdd\xa8\x18\x9e\x09\xcd\x8f\xf3\x17\x0f\xbb\x1f\x9f\xcd\x5f\x38\x72\xbc\x58\x95\x8b\x4f\x82\x7e\x55\x3d\x6f\x3e\x43\xb0\x86\x82\x87\x64\x7a\xde\x62\x0f\x8b\x94\x04\xed\x16\x72\x1d\x91\x0f\x2a\x46\xf3\xce\xb9\xd1\x9a\x51\x5f\x98\xca\xcc\x44\x57\x57\x0a\x7e\x7b\x7c\x84\xd2\x8e\x31\x12\x67\x86\x47\x49\x8c\x63\x5d\x6d\xaa\x7e\x84\x12\x4c\x94\x72\x45\x2d\xd5\xf1\xd9\x1c\xa1\x2e\x3f\x4a\x22\xed\x54\x0d\x9d\xc4\x86\x26\x37\x39\x09\x72\xdf\xa7\x84\x1a\xbb\x9e\x65\x15\x56\x8f\xf4\x44\xdb\x73\x3e\xca\x49\x88\xcb\xbb\x6c\x57\xeb\x74\x95\x85\x21\xc9\x9b\x0a\x27\x0e\xb7\x6b\xa8\x1c\x40\xc5\xb2\x43\xfa\xd8\xcd\xe4\x93\x99\xaa\xe4\x50\x8a\x4f\x01\xee\x4f\xc5\x8c\x6e\x3e\xb5\x26\x44\xef\xea\x52\x24\x6f\x8c\x9f\xc1\x78\xf9\x48\x7c\xf3\x8b\x42\x32\xe0\x27\x4a\xc1\x3c\xcf\x77\x7d\xdf\xb0\x18\xb3\x66\x5c\x90\x32\xd6\xe7\x23\x00\x42\xd0\xf3\xf5\x61\x31\x87\xb3\xa4\x92\x18\xce\xf0\x0e\xfb\x59\xf4\xf5\x2c\x4e\xc6\x43\xd3\x33\xd3\x41\x15\xa2\xff\xca\xeb\x5b\xaf\x5a\x41\x1f\xb8\xb9\x7e\xba\x27\x8f\xdb\xf2\x89\xef\x8b\xdb\x07\x28\xa1\xfd\x91\xd2\xc1\x16\x39\x47\xa6\xe8\x85\x6d\x23\xd9\x89\xa3\xba\x55\x8f\x1a\x6d\x3c\xb5\xc8\x67\x6c\x27\x9a\x49\x3c\x68\x81\x59\xa6\x41\xa0\xf4\x6c\xd0\x96\x17\x1f\xc7\xd3\xd7\xc7\x3d\xf6\x87\x52\xdf\x34\x59\xb7\x12\xc9\xdf\xba\x97\xae\xcb\x7a\x19\xa9\xcc\x70\xc7\x03\x7c\xfb\xff\x49\x3e\xfe\x8d\x07\xfa\x31\xd1\xa5\x28\x83\xfd\xa0\x88\x6a\x39\xb6\x64\xb2\x2d\x1c\xbc\x71\x76\xbf\x94\x2d\xcb\x82\x00\x8a\xd6\x6a\xdf\x24\xc6\x63\x70\xd4\xd0\xb3\x02\xe7\xe1\xde\xd5\xe4\xab\xdd\xfa\x20\xbd\x11\x1e\xc1\x97\x71\x72\xa8\x72\x0f\x8c\x95\x72\x1f\x45\xc3\x6b\x8a\x9c\xc6\x77\x0b\x2d\xfb\x5f\xe9\x4c\xaa\x71\xb3\xd1\x24\x94\x21\x85\x4e\xf0\x41\xa0\x2c\x48\x7f\x4c\xf8\xd0\x7f\x3f\x60\x81\xf9\x50\xd3\xb4\x80\x0d\x43\xd6\xcf\xe1\xcd\x8d\x1b\xf3\xd9\x04\xb7\x7c\x5e\xfa\x0b\x1c\x7c\xb9\xc1\x5f\x5c\xbc\xb9\x34\xc9\xf8\xe2\x4d\xfa\xa9\xd4\xba\xdf\xf4\xfd\xb6\xfb\x00\x9d\x8b\x28\x50\x58\xdb\x72\x96\xdf\x32\x6b\x2a\xc9\xfa\x03\x19\x97\x65\xbe\xd1\x4e\xf2\xa7\x54\x71\x48\xe7\xaf\x26\xf2\x27\x1d\xcb\x81\x2e\x2f\x01\x93\xf6\x73\xc4\x9b\x0b\xe2\x3b\x41\xa9\xd4\x2b\x9d\xdf\x47\xfa\xc7\xdf\x93\x7c\xbd\x25\x59\x8e\x19\x9e\x00\x0c\xaa\xb6\xb9\x8a\x74\x29\x40\x80\xe8\xbb\x0d\x21\xc8\x02\x22\x2c\x15\x78\xfc\x34\x7b\x12\xa8\x5e\xe3\xca\x0a\xda\xff\x7f\xa8\x42\xfe\x66\x4e\x3a\xac\xb7\xab\xfe\x61\xa3\x88\xaa\xe3\x74\xa2\xa5\x04\x01\xbe\xd5\x43\x39\x20\x1c\xe4\xcc\xc3\xf6\xac\x79\xa3\x04\xe2\x93\xa3\xaa\x37\xf9\xe7\xfb\x0a\x6e\x9a\x89\x72\x42\xe5\x7c\x21\x23\x66\x3a\xc4\x68\xf7\x10\x38\xab\xd6\xf6\x02\xd3\xc2\x13\x48\x55\x2f\xd6\xbb\x62\x6f\x47\xba\xdd\x9c\x36\x12\xf3\xdf\x8f\x1e\x76\x8f\xb8\xca\xfa\x13\x1d\xda\xb5\x83\xff\x20\xbf\x53\xfc\xfe\xc1\x6e\x16\x49\x40\x56\xa1\x24\x75\x77\x8c\xc4\x7b\x14\x7c\x7e\x40\xb8\x98\x79\xd2\x13\x0a\x1c\x0e\xf9\xa1\xe5\x50\x81\xd0\xed\x7f\x56\x6d\x40\xf6\x22\x04\x9c\xf9\xdb\xd0\x8c\x79\x80\x8c\x19\xf9\x3a\xe4\xbc\x99\x5e\xda\x09\x0b\x2e\x01\x10\x72\xf5\x95\x8d\xcb\x0d\x76\xe7\xde\xe2\xc4\xe9\x4c\x94\x3e\x1d\x2b\xbb\xf7\x94\xef\x69\x83\x4d\x54\xe0\xf6\xdd\xde\x82\xb2\xf6\x28\x44\x23\x2f\x86\x84\x63\x5c\x8e\xa1\x66\x7e\x96\xdc\x84\x87\x6b\x13\xca\x29\x6e\x9e\x63\xb1\x92\x55\x34\x84\x7e\x2d\x6e\xa5\x03\xe1\x52\x85\x7d\xa5\xf5\x1b\x96\xa3\xba\x1d\x1f\x35\x2c\x73\x09\x07\x15\xcf\x28\x33\x11\xa8\xaa\x44\x13\xfb\xab\x27\x7c\x62\xd2\x7c\x5f\xfd\x00\xfb\xca\xaa\x43\x5d\xc4\xb8\x62\xad\xdc\x01\xed\xab\xd6\x09\xca\xe5\xe7\x0a\x6a\xdd\xd7\xd5\x75\xa9\xa2\xb2\xd3\x10\x20\x6f\x96\xac\x69\xff\xb3\x78\x25\xa3\x12\x56\xbb\xb9\xe6\x1d\xc5\xed\x71\xae\x94\x13\x35\xaf\x0e\x8a\x91\x44\x85\x6e\xdc\x35\x95\xc5\x01\xdf\x7b\xf5\x38\xcb\xb1\x41\xf3\xf5\x4d\x7e\xdb\x41\x81\x64\x44\x86\x35\xe4\x52\x9c\x29\x08\xf1\x33\x4b\xf4\x2a\xbc\x87\xa1\x5d\x63\x33\xc1\x17\x0a\x7c\x5c\x38\xb6\xe3\x06\x62\x33\x28\x84\xaa\xa4\xae\x83\x83\x59\x4f\x17\x16\xf9\x59\xd6\x65\x31\x44\xb2\x83\x8a\x70\x31\xaa\xc4\x7e\xa2\xec\x01\xf3\x7a\xd4\x0c\xf3\x5e\x44\x82\x65\xae\x89\x95\xa5\x99\x45\x97\x02\x1d\xca\x8e\xea\x7f\x2a\xbc\x7b\x45\x73\xc8\xa2\xa0\x57\x2b\xf0\x69\x44\xab\x62\xf7\x08\x92\x2e\xc2\x78\xd7\x57\xeb\x35\xcf\xb4\xd9\x21\xfc\x35\xe0\x3c\x52\xe4\x62\x9f\x60\x9a\xba\x55\xb5\x4d\x1b\x68\x93\xc3\x29\xf4\x68\x1b\x70\xcb\x7c\x63\x52\x42\x36\x60\xad\x7a\x9b\xd7\xdd\x55\x09\xf5\xfa\x26\xbd\xe2\x0b\xed\x99\x36\xcd\xcc\xb7\xd8\x1d\xec\x69\x59\xc4\x2c\x34\x1d\x1e\x10\x58\xbb\x60\xa1\xe2\xa6\xe5\xfa\x06\x3a\x5c\xf4\x01\xb3\xea\x6b\xea\xac\x0f\x8c\x66\xa3\x29\x00\x0f\x1c\x5d\xc6\x4d\xce\xc3\x55\x24\x9f\x4b\xfb\xc0\xb4\x7b\xc6\x1d\xcc\xb9\xde\x1f\xc8\x1d\x4e\xbc\x48\x94\x22\xad\x8a\x76\x94\x15\xd3\xd1\xd8\xb9\x68\x70\xad\x4f\x3b\xa4\xd4\x56\x78\x5b\xf0\x4e\x19\x54\x08\xdd\x8d\x17\x7a\x12\x31\x01\xc8\xe6\xd4\xc5\xc5\x2a\xda\x9b\x97\xc8\x49\x25\x67\xb4\x3d\x93\xdf\xb8\xe9\x8f\x89\x18\x01\x64\x4e\x53\x7f\x24\x46\x01\xc2\xb9\xaa\xe6\xbd\x4f\x4d\x3d\xcf\xd7\x27\x56\x44\x94\xf1\x77\x96\xe4\x83\xd4\x34\xa5\x7f\x6b\x88\x69\x80\xc2\xfd\x3f\xe9\x8b\x79\xf9\x3a\x89\x6e\x30\x07\x8a\x10\xb5\x0e\xe1\xfd\x75\x46\xdb\x82\xf8\x16\x35\x11\xb9\x25\x39\x1c\xb4\x01\xba\x99\x57\xf6\x9d\xf0\x2d\x79\x8b\x8d\x72\xa1\x5f\x91\xe2\x45\x0a\x89\xa6\xed\x95\x7d\x6b\xaa\x4b\xa2\x2d\xee\x52\x3e\xe8\x67\xc2\x72\xff\x66\x86\xb3\x84\x19\x73\x5c\x76\x04\x27\x08\x33\x08\xbc\xce\x96\x37\x0b\xe0\xb7\x79\x4f\x54\xb4\x16\xf9\x4c\x08\x5a\x58\x54\xb3\x5d\x15\xee\x8e\x9d\x6b\x61\x3b\x16\x99\xbb\x8f\x89\x37\xb0\x31\xdb\x9a\x29\xe5\xb2\x52\xa4\x4e\x99\xe2\x3f\xd3\xa7\xea\x78\x40\xed\xf0\xa1\x42\x3a\x6e\xb7\xed\x4a\x12\xf6\x37\xc1\xcf\x44\xb5\x62\xb1\x4a\x4c\xf7\xc3\xf3\xf4\x58\x3e\x4c\xdc\xdf\x55\x18\x53\x45\xa2\xc3\x16\x0b\x15\x98\x03\xe9\xca\xb9\x4e\xab\x35\x98\xd7\xe7\xb7\x63\x29\x55\x2a\x01\xa2\xdb\x0d\x13\xce\x7d\xbe\xe0\x08\xa4\x55\x56\x51\x43\x8c\xad\x83\xdb\x33\xbe\x13\x62\xd1\x9b\xc0\x6e\xca\x79\xca\x4a\x63\x42\x34\x92\x0a\x75\x9c\x9b\x9c\x04\xca\xeb\x2a\x77\xaa\xa6\x80\x1f\x73\x0c\x83\xe9\x8a\x20\xf4\xd4\x4f\x71\xaf\x95\x42\xfc\x90\xfb\x0d\x63\xc7\x6c\x41\x59\x83\x22\xb8\x4f\xb5\x56\x72\x0b\x53\x83\x55\x63\x93\x1b\x3b\xcf\x5f\xb1\x15\x13\x6c\x07\xc6\x76\x78\xdc\x84\xde\x46\xbd\xd3\xcf\x64\xb7\xe5\xeb\x9d\x60\x2e\x3f\x20\xc1\xcd\x65\x9c\x1f\x08\x81\x98\x55\x2b\xe6\x54\x45\x02\x5e\x04\x52\x21\xdf\x71\xe8\x56\x9e\xb0\xaf\xd3\xed\x5c\x0c\x41\xbc\x42\x07\xe4\x4e\x07\x8e\x85\x92\xeb\x6b\x4c\x2d\x9d\xd1\xe9\x8a\x76\xd1\xba\xaa\x3f\x75\xba\x52\x3c\x4f\xa1\x40\x0c\x05\x18\xe1\xf7\x4e\xcc\xab\xe4\x73\x6c\xcd\x65\xf7\x60\x03\x6a\x63\xb7\x65\x72\x23\x78\x88\x64\xea\x6b\xd3\x74\xaa\x34\xf5\x64\x89\xd3\xa0\x8b\x91\x34\x9b\x39\x07\xa1\x13\x7b\x68\x37\x93\xd8\x74\x8a\xee\x99\xea\xfd\x3d\xb4\x62\xff\x91\xde\x07\x1c\x5a\x9d\x72\xf3\xa8\x70\xb2\xe1\xb3\x6a\x23\xa6\x92\x1f\xec\x5e\x12\x6b\xe2\xe4\x11\x64\xcf\xe2\xfe\x0c\x17\x52\xdb\xb5\xdb\x80\x7b\xd6\xd3\x56\x2b\xbc\x5e\x92\x15\x72\x44\xa2\x59\x47\xdc\xa0\x8d\xc3\xe5\xf3\xe4\x05\xf9\xef\x71\x11\xe8\x54\x0e\xbc\x0d\xb2\x01\x88\x4a\xe9\x11\xe4\x24\xd3\x6d\x6d\xed\x65\xb8\x07\xbd\x1f\x21\xb5\x95\xbb\x61\x5b\xa8\x60\xe0\x8a\x86\xc5\xcc\xec\x8b\x58\xc1\x2a\xb7\x8a\x30\x04\x11\x63\x98\x1a\x57\x92\x52\x45\xb0\xef\xb5\xd1\x7f\x77\xd7\xfb\x9a\x45\x62\xe9\x9c\xa0\x72\x28\xb4\x8d\x2f\x1c\xc4\x40\xd3\xe5\xab\x8d\x66\x44\x02\x4b\xb3\xae\x08\x89\xe4\xb6\x25\x5c\xa1\x53\x3f\x26\x96\x23\xf2\x18\x91\x42\x50\xc2\x06\xb6\x02\x9e\x02\xd2\xb8\xb5\x2a\x3e\x4a\xf0\x65\x29\x4e\x2f\x45\x3b\x80\x99\x6e\x4d\xb6\x8d\x60\xb9\x82\xff\xae\x8f\xf4\x43\x08\x97\x8c\xf5\x58\x13\x06\xf9\x36\x18\xc9\xb6\x05\x99\x18\x8d\xb2\x40\x46\xdb\xab\x5a\x4c\x35\xdc\xe5\x61\x44\x40\xd2\x63\x50\x14\x42\x07\x51\x83\x1b\x3d\xf9\x69\xd8\xba\xc7\xa3\x9f\x63\x05\xba\x8c\x2d\xde\x45\xdf\x24\xd4\x23\xe0\xb8\xbf\x82\x2d\x80\x3c\xb1\x92\x8e\xa1\x42\x08\x51\x03\xb9\xd4\x2c\x52\xef\x43\x53\xff\x35\x2a\x7d\x66\x09\xfe\x0b\xb4\xf9\x51\x53\x5e\x9b\xef\x3a\x39\xd8\x61\xa3\x51\x8e\xb7\x1a\x65\x80\x3b\x51\x5c\x0e\x78\x0e\xc5\x66\xc7\x7a\x70\x2b\x22\x20\xf1\xf4\x50\x12\x18\x14\xc5\x04\x9c\x1e\xcc\x2f\xc3\x60\x0a\x56\x92\x22\x2d\x75\x23\x15\x75\xbc\xe6\x87\x10\x07\x69\x52\x04\x16\xcc\x1a\x9d\xf7\xc2\x4c\xab\x78\xb9\xe1\x79\x90\x0b\x7e\x67\xbc\x36\xba\x8a\x3b\x50\x19\x6c\x55\x2d\x57\x34\xae\x6a\xc3\xf7\xda\xc0\x24\xbb\x3c\xf5\x22\x32\xff\x22\x12\xd5\x2c\x6b\xd6\x81\x71\x0b\x62\xad\xe6\x54\xce\x3f\x76\x7d\xdb\xd4\xcb\x17\xc7\x0d\xcb\xae\xac\x1a\xe2\xf3\xef\xa7\x1f\x9f\x69\x3a\x91\x61\x5e\x42\x36\x6d\x7c\x5d\xf5\x6f\x76\xf3\x47\x5d\xba\x64\x1b\x5d\x5c\xdf\xe4\x81\xe5\xae\x5a\x34\x88\x29\xe1\x4d\xed\xa6\x05\x76\xbc\xb4\xc7\xbb\x66\x4d\x1b\x24\x2e\xd2\x6c\x36\xb2\xbc\x44\xc0\x36\x02\x89\xfe\xc3\x08\xa2\xac\x31\x73\x65\xab\xf3\x43\x15\xce\x1c\x8a\xfb\xf5\xd1\x65\x33\x26\x32\x52\xb8\x28\x1b\xc7\xc0\xb8\xa2\xad\xfb\xe0\x20\x82\xb6\xc5\x4a\x81\x45\x18\x97\xc2\x3a\xb2\xfa\x6a\xac\xea\x81\x3c\xc2\x55\x58\x71\x2a\x49\xfd\x10\x56\x89\xd3\xac\x45\x61\x12\x4a\xd6\xa4\x0b\x62\x05\xc8\xcb\x67\x8f\xe9\x81\xc1\x4c\xbb\xee\x01\x5d\x07\xfb\x5b\x29\x9a\x8c\x5d\xe9\x99\x0d\x20\xa0\x68\x3a\x23\x9e\xa6\x0d\x61\x22\xaa\x56\x0a\x4d\xb3\x5e\x84\xd4\x4c\x6c\xa7\x84\xa2\x09\x42\x92\xb8\xc3\xf4\xfa\x0b\xa9\xd9\xa8\x5d\x3f\x70\x6b\xee\x0b\x28\x1a\xc6\x74\x88\xe9\xa0\xb1\x40\x3d\xa3\x0b\xf5\x4e\x95\x31\xc8\x60\x2b\x5e\x2f\x7a\xbd\x6f\xf4\x1e\x2e\xb5\x44\xac\x09\xc9\x5a\x7d\x19\x6d\x65\xee\x04\xec\x2e\xc5\x12\x08\xfa\x9d\xff\x96\x16\x39\xd1\x81\xbe\xf9\x44\xa8\x34\x2e\x82\xf4\x7d\x85\x1c\x7d\x31\xf9\x45\xa9\xcb\xa1\x27\x0e\x43\x89\x46\xaf\xb3\xf7\x12\x98\x80\xae\x68\xad\xce\x1a\x4b\x94\x53\xb0\x85\x67\x9b\x95\x42\xe8\x88\x92\x01\x35\x39\x72\xfb\x9f\x38\xb6\x9a\x81\x20\x23\xf2\x87\xfe\x0e\x97\x25\xaa\x3f\xd8\x2c\x44\xbd\x77\x75\x40\x3e\x05\x1d\x32\x99\x0a\x37\xc8\x33\x62\x38\x60\x70\x79\x28\x15\x5e\x72\x76\xa7\xd6\xcb\x6a\x15\x60\x45\x5e\x6b\x22\xf6\x00\x00\x65\xc2\x3b\x37\x11\xf8\xe5\xf5\x2a\x56\x8b\x5a\x89\xa8\x2d\x25\xd6\x80\xb0\xce\x08\xe6\x4a\xac\x46\xd2\xc3\xb3\xb7\x74\x60\xb8\x06\xad\xd2\x9f\xf3\xc5\x4a\x17\xf0\x46\x94\x2a\xb0\x2d\x59\xaf\x87\x14\xd7\x31\xfb\x52\xdc\x8c\xcc\x51\x12\x5b\xdc\x0d\x6a\x34\x20\x19\x4c\x9c\x2f\x73\x5c\x76\x81\xa2\x49\x5a\x43\x4f\x86\x67\x95\x1b\xea\x37\x34\xb3\x4e\xdd\xc9\x5b\x6b\x7b\xcb\xd4\x3f\xb0\x12\xcb\x65\x86\x6e\x40\xbf\x07\xe6\x69\x04\x09\x75\x4b\xca\x5b\xb8\x75\xf4\xc3\x3a\xac\x14\x24\x5c\xca\x90\x8c\x4c\x2e\xa6\x27\x2a\x93\xc5\xa6\x28\xcb\xd6\xea\x89\xc7\x7c\x1f\x9d\x61\xc4\xf7\xb2\xfd\x1d\x54\x26\x1c\x55\x80\xca\x67\x93\xcd\x3a\x8c\x96\xa6\x07\xf4\x26\x95\x63\x50\xec\x25\xb8\x15\x91\x56\x14\x23\x02\x5b\x68\xaa\xe5\xa6\x5c\xaf\x69\x3f\x68\xeb\xfe\x2e\x55\x87\x1e\x59\x16\x28\x50\x20\x82\x96\x9e\xb7\x95\xa9\x08\x35\x85\x56\x19\x41\xd0\x76\x83\x31\x81\xe8\x07\xec\xb4\x3e\x3a\x7c\xff\xfe\xf4\xd2\x1f\xd2\xbc\x0f\xea\x82\x58\x89\x6f\x9c\xa1\xde\xa8\x5f\x66\xae\xe7\x16\x30\x86\xf0\x06\x83\x5a\x62\x1f\x5c\x48\xa6\xac\x76\xfa\x5c\x36\xa0\x3d\x0d\xf7\xc5\x68\x79\xd4\xff\x62\xdf\xfa\x25\xbf\x31\x77\xf3\x31\x31\x7d\xfb\x29\xff\x4d\xc2\x2b\x8b\xe0\xaa\x07\x5b\xcf\xdf\x08\x79\x17\x03\xea\x40\x53\x8c\xae\x30\x40\xa4\x77\x39\x44\x2d\x9a\xfb\x06\x67\xc5\x55\x8a\x9b\xf3\x03\xd6\xc8\x36\x2d\x36\x0c\x4f\xee\xae\xae\xfe\xbe\x03\x7b\xc6\xe2\x10\x11\x0f\xb6\xff\x9c\x57\x6b\x39\x50\x7e\x71\x3f\x24\x9d\xbf\x06\x66\xf0\x41\xe3\xf4\xeb\xc7\x6e\xcb\xe6\xb3\x74\x36\x74\xcf\x1f\xec\xaa\x94\x15\x7b\x6c\x09\xf6\xe0\x05\xc9\x2f\x7c\x9f\x4e\xcb\x47\x10\x2f\x46\xd5\xb1\x13\xdd\x42\xf4\x81\xce\xa6\x08\x78\xab\xe9\xbc\x5b\x98\xdf\x8d\x94\x90\x32\xf1\x7f\xa0\x4d\xf6\xd8\xf3\xe3\x78\xac\x52\x37\xcd\x11\xf6\xee\x75\xbe\xde\xc5\x5a\x12\x6e\x9d\xcb\x74\x4f\x12\xd8\xf8\xfb\xb2\x30\x1a\x82\x0f\x28\x67\x10\x36\xfc\x84\x49\xeb\xef\x76\xf8\x62\x6f\x51\x66\xfc\xbe\x49\xd0\x13\xd5\x81\x0f\x9d\x07\x91\x67\xc6\xf7\x9c\x07\x0b\x7c\xa4\x4e\xac\x46\xe0\xac\x93\xaf\x7b\xd1\x7f\xa7\xc1\x6a\x32\x69\xc1\x20\x42\x5d\xeb\xad\xde\x34\x3a\x0a\xd6\x2d\xda\x0a\x0e\x04\x92\xce\x1e\xa4\x69\xe0\x3d\xea\x12\x7d\xbb\x17\x84\xf7\x34\x45\xb3\x65\xd5\x93\x08\xcf\xee\x6a\x30\x38\x4f\x88\x6c\xd0\x49\x06\xdf\x53\xf9\xb2\x94\x51\x51\x3e\xf4\x05\x16\xba\x32\xe6\x34\x75\x07\xf0\x87\xfe\x9e\x28\xa5\x80\xe6\xf9\xca\x17\x30\x4d\x56\xd5\x15\x6f\xfc\xb7\xf4\x87\x0e\x75\x11\x00\x62\x34\x15\xf6\x16\x95\xa8\x92\x47\xa4\x6f\x57\x8f\x5a\xf3\xe9\xaa\xa8\x19\x5f\xb0\x2e\x6a\xa3\xae\x6a\x7c\x4c\x1b\x12\xd2\x97\x48\x50\x8f\x53\xea\x09\xad\xc2\xb5\xb0\x43\xe2\x39\xfa\xd6\x52\x1e\xb3\xfc\xf7\xc4\x00\x4d\x7a\x73\x70\xaa\x83\x18\xe4\xdb\x22\xe9\x95\xa0\xde\x89\xd3\xae\x60\x52\xce\x4a\x02\xdc\x6c\x50\xe7\x0b\xbe\x81\xc8\xd7\x5d\xaa\x42\xa7\x5d\xb5\x27\x37\x7c\x81\x2d\x9a\xf8\x5f\xf5\x13\x8a\xf8\x65\xfe\x0f\x49\xbd\x70\x3f\x80\x66\x9d\x22\x5e\xa7\x5a\x75\x9a\x89\xc5\x4a\x4d\xc5\x9a\xab\x4c\xdc\xbe\x70\x6c\x5e\xba\x9b\x4e\xde\xb3\x80\xa3\xb9\xdd\xe4\x9f\xab\xcd\x6e\x93\x3a\x40\x14\x65\x4c\x7c\x18\xeb\xfb\x67\xd3\x5a\xfb\xe1\x6d\xf7\xd7\x2b\xef\x87\x35\xdc\xad\xc3\x67\x9b\xb0\x8c\xaf\x70\x6c\x63\x47\x26\x25\x89\xfa\x06\x9b\x23\xa4\x73\x0e\x16\x4f\xc8\x30\x77\x3f\x8d\x34\x2d\x50\x1e\x93\x2d\x18\xd2\xce\x89\xec\x3c\x78\x21\x8b\x6e\x34\xcb\x6a\x55\x64\x3c\x51\xf7\xe4\x00\x1b\x15\x62\x26\x84\xc9\xe3\xd2\x11\x9c\x91\x3c\x2a\x4d\x40\x45\xc7\x9a\xb2\x96\x79\xe0\xd0\xf4\xec\xf5\xdb\x4b\xb8\x33\x11\x4e\x8a\x8a\x4d\x7d\xb6\xd8\xc6\x78\xe6\xea\xe4\x13\xaf\xea\x3a\xe1\x84\xea\x0a\x13\xcf\xd4\x68\x42\x09\x27\x72\xbb\x56\x16\x63\x80\xd5\xe6\x0d\x9c\x09\xc6\xac\x9b\xdf\x4a\xa2\x16\xe4\x44\x28\x04\xe2\x7b\x32\x33\x38\xcb\x43\x4f\x3a\xab\xd6\x5d\xcc\xfa\x65\x0b\xef\x64\x75\xab\x29\xb5\x55\x4f\xef\xe6\x2a\x11\x82\x69\xe9\x4a\x3e\xaf\x1c\x1d\x86\x27\x14\xfb\x70\xc4\x04\x18\x1e\xe1\x79\xb8\xee\xa1\x25\x25\x6d\x14\x66\x59\xb6\xb7\x19\x6b\xdc\xc1\xa5\x6c\x6f\x7d\x42\xc0\xce\x51\x06\x4d\x67\x00\xec\x2c\x5a\xce\xb0\xca\xff\xf7\x7f\xff\x9f\xa7\x47\x3c\xec\xa3\xbe\x5d\xd3\x97\x72\xcb\x0c\x2f\xcb\x20\x15\xa4\xa7\x7f\x26\xa9\xe7\x46\xcd\x57\x3e\xc8\x57\x62\xbf\x41\x0a\x28\xbf\x53\x05\x3b\x3e\x12\xfd\xc5\x14\x21\x51\x07\x77\x26\x05\x09\x8b\x9c\x8a\x36\x24\x6e\x86\x07\xc6\xdf\x77\xd5\xe2\x53\x26\x7a\x92\xe7\xe9\x5f\xf8\x57\x0a\xcf\x66\x3d\x33\x99\x0e\x3b\xa2\x0a\xe4\x1c\x50\xe6\xd0\x8c\x1a\x07\x8d\x3a\x40\x78\x22\x9c\xc7\x3c\xc0\xad\x99\x67\x1a\x20\xbb\x4b\x25\xdb\x1d\x1b\x6c\x31\x42\x58\x6b\x67\x94\x02\xd7\x33\x4e\x64\x8e\x2d\xa8\xc1\x5d\xdd\x46\x75\xa0\x79\xea\xae\x78\x22\x4e\xb2\x3a\xc8\xf2\x4a\x3f\x36\xcb\x9b\xe7\x34\x64\x15\x3b\x22\x57\x74\x77\x52\xe8\x09\xd1\xb7\x25\x04\x2b\xfa\x93\xd0\x01\xc4\x36\x7e\x7a\x27\xcc\xde\xb8\x7d\x8e\x6b\x4f\xa4\xdb\x8d\x30\x5f\x6c\xe7\x4b\xad\x08\x12\xd5\x4b\xfd\x4c\x28\x9d\x7f\x5f\xd2\x9f\x91\xbf\x3d\x7b\xe7\x8f\xbd\xf2\xd7\xf9\xbc\x44\xf2\x3b\x7c\x10\xf2\xd3\x19\xd8\xd3\x8a\xc8\x19\x64\x3f\x12\x9e\x92\xaa\x17\x44\xc4\x57\xa2\x9e\x26\x72\xff\x2b\x9f\x09\x6e\xb4\xda\x9c\x6f\x61\xcf\xf3\x1b\xf9\x49\xd3\xa5\x6e\xfb\x6f\xe4\x4b\x92\x61\x90\x2f\xa0\xb0\xc7\x77\xf0\x60\x9a\x75\x37\x9c\xd9\x77\x62\x1d\x98\x8d\x3b\x62\x39\x83\xa8\x01\xe9\x62\x90\x7f\x25\xa2\xff\x2b\x16\xfc\x2d\x2d\x07\x55\x4f\xcd\x62\xd0\xa5\x6f\xf8\x1c\xc5\x15\xd0\x89\x7c\xb9\x9c\x42\x0c\x75\x8f\xc1\x1d\x68\x9a\x39\x48\x9c\xf2\x5f\x97\x4a\xf8\xa9\x7c\x21\xfd\x75\xce\x06\x12\x6d\x83\x65\x7e\x09\x53\xe0\x93\x67\xc3\xb5\x08\xb2\x6a\x66\xb5\xe6\xb8\x5f\xa3\xad\x86\xfc\x30\x7b\x41\xf3\xdf\x66\xae\xfc\x11\xff\x4c\xd7\xa3\x5a\xdc\xe2\x86\x6b\x3b\x68\x26\x84\xa1\xa6\x26\xc1\xa4\xb9\x10\x52\x5a\xdc\x4c\x01\x93\x9c\x57\x47\xb0\xa7\x94\x10\xa2\x56\x54\x31\x4b\x28\x83\x9a\x21\xb4\x4c\xc3\xd3\x81\xc9\x3e\x6c\x10\xdb\xf4\x73\xdc\xcf\x00\x48\xba\x99\x4f\x80\xb2\xf6\xcc\xc3\xd1\xc0\x87\x40\xaa\xde\x75\xf4\x67\xb8\x7a\x7e\x7d\x68\x69\x87\x0b\x24\x99\x19\xf1\x94\x8b\xd2\xb9\xd3\x00\x08\xbc\x08\x07\xb8\x88\x9a\x71\x95\x69\x63\x51\x7d\x98\xd0\x3e\x9f\x53\x36\xf1\x4e\x3c\x9b\xae\x30\xcf\x95\xcf\x92\xa9\xb3\x4c\x25\x2e\x56\x73\x54\x65\x98\x47\x6c\x53\x26\x2c\xb1\x4c\x84\x63\x8f\xd7\x13\x25\xee\xc4\xa8\x21\xcc\xde\x9a\x47\x78\xa3\x25\xef\x58\x5e\x0f\xc1\x21\x21\xf6\x57\xbd\xa7\x9c\xf2\x6d\xe0\xd6\xc6\x39\x33\x76\xd4\x72\xf4\x93\xbd\xf7\xe5\xc7\x24\x68\xa7\x11\x70\x48\xe0\xe0\x93\xdd\x75\xb5\x50\x55\xda\x54\x21\x59\xe5\x22\x9b\xdf\x6a\x19\x59\x67\xf8\xbf\xee\x29\xb2\x61\x4e\x1e\x62\xa5\x16\x39\x71\x09\x13\x45\x3a\xf5\xc6\x67\x77\xf8\x71\xce\x8c\x0f\x26\xd8\x1a\x31\x6d\xea\x26\x41\x18\x4b\x01\x72\x8a\x8f\x29\x10\x51\x30\xab\x8a\x88\x4f\x01\xf1\xfb\xb0\x2b\xee\xc9\x86\xd9\x80\xca\x95\x78\x07\x73\xaa\xf6\x0b\xca\xb1\x71\x31\xd3\x55\xb9\x4f\x38\x69\x60\xf1\x8b\x9f\x77\xb4\xe3\x0b\x48\x43\xa3\x12\xbc\x93\xb0\x0a\x04\x22\xdf\xe9\xc3\xdf\xbe\xfd\xd8\xf1\x32\xf8\x8b\x9a\xdf\xbe\xfb\x48\x72\xfa\xc3\xdf\xbe\xff\x88\x1b\x9a\x51\xe1\xec\x8a\x55\x94\xe3\x1a\x50\xd0\xa0\xb7\x6d\x79\x5d\x35\xbb\x4e\xf8\x35\x7c\x7a\xfa\xf0\x59\x96\xe2\x73\x1f\x6f\x71\xe7\xc5\x3f\xd8\xe1\x85\xcb\x8a\x77\x78\xbd\xdb\x64\x3a\xc6\x4e\x28\x80\xfd\x72\xc5\x6d\x06\xb2\x9c\x9b\xfc\xdd\xfd\xe6\xe1\x56\x05\x0f\x96\x3a\x6f\xea\x89\x3f\xc9\xaf\x17\x18\x08\x0f\xfd\x77\xd7\x52\x13\xdc\xee\x5c\x4a\x60\x03\xe6\xbe\xdd\x2d\xd3\x6d\xd9\xcf\x62\xaa\x64\xc1\x79\xd0\xe5\x38\x4b\x7b\xe1\x41\x74\xdd\x60\x53\x1d\x82\xb7\x25\x26\xc6\xe0\xce\xf1\x73\x90\x79\x57\x65\x6d\x54\x40\x49\xad\xc7\x12\x05\x1d\xcc\xb5\xce\x94\x1c\x43\x5f\x37\x4d\xd2\x9e\xab\xc3\x7e\x7e\x65\x2d\xc2\x4f\x10\x03\x7b\xe5\xea\xb9\xa2\x19\xaf\x17\xb8\x09\xc0\x65\x09\x0f\x55\xed\x71\x05\xfa\x2b\x9b\xd8\x36\x1a\x73\xec\x0c\x1f\x96\x2c\xaa\x37\x75\x97\x70\xb8\x19\xa9\x29\x35\xd1\xdc\xe7\xae\x20\x38\x81\x62\x9b\xcb\x1c\xdf\x97\x71\x52\x04\x5a\xd5\x99\xb9\x5d\xa8\x04\x41\xc4\x92\x2d\x0d\x65\x44\x84\x46\xec\x59\xac\x9a\xef\xbd\x1e\x8d\xd1\x65\xaa\x79\x48\xca\x4d\x3a\x2f\x64\xb8\x5b\xcb\x02\xba\xa0\x9f\xe9\x8f\x9b\xd7\x81\xc5\x92\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x73\xd1\x36\x9d\x3f\xb7\xe3\xfc\x45\xb3\x6e\xfc\xb9\x8e\x5f\x43\x00\xd1\x44\x3f\x2c\x06\xbc\x99\x64\x7b\xdc\xd6\xdd\xcb\x09\x83\x93\x47\x20\x27\x06\x23\x19\x03\x53\xbf\x38\xd3\x79\x01\x49\x07\xe1\x0b\x64\xc1\x2b\xc6\xb5\xa8\x55\x1b\x40\x9d\x2a\x7c\x12\x6c\xda\x46\x44\xf8\x8c\xf0\x96\x83\xb9\xf6\xd0\x2e\x84\x6f\xf9\x83\x8b\x0f\xad\x7b\xff\x3d\xc7\x74\xe3\x5e\x42\x96\xbe\xde\x73\xa1\x1a\x90\xca\x6d\xde\xf6\xd5\xa2\xda\xe6\x8e\x5c\x9e\x05\x29\x89\x08\x4c\x01\xbf\x1e\x0a\x4e\x9a\xc9\x3a\xf5\x9c\x70\x58\x0c\x8a\x54\x28\xe1\x14\xb5\xde\xea\xa6\xe1\x6c\xc6\x0c\xb8\xbf\x69\x52\x27\xce\x21\xb2\x1e\x9f\x28\x79\xca\x85\xcd\xd9\x12\xfb\x48\xcb\xcf\x06\xd5\xc2\xc7\xfe\x39\xac\x26\x87\x0d\x6a\x0b\xcf\x53\xfd\xd2\xfc\x48\xd2\x1c\x4a\x98\x36\xf2\x86\x15\x70\xbb\x35\x66\x07\xf7\xc9\xf2\xe3\x4a\x6e\x42\x0d\x08\x31\xc8\x98\xfb\xf1\x6d\x05\x27\x82\x44\x28\x53\xeb\x16\xce\x9d\x97\x8b\x1c\x06\xd5\x70\xb8\xab\x59\x63\x9e\x17\xc1\xe8\x09\x84\x63\x99\x58\xfd\x6c\x9f\x1e\xc6\x95\x63\xfa\xe7\xaa\x37\x2d\xca\x60\xa6\xe6\x65\x7f\x03\x3f\x14\x98\x9b\xf0\xe4\x8a\xfa\xbd\xfb\x21\x3c\xd5\x89\x14\x3e\x43\x1b\xcf\xf8\x68\x2f\x94\x2c\xfe\x09\x3f\x84\x38\xea\x54\x0e\x18\xff\x09\x34\x00\x65\xb0\x45\xbd\x01\x3e\xd1\x88\x37\x25\x35\x0a\x76\xa0\x30\x59\x54\x88\xf4\x8f\xac\x0f\x30\x2a\x8c\x6f\xda\x0b\x6c\x4e\xa2\xe9\xdf\xbb\x74\xad\x1f\x35\xe9\xa9\x6f\xcd\x48\xda\xbf\x57\x3d\x95\xfe\x8f\x8f\x86\xa3\x24\x36\x64\x21\xdd\x05\x7e\xfa\x9f\x11\xd4\x50\x04\xf7\x79\xa2\x43\x07\x42\x95\x66\x65\x5a\x68\xbe\x9e\xd0\x84\x2a\x32\x35\x4e\x7f\x2d\x19\x7a\x5b\x1a\xae\x24\xf5\x7a\x5b\xb6\x4c\x32\x74\x36\xdd\xa5\xe1\x2c\x9a\x1a\xb0\xc3\xad\x6f\x89\xb1\xc6\xe5\x5c\x8e\xaa\x75\x34\x42\x61\x62\x12\x21\x55\x70\x24\x35\xda\x1f\x76\x55\x4c\xbf\xdc\xa5\xd0\x74\x5d\x0a\x5b\xec\xbc\xf3\x05\xcf\x22\x15\x82\xce\x2c\xa0\x7c\xd6\xf7\xaa\xcb\x60\x20\x26\xb6\xed\x97\x6a\xf5\xb5\xae\x16\x7d\xea\xd2\x43\x3f\x84\x6d\xdb\x2c\x25\x52\x92\xf3\x3b\xa0\x83\xb5\x5b\x21\xf6\x0a\x03\x5c\x11\x95\xda\x34\xe0\xf8\x1c\x89\xc8\xeb\x0c\x97\x21\x18\x6a\xa4\xe5\x8d\x86\xa1\x2a\x5f\x9d\x90\x41\x44\x15\x57\x15\x34\xea\x5f\x56\x9b\xdc\xc6\x4f\xd5\xe7\x48\x80\x78\x07\xf1\x8e\xb7\x71\x77\xfb\xdb\x1a\x86\x05\x14\x7c\xd8\xe4\xb5\xdc\x6e\x56\xec\x37\xc4\x72\xb5\x38\x0e\xc3\xd6\xaa\x5f\x4d\xd4\x2c\xb5\x0d\x48\x0a\x90\x67\x6a\x67\x03\x61\x77\xb5\x6e\x40\x94\x82\xe6\x90\x51\xfc\x77\xd5\xf2\x3e\xea\x1d\x92\x2a\x22\xfb\xab\xed\x78\xa8\x21\xc9\xaa\xe5\x78\x8f\xa6\xed\xf1\x9f\x1e\x16\x4f\x64\x13\xc3\xe6\x6a\x74\x53\xc5\x89\x32\xf0\xf0\x20\x65\x2a\x5a\x75\x70\xb3\x67\x94\xe1\x83\x82\x81\xe8\x7b\xf6\x7b\x12\x68\xf4\x82\xb3\xcc\xcb\xea\x41\xf6\x84\x62\x21\xc8\x9d\x56\x2e\x0c\x01\x0a\xaf\xb2\x79\xd8\x45\x6d\x37\x19\x6d\x8d\x4c\x25\x3f\x3a\x4e\x78\xa3\xf0\xaf\x61\x0f\x4c\xe2\x19\xd6\xec\x64\x87\x78\x40\xc4\x00\xcc\xf9\x08\x11\x07\x72\x21\xd1\x81\x12\x93\xd0\x41\x5d\x89\xd4\xb6\x40\x19\x80\xa8\xfa\x01\x85\x9f\x9c\x1c\xe3\xfe\xe0\xbd\x1c\x66\x4c\xdc\x97\x86\xb9\x7e\xcc\xc7\x34\x60\x56\x1b\xa6\x8f\x2d\x50\xdb\x93\x78\x90\xa5\xd8\xbd\xf3\xdf\x30\xc3\x85\xd6\xd1\xaa\x32\x59\x79\xad\x11\x95\x6b\x8a\x0f\xf5\x72\xe0\x9c\x7f\x1f\xdd\xd2\xbf\xa7\x9b\xcd\xd3\xa2\x78\x34\x31\xea\x80\x7f\x72\xc3\x1e\x58\xe2\xa9\xb2\x62\x40\x25\x83\x9a\x02\x76\x74\x7a\xee\x18\x20\x5a\xa7\x0f\x7c\xf6\xf3\x39\xcd\x4c\x47\xe1\x67\x4e\x70\xd7\xaf\x5e\xc7\xf4\xbf\x21\x6a\xe7\xed\x7b\x78\x43\x8b\xe9\x62\x38\x96\x01\x2b\x1f\x64\x0d\x7c\xdf\xef\xec\xa0\xbb\x6b\x51\x76\x8e\x68\xf7\x66\xcf\xa4\x48\xb8\xc6\xbd\x53\x12\xb0\xd0\x7e\x5a\x1d\x1b\x3d\x01\x38\xcd\x44\xfb\xd6\xff\x2b\x19\xe9\xa9\xe6\xa7\xd0\xe0\x1e\x56\x3a\xb9\xa9\x3e\x55\x54\xe0\x57\xfa\x83\xef\x99\x46\x2b\x48\x7d\x74\x02\x6a\x97\xb3\xbf\x89\xf2\x6d\xac\x9c\xc3\x38\xcb\x74\x1a\xaa\xd1\x54\x62\x24\x8a\x3d\xd7\x6e\xcd\x17\x30\x9f\xe4\x34\x6d\x16\x3b\x08\xe9\xb7\xea\x23\xf3\x37\x38\xac\x34\xc4\xd4\xad\x34\xb8\x1e\x58\xe6\xaa\x57\xa4\x9a\x49\x83\x8a\xe3\xf0\xfc\xcb\x34\x44\xb6\x6e\xf2\x1e\xc1\x5e\x29\x1d\xa7\xa7\x80\x87\x41\xb4\x91\xa0\x6c\xb2\xa6\x2b\x93\xec\xe1\xc5\x9f\x22\xac\xf5\xbd\x86\x5f\x93\x7c\xb3\x0e\x50\x09\xde\x5f\x2a\xfc\x8a\xf0\x8d\x39\xf3\xc7\x6c\xb1\xc6\xd6\xc5\x58\x6f\xd5\x8c\x79\x02\xa1\xe3\x40\xb4\x2a\x6d\x89\x05\xd3\xa0\x0d\xd8\x83\x6a\x03\x8c\x14\x4c\x9d\xbb\x94\x11\xda\xd4\x03\x28\x47\xc4\x18\xe0\xc0\x74\x4e\xc9\x34\x8e\x89\x8a\x91\xd1\x78\x7c\xde\x70\x3c\x62\xc6\x15\x81\xa8\xbd\xd7\x34\x14\x3b\x36\x2c\xca\xec\x5b\xe3\x12\x42\x53\x2f\x2c\x3b\xf7\x4d\x18\x53\x16\xe2\x95\x2f\x75\x91\x63\x78\xbf\x97\x6d\x0f\x8f\x49\xb7\x42\x99\x9e\xa1\xfe\x24\x06\x22\xa1\xaa\x81\xbd\x72\x64\xab\xdc\x05\x75\x74\xba\xcc\x5d\x30\x89\xe6\x99\x63\x76\xb5\xfa\x93\x03\x45\x4d\x05\xd0\xb6\xb4\x99\x2c\x16\xfc\xee\xe4\xcb\x67\x05\x91\xad\x94\xa1\x0e\x7e\x7b\xb0\x55\xd3\x7c\x92\x88\x60\x73\x7c\xfa\x9c\x25\x87\xd5\x95\x4c\x0e\x20\xfb\x26\xce\x25\x19\xaa\x5a\x84\x81\xba\x5f\x72\xc2\x44\x17\xd5\x6d\xed\xd4\xc2\xbb\xb1\x61\x95\xcf\x55\x3f\xa6\xa0\x1e\xf5\xac\x1a\x57\xa4\x3e\x37\xcc\x98\x7c\x99\x53\xd9\x94\x33\x59\xec\x6b\x3f\xf3\xb5\xe7\xc5\x35\xd3\xef\x22\x0a\x66\xae\x69\x13\x9d\xe1\xa5\x73\x76\xad\xe2\x56\x06\x92\xc4\xd6\xb0\x70\x2f\xb0\xb3\x03\xbb\xcd\x68\x48\x50\x01\x9d\x23\x84\x44\x6c\x05\x92\xaf\x33\xa5\x66\x7c\x34\x59\x1a\xaa\xf3\xe0\x11\xa8\x06\x88\xfd\xd9\x40\x81\x83\x1c\x9b\x64\x3f\xb8\xf5\xf5\x97\x28\xae\xe2\x9c\x27\x43\xac\x14\xe4\xce\x80\xad\x2c\x10\x42\x9a\xe6\xe9\x36\x8e\x3d\x44\xdc\x57\x30\x5d\x42\xe8\x07\x33\xc0\x71\xf9\x7a\x36\x79\x65\x13\xd9\x9b\x12\x86\xb2\xa2\x20\xec\xdb\x9c\x83\x91\xef\x19\x3e\x60\x32\x85\x19\xce\xc3\x9e\x0a\x34\x01\x63\x73\x4c\x89\x9b\x11\xdc\x90\xa5\x97\x5a\x23\x8f\xea\x15\x60\xee\x2a\x1f\x46\x8c\x64\x91\x84\x79\xe7\xf0\xd6\x4c\x48\xc5\x3f\xd9\xbc\xe9\x5f\xe9\x3f\x19\x89\xe8\x4f\x55\x17\xe5\xe7\x7f\x99\x4c\xeb\xe2\x69\x32\x82\x1e\x8c\x2c\x22\x85\x59\xe6\x9e\xa1\x58\x30\x9d\xe0\xf8\x07\xb3\x19\xb2\xe7\x9d\x99\x59\x13\xc2\xab\xaf\x2b\x9f\xa9\x6d\x45\xa4\x30\xde\xf6\x05\x6f\x83\x36\xfb\x87\xdc\x8b\x1d\xe3\x57\xfa\xbf\x98\xe7\x70\x20\x78\x0d\x00\x61\x23\x58\x56\xed\xc4\xda\x49\xdd\xdf\xc5\xe9\x51\xf4\xac\xb9\xd3\x7d\x76\xb1\x15\x49\x4c\xe9\x7c\x48\x36\xf1\x9a\xcc\x6b\x71\x20\x13\x77\xd6\x80\x1e\xb1\x40\xdf\x3b\xd1\xbe\x4f\x2f\x39\x3a\xf4\x72\xb7\x26\xd6\x33\x30\x24\x1a\x16\x18\x2e\x8b\xd5\xa3\x4c\x0a\x0c\x51\x78\x72\x38\x08\x19\xea\x0a\xb6\xb7\x33\x29\xd2\x90\x3a\x2d\xc7\xf3\x14\xdf\x93\x61\x2b\x72\x5a\x74\x38\x2e\x9e\x6a\x1c\x80\xd8\x4a\x38\x6a\x38\x98\x0d\xed\x03\xf4\x1c\x53\xbd\x90\xbb\x04\xd7\x07\x31\x16\x9e\xe8\x81\x0f\x09\x6c\xe6\xc2\xaa\x03\x89\xe8\xb5\x41\x8b\x4d\xfb\xc0\xb8\xcc\xf3\xcd\x02\x65\xb1\xc5\xa4\x4b\xb8\x78\x8c\x7d\x3f\xc3\xed\x20\xe1\x0a\xd8\x1c\x44\x3f\x4f\x2d\xe0\xc1\x18\xcc\x89\xdf\x3e\xca\x41\x3c\x29\x3c\x17\x8a\x07\xd8\x10\xba\x48\x71\x84\x0d\xe6\x1e\x5d\x34\x6e\x55\xb1\x43\xed\x0f\x1b\xfb\x6e\xa2\x7b\x83\x65\x62\x9c\x90\x00\xda\x40\x3c\x61\x23\xab\xab\x00\x87\xe1\xcc\xc1\xce\x19\xd7\x55\x41\xd2\x3a\x3a\x73\x57\xbd\xdf\xc5\xf5\xd2\x3c\xc2\xd6\x6c\x6f\xdd\x83\x01\x61\x87\xbb\x57\x19\x10\xa8\xe2\xca\xc7\x5f\x99\x1c\x11\x13\x1f\xa7\xdf\xd7\x9d\x84\x38\x2a\xa9\x8f\x3e\x10\x72\xdc\xc2\x4e\x03\x3f\xc4\xdf\xcb\xb0\xf4\x87\xd1\xe9\xa4\x0a\xf9\x9f\x5b\xae\x13\x87\x04\xeb\x92\x26\xc1\x6c\x41\x4f\xe9\xbc\x93\x50\x2e\x28\x84\x83\x89\xd5\x51\x5e\x8b\x50\x37\x6a\x6f\xce\x66\x46\x93\xdc\xd2\x64\xfd\x13\xfb\x2b\x64\xc8\x78\xe2\x2c\xcc\x3a\x9c\xc1\xb9\x61\x26\xa7\x0f\xc7\x87\xee\x48\x6c\x38\x0f\x49\x93\x75\x18\xe8\x84\xcd\x80\xa1\x0c\xbd\x9e\x3d\xc1\x1c\x84\x28\x40\xd7\xa6\xe8\xd1\x9e\x89\xb2\x01\x44\xb1\x50\xfe\xc8\x6c\xed\x9f\x28\x4f\x88\xee\x75\x42\xd8\x5f\xdf\x77\x7b\x09\x5b\xe0\x2a\x10\xf2\xc7\x4c\x2b\xf5\x95\x0f\xd3\x3e\x86\x43\x14\xc3\x5f\x3c\x3a\xc2\x26\x90\x34\xe5\x07\x2a\xfe\x1d\xb8\xbb\x5f\x09\xac\x10\x78\x95\x78\xa6\xb4\x89\x76\xc3\xa0\xaf\x30\x6a\x94\x09\x78\x3b\x6a\xda\xc7\x7b\x38\xf0\x16\xf1\xc6\xcf\x40\xf2\xe3\xd3\x75\xcb\x91\xd7\xf9\xee\xf5\x4a\xe4\x7c\x41\x9a\x7b\x9a\xfc\xee\xae\x26\xc5\x8a\x7f\xa2\x4d\xe7\xcf\xa2\xb1\x96\x70\x32\xf2\xa3\x2d\xf7\xb4\xf6\xbd\xb5\x16\x8a\xca\x9f\xca\x72\x1b\x34\x11\x77\x3f\x70\xee\x05\xb7\x1b\xdb\xd5\x4f\xd0\x60\xe5\x15\x2c\xec\x4e\xd4\x9b\xbd\x7b\xe8\x1e\xd9\x7b\x1f\xef\x3e\x5d\x99\x49\x28\xf7\x04\x21\x18\xd3\x45\xbb\xeb\xc5\x8b\x45\xb8\xef\x75\x30\x2c\x6f\x67\xc1\x89\x05\x3f\x2d\x3b\x8a\x26\xaa\x9a\x3c\x2b\x7d\x38\x1f\xd7\x35\x2b\xd0\xee\xef\x5e\xec\xe2\x93\x4e\xb8\xf6\x04\x12\x05\x07\xab\xf4\xf8\x9e\x8a\xcf\x2c\x8f\xe7\x28\x48\xde\x5f\x60\xe0\xab\x1a\xd5\x15\xfb\xaa\x06\x1d\x14\x5c\xdc\x57\xcf\xd1\x64\x1d\x8a\xbf\x41\x2d\x62\xcf\x28\x41\xae\x63\xcb\x31\x35\x70\xc4\x39\x3a\x0b\x4a\x20\xd4\x9b\x37\x7a\xe7\x9b\x96\x79\x39\x1c\x7f\x14\xf9\x2d\xb6\x7b\x57\x2f\x1a\x71\xbd\x05\xc3\x19\x96\x9d\x45\x92\x43\xcb\x36\xb1\xdc\xa0\xc6\xe1\xd5\xf7\xc1\x86\xa1\x9b\x34\xf7\x66\xd5\x04\xec\xd7\xfd\x0d\xf0\x32\xdc\x88\x34\xac\x4b\xa6\xb2\xf1\x40\x68\x76\xaa\x24\x95\x9c\x71\x9b\xb0\xd9\xd1\xe4\x40\x75\x04\x01\x59\x5f\x06\x39\xbd\xb8\xc4\xcd\x22\xed\x70\x62\x6d\x96\xcc\x09\xa4\xbf\x92\x98\x85\xf0\xf2\xfc\x40\x87\x92\xd9\xc5\x82\xfd\xf1\xab\x5a\x83\x6f\xdf\x94\xe6\x28\x59\x17\x7a\x2e\x86\xd1\x1a\x4c\x9e\x95\x1b\xc6\x14\xaf\x66\xe0\xe9\x9f\x6d\xb9\xa8\xae\x88\xfb\x7d\x47\x6b\x55\xe3\xa9\x34\xf7\x4e\xd3\x9d\xfe\x40\x6e\x24\xb0\x97\xe6\x8b\xc8\xf0\x30\x97\xcc\xf0\x86\x5e\x4f\xcc\xd1\xf4\x0c\x41\xa7\x3c\x13\x6d\x86\xef\x52\x2e\xe2\xf4\x10\x1e\xa1\xe2\xc3\x28\x55\x7b\xde\xbb\xdc\x9e\xf7\xf6\x21\x0c\x7e\x2e\x4d\x7f\x29\x9d\xd3\xaa\x66\x88\x96\xef\xfa\xc2\x61\x08\x3b\xb8\xea\xe1\xf7\x3d\xe0\x36\x05\x17\x12\xe5\x17\x66\x5b\x6c\x21\xae\x68\xe1\x6a\xb5\xd0\xfb\x60\xed\x6c\x8e\xba\xb1\xfa\x61\xb2\x0d\x3f\x44\x74\xed\x66\x38\x4e\xc1\x7d\xb9\x21\x94\xe6\x48\xb8\xdc\x95\x78\x1e\x65\x93\xdf\x4a\x7c\x77\xbe\xc8\xeb\xe8\x1c\xad\x8b\xce\x1e\xfe\xe2\xc7\x09\x57\xcd\x0d\xeb\x08\xcd\x99\x67\xb4\x24\xe3\xbe\xf9\x2b\x2e\xbb\xd7\x9a\x00\xe9\xb6\x8d\x78\x67\x9d\xeb\xe7\x18\x48\x34\xf7\x3c\xaa\x37\xf2\x35\x06\xd9\x6a\x7c\x56\x17\xa9\x75\x0c\x32\x6f\x0a\x5e\xb3\x97\xf4\x67\xac\xe2\x72\xaf\x95\x99\x9e\x0b\x7b\x79\xcb\x31\xc2\xc4\x30\x92\x33\x08\x3b\xcb\xf5\x95\x04\x7b\x63\x41\x14\x57\x0f\x72\xe7\xcc\x6e\x8d\xf2\xc6\x01\xbb\xe1\xa1\x02\x9d\x27\xf8\x91\x23\x5e\x73\x78\xa1\xac\x6f\x92\x84\x21\x56\x86\x7d\x82\xa1\x8d\xf5\xeb\xad\x08\x11\x58\x4d\x5c\xb4\x48\x68\xed\x03\x66\x35\x58\xcb\x64\xa6\x6f\xc6\x90\x6c\x25\x9c\x36\x07\xb7\x21\x1a\x80\x00\x8a\x06\x22\x52\x98\x38\x14\x04\x1e\x86\x9e\xf7\xe6\xe8\x16\x3c\x61\xe3\x1e\xa9\x47\x28\x4f\x90\xf8\x82\x8e\x20\xbc\x61\x1e\x80\x2c\xf6\xc2\x90\x63\x50\x70\xaf\xec\x7b\x13\x91\x8f\x80\x00\x47\xcf\xc8\xa1\xa3\x1a\x26\x5b\x94\x31\x4c\x58\x4d\xf7\x12\xdc\xdb\xf3\x5c\xb1\xce\x27\x20\x86\xcc\xb6\x11\xa7\x2c\xaa\x0b\x12\x88\xf3\xb6\xb0\xb0\x92\x4a\x98\xd9\xaf\x1d\x04\x38\x0c\x09\x94\xaf\xbb\xc6\xaa\xa0\x83\x84\x40\x3e\xb1\x25\x3f\xad\x37\x64\x0c\x55\x3c\xb1\xb8\xe7\x2f\x0c\x98\x16\xef\xb6\x4c\x9e\x85\xd6\x5b\x3b\x18\xf2\xe3\xff\xbc\x38\x7d\x7f\x90\x7e\x7e\x7a\x73\x73\xf3\x94\x8b\x3f\xdd\xb5\x6b\x8e\xb6\x51\x70\xd8\xca\xff\x79\xf2\xee\x20\x2d\xfb\xc5\x93\x59\x7a\x22\x54\xdb\x13\x43\xbd\x25\x87\x05\x0c\xae\x9c\x89\x40\xfc\x71\x6a\xae\x3b\x46\x35\x89\x61\x7c\xe3\x90\xd5\xe1\xd5\x33\x7b\x65\x5d\x4c\xb1\x5b\x0e\x18\x85\x45\x5b\xc2\xdc\x17\x1f\x41\x06\x71\x0d\x9f\xa6\x82\x84\x0d\x41\x2a\x6a\x47\xbb\xf1\x76\xa1\x4f\x5d\x0d\x40\xcc\xba\xed\x08\x76\x6d\x5e\xc9\xc9\x0b\xe7\x4e\x61\xd6\x5a\x12\x95\xe2\xab\x9b\xe8\x80\x99\x97\xb6\x10\x65\xf1\xd3\xb0\x30\x9c\x74\xf0\xba\xcc\xf3\xf4\x3f\xf9\xd6\x92\x17\x4a\x70\x8b\xb3\x0c\xb7\x00\x3c\x1b\x16\x46\xe4\xf3\x40\x4a\xa2\x01\x48\x3c\x77\x93\xd2\x7c\x9e\x93\xd4\x46\x95\xa8\xd2\x8c\xed\x84\x89\x08\x3b\x25\x1a\x70\x4d\xaa\x1b\x17\x89\xef\x8c\xa7\xb3\x6d\x5e\xc4\x3f\xe7\x40\x3d\x77\xec\x42\x75\x6a\x1e\x52\xf1\x50\x9a\x9c\xa2\x80\x3e\x02\x54\x55\x5d\x63\x21\x59\x08\x53\xaa\x61\xfe\xcb\x61\x46\xf0\xa4\x58\xd9\x23\xa0\xd5\xd4\x5e\x14\x9d\x90\x5b\x35\xbf\x7b\x8c\xbe\xe9\xe9\x23\x8c\x9c\x04\x03\x88\xa8\x07\x48\x47\xcc\x3d\x4f\x1f\x86\xb3\x11\x6d\xf2\x9c\x9f\xd2\xa6\x11\x77\xa3\x80\x83\x36\x46\x4c\x85\xca\x39\x63\x19\xd0\xb7\xb0\x8f\x7f\x12\xab\x74\x3b\xd7\x2d\xce\x25\x22\xaa\x1c\xbb\xb4\x98\x1b\xb5\x5d\x0a\xba\x1b\x6f\x51\x9e\x10\xd9\x47\x21\x45\x65\xbe\x36\xb6\x61\x65\x10\x84\x01\x62\x8f\x61\x73\x4e\x1c\x05\x41\x0a\x4f\x7a\xa9\xd5\x42\x5a\x48\xe8\x8d\x41\xe6\xf0\x6d\xbf\xe1\xce\x26\xd6\x56\xde\x95\x3d\x92\xaf\x70\xb6\xb6\xeb\xe6\xd6\xe2\x44\x1d\xe3\x97\x86\xa7\x0c\x47\xe6\xc1\x74\x50\x1e\x72\xaa\x2e\xcf\x8a\x02\x0a\xb5\x43\x53\xc4\xaa\xee\xa7\xf2\xfe\x16\x96\x94\x75\xc7\x54\xa7\x39\x8f\x3a\xb9\x3e\x8f\x83\x6a\xc8\xcb\x4e\x1a\x6e\x29\x98\x1a\xb8\x27\x86\x03\xf8\x6b\xf0\x2a\x84\xca\x20\x35\xab\x5b\x5c\x37\x42\x19\x38\xb2\xf7\x98\x1a\xc5\x38\xbe\x91\x83\x1a\xc6\x61\xf2\x23\xdd\x1b\x87\x29\x2c\x1a\x06\x63\x0a\x8a\xe2\xdc\x74\x93\x30\x79\xc1\x19\x2d\xcb\x38\xd4\x92\x1f\xea\x17\x44\x5b\x9a\x5e\xb9\xa1\xe0\x71\xef\x52\xdf\x65\xdf\x50\x84\x83\xfb\x82\xb8\x4b\x03\xed\xca\x97\xc8\x20\x53\x7d\xf1\x93\x12\xcc\xee\x7d\xd6\x0e\x45\x75\x75\x35\x9b\xb7\xc4\x82\x73\x70\x23\x3c\xa7\xc7\x94\x9d\x7f\xa7\x17\xf8\x2d\x20\x6c\xe5\x0a\xac\x90\x0f\x49\x54\xab\xfc\xe7\x6a\xa9\x29\x89\x30\x31\x1c\xbe\xe2\x75\x4c\x39\x62\x6e\xf8\xbe\x41\x94\x4a\xc9\x99\x49\x11\x16\x01\x32\xfe\x42\x58\x26\xdc\x47\xf3\x0d\x2b\x0a\x5d\x70\x4a\x00\xd6\x6d\xd7\xc4\xbd\xea\x93\x71\x17\xfc\x03\x9e\x96\x01\xc4\xae\x26\x39\xb6\x2c\x0c\xe6\x83\xfc\x0c\xa1\xb8\x4a\x5b\x3a\x3b\x51\xe1\x58\x22\x86\x9d\xc2\x7a\x7b\x15\x28\x30\xd4\xe0\x08\x8c\xd0\xaa\x02\x6f\xed\x41\xc2\x30\x2e\x04\x61\x6b\xe2\x21\x74\xa2\x41\xb0\x5e\xbe\x7d\x2f\x3f\xe1\x2d\xaa\xf1\x54\xe1\x2e\xca\xf6\xa5\x89\xf9\xa0\xce\xa6\x7c\x51\x2d\x4f\x5c\x88\x45\x65\x67\xef\x7c\xe3\x97\x83\x28\xda\xfc\x0a\xe6\x54\xfc\xd7\xa5\x12\xff\xee\x8b\x9d\xb5\xe5\xd3\x61\x31\x9a\x1c\x59\xb2\x0b\x7c\xb8\x74\x35\x87\xe2\x3f\x2e\x2d\x87\x95\xf3\xf3\x60\xe4\x7e\x46\xcc\x9c\x96\xf0\xf7\x61\x97\x76\x15\x2b\xb5\x15\xd1\x07\x0d\x02\xcb\xfc\xe3\x2b\xc0\x41\x38\x15\x87\x63\x0d\xed\xac\x10\xc9\xad\x5b\xa5\x6e\x7e\xd8\xef\xbe\x97\x28\x4d\xfa\x52\xe4\x2c\xea\x77\x54\x5a\xd8\x83\xd2\x56\x1b\xcf\x8d\x32\x07\x8c\x18\x27\x12\x5c\x73\xc7\x4f\x6b\xd2\x44\x70\xcc\x5f\xe6\x96\xdc\x26\xaa\x36\x54\xff\xb5\xbc\xdb\x24\xd5\x13\xe7\xe3\xa2\x48\x11\x13\x54\x4b\x20\x1b\xcb\x83\xf6\xc4\x62\x5f\x47\x65\xfc\xeb\x30\x76\xb5\xe9\x9d\xb7\x29\x1f\x5c\xd5\x22\xf4\x09\x67\x16\x8b\xa3\xea\xc9\xd8\x83\x0e\x44\x14\xdd\x52\xc7\x54\xdc\x72\xc4\x6c\x40\x8d\x75\x42\xb4\xd0\xed\x72\x26\x5f\x2e\x87\xb9\x77\x61\x41\xdf\xc9\x97\xbc\x5b\x3e\xc4\xa6\x71\x9c\x33\xca\x7b\x3a\x5c\xeb\x00\xde\x4d\xc0\xaf\xe5\x23\xbe\x29\x68\x88\x37\x48\xc5\x64\x28\xef\x23\x4c\x31\x75\x9e\x7f\x04\xf4\x29\x8e\x07\xdf\x8d\xa1\xa1\x9c\x6b\x4e\x11\xc5\xa3\xcc\x08\xdb\xd9\x04\xc9\x76\x0a\x6c\x90\xe2\xed\x02\xec\xf1\x1b\x06\xc6\x80\xa3\x8d\x26\xcc\x97\x87\x8a\xaf\x7b\x26\x80\xe5\xa8\xd1\x2c\xaf\xdf\x1d\xc2\x4c\x9f\x2e\xd6\xce\xd0\xe8\x08\x61\x6b\x59\xd3\xe1\x6e\x4e\x08\x65\xee\x38\x4b\x46\xad\x85\x4a\x76\x69\xe2\x9e\xc3\x63\xb8\x07\x62\x13\xa6\xa0\x1e\x3d\xe2\xd9\x28\x4e\xf7\xc8\xe8\x88\x77\xbd\xd1\x87\x1b\x71\x8c\xd9\x77\x92\xfc\xd6\xb4\xcb\x8f\xfe\xd1\x0f\xa7\x33\x8e\xd4\xbe\xd0\x1c\x30\x8c\x0b\x74\xbd\x07\xd0\x07\xbf\xf6\x35\x1a\x3a\xbe\xe6\x4d\x37\x7e\x35\x5b\xf4\x36\xf2\x36\x13\x0c\xf3\x2c\xc8\xd4\xcc\x82\x3a\xc8\x7b\x03\x6a\x31\x17\x36\x27\xb1\x16\xbc\x1d\xd6\x07\x75\x08\x55\x3b\x1e\x8e\x07\xc0\x1f\xfc\x24\x04\x3f\xdc\xce\x4a\x5b\x31\xb1\x78\x8b\x04\x22\x89\x48\xc0\x93\x25\xa2\x81\xa3\xbf\x09\xc2\xcc\xab\x9a\x9a\x53\xf5\x4b\xd3\x07\xa1\xec\xa3\xd0\xf3\x41\x10\x0a\x3c\x70\x11\x99\xf9\x71\xe5\x98\x95\x09\x03\x60\xf7\x66\x8a\x76\x42\xa6\x10\xa9\x77\x41\x47\x11\x9c\x78\xaf\x8b\xe9\x38\xef\xea\x5c\x8c\x29\xd5\x0b\x58\x51\x04\x8f\x6e\xd4\x91\xb7\x5c\x37\xf3\xcd\x04\x94\x63\x25\xd6\xc1\xbe\x18\x5e\xe0\x65\xc3\xc3\x9f\x04\x3e\x0a\xdc\xa2\xc2\x7c\x2e\x11\xd8\x24\x39\x5d\x93\x5c\xb8\x8e\xa4\x7b\x54\xc4\xfc\xf4\x4f\x7b\x42\xed\x8f\x1f\x99\xf9\xfa\xb0\x3d\xe3\x3a\xee\x0e\xdc\xf3\x47\x4d\xf5\xa6\x43\xbe\x87\x2a\xcc\x41\xec\x77\x97\x35\x15\x04\xfe\x8f\xd8\xd6\xc5\xa0\x01\x91\x89\xa6\xc0\xd5\xf4\xa5\x97\x79\x6a\xb2\x47\x98\xfa\xef\x59\xec\xc5\xcf\xb2\x0c\x7b\x3d\x0a\x82\x1e\x75\xfa\xeb\x82\xa1\xef\x35\x0b\x88\x68\xc5\x50\xa4\x1f\x45\x20\xc4\x00\xef\x2c\x12\xc7\x23\x0c\x3b\xec\x94\xb8\xc1\xb5\xbc\xde\xd0\x49\x24\x42\xb9\xc8\xb9\x3f\x1c\xe1\x9e\x4b\xcb\xbb\xe2\x12\x0e\x7b\xc9\x34\xc6\xf9\x82\x87\x9d\xbc\xb3\x44\xc8\x65\x34\x83\x2b\xbf\x3f\x1e\xab\x70\xfa\xf6\x8d\x45\xfe\x1b\xd3\x74\x82\x2b\xb1\xf9\xf3\xfa\x23\x16\xdf\x6c\xbe\x44\xbe\xf3\x84\xd6\xcf\x1c\xf8\x49\x99\xdc\xc1\x33\x40\x4a\xb5\x67\xfe\x15\x99\x2c\x8a\x4f\x78\xe2\xdf\xa9\xf1\xa1\x0a\x7f\x70\xc5\xf4\x12\xde\x82\x1b\x0f\xd2\x3d\xa5\x84\x19\xb9\x9a\x19\x78\x20\xf9\x0d\x9e\x6f\x32\x67\x58\x3e\x6e\x43\xdf\x2d\x6d\x9b\x75\xe9\x3a\x9a\x9e\xd3\x2f\xdf\xbd\xd8\xa9\x3a\x2e\xe8\xca\xb8\x74\x15\x93\xf5\x69\x26\xdf\x1b\x79\x76\x07\xe1\x0e\x82\x54\x3d\x2d\x83\xb5\x12\x3e\x59\x6b\x87\xd8\xf1\xc3\x10\x5a\xde\x41\xd5\x73\xf5\x3d\x3f\xa6\x82\x43\x75\x06\x1f\x6d\x79\x0a\x46\x53\xe2\x46\x25\x8d\x39\x16\x0d\x91\x9b\x4a\xf0\x3e\x0d\xa2\x3a\xce\x1f\xc4\x47\xc3\x99\xe2\x22\xa3\xd9\xbb\x4e\xcc\x70\x6b\x34\x80\x5a\xae\x28\xe3\x80\x61\x52\x2b\x18\x76\xdf\xac\x18\xd9\x47\xed\x86\x10\x5f\xd2\x30\xf7\x73\xd4\xdc\x81\x29\x3c\xa1\x87\x52\x4d\xac\x84\x16\x97\x56\xe4\x7d\x68\xd7\x0f\xf7\x02\xb9\xef\x47\x08\xf1\x25\xfd\xe0\x56\xe0\xac\x2a\x02\xdc\x1d\xfd\x21\x89\x5b\xdf\x0e\x88\xcc\x7c\x86\x5d\xf4\x91\xbb\x2e\x83\x93\x1c\xa6\x52\xc5\x80\x33\xe1\xfb\x85\xf1\x91\x2a\x39\x62\xbf\x31\xc1\x3c\x88\xd9\xe2\x64\x74\xe1\xfb\x89\x00\xbc\x82\xb9\xa4\x03\x0d\x0c\x12\x3d\xd8\xe4\xb9\x24\xfd\xf2\xcc\x1e\xb8\x2f\xa5\x0d\x9a\x79\xff\x91\x2c\x70\x16\x57\x57\x38\xbf\xf0\x50\x01\xeb\x67\x2b\x59\x00\xc2\x9b\x41\xf0\x06\x0b\x5a\x1d\x57\xe6\x88\x39\xa0\x1c\x11\x1f\xc3\xd9\x8e\x0d\xf9\xb6\x40\xfb\xce\x64\xfb\xc0\xb8\x59\x67\x7b\x04\x28\xbe\x48\x0e\xcd\x31\x39\x1e\x72\x13\x3a\x14\x56\x77\x3a\x08\x8d\xbb\xe2\xcf\x75\x79\x39\xce\x21\xcc\x5e\xa1\x67\x16\x6e\xf5\x31\x82\x78\xb4\x5b\xb6\x70\x98\xb6\xb5\x66\x62\x11\xa0\x02\x2a\xfc\xc1\x8d\x92\xd5\x0f\x03\x6a\x00\xeb\x0b\xaa\xe8\xd1\x5d\x44\xe1\x2b\x3a\x00\xb2\x71\x77\x0f\x40\x16\x24\xde\x06\x75\x23\x20\x01\x77\x75\x44\xf6\xfc\x57\x74\x04\x74\xe3\x0b\x3b\x72\x60\xbd\xd0\x77\x94\x8a\x62\x72\xff\xdf\xd5\xbf\x81\x20\x04\xe4\x8c\x1e\xf6\x32\x62\x00\xab\x24\x79\xae\x7f\xca\x2a\x29\x50\xcf\xce\x66\xc3\x5d\x12\x58\xc6\x05\x3b\x25\xb0\xf4\xb4\xbe\xc0\x80\x4a\x2d\xe2\xf5\x94\xf3\x55\xd5\xb4\xee\x78\x7d\xa0\xee\x43\xab\xf9\x38\xc6\x22\x1b\xff\xf6\xed\xad\x72\x3a\x3c\x23\x71\x88\x48\x6f\xc7\x27\x32\x1d\x0c\x09\xe4\x85\xb8\xdf\xb0\x56\x1f\x13\xf7\xc0\x3d\xef\x7f\xfb\x4e\x44\xf3\x25\x97\xa9\x78\x72\xcb\xbf\xb5\x95\x0e\xdf\xde\xba\xf3\xa1\xb4\xf8\x81\xb8\xe1\x3b\x81\x9d\x84\xb2\x5e\x1a\x8b\xb8\xdc\xa9\xdb\x90\xda\x2f\xf2\x8c\xdf\xd2\x1c\x6c\x58\x51\xcc\x09\xc9\xa6\xa9\x2b\xb1\xf1\x3a\x91\xaf\x8a\x1f\x4a\x0b\x7d\xdf\x5e\xf1\x0f\x79\x42\x40\x53\xd8\xd5\x29\xe9\x9b\x1e\xb1\x69\x2f\xf9\xef\x0f\xe9\xc3\x22\xf1\x43\x87\x0e\x98\xd5\x6d\x0b\xd1\x74\xca\x77\x90\x1f\xbc\xd2\x05\xcf\xdd\xd6\x9e\x1d\xf3\x35\xa0\x9b\xd0\x58\xef\x82\x6e\x6b\x27\x51\xe9\xae\x9b\x6a\xd1\x1c\xda\x60\x79\xc0\xda\xf2\xb9\xe9\x5a\xf8\xb9\xef\x82\x9f\xfb\x16\x3d\xe4\x41\x90\x10\x2d\x48\x98\xb1\x75\xcf\x5a\x44\xc9\xf1\x51\xea\xd3\x25\x42\x6e\x94\xc4\x81\x30\xa3\x84\x7c\x31\x6a\xc5\xee\x2b\xc2\x34\x33\xc9\xf5\x29\x66\x9c\x1b\xd5\x1e\xbf\x6d\x10\x66\x89\x15\x7a\x94\x24\x1e\x0f\x83\x91\x88\x96\x37\x4c\x5b\x37\x4b\x7e\xcc\x0f\xba\xe2\x78\x78\xca\xaf\xc7\x75\x9a\x63\x68\x54\x05\x62\xd5\x84\x29\xb8\x3a\xed\xf3\x2e\x2e\x8d\xfd\x19\x26\xa8\x37\xe3\x08\x90\xe4\xf7\x7c\xb1\xd2\x30\x05\x13\x88\x64\x62\xb8\x43\x26\x91\xc5\xa7\x20\xbb\x9b\x4a\x22\x97\x5e\xe0\x63\x12\xa6\xdd\x41\x87\xb8\xab\x83\x5c\x76\xb6\x66\xc7\x7e\x3c\xff\xd0\x68\x9c\x5f\xf6\xbc\x76\x4f\x3d\xa4\xa7\xd8\x8e\xdd\x9d\x85\x82\x73\x91\xa3\xc4\xe9\xf3\x12\x5a\x32\xb0\x7e\x9f\x3e\x20\x7d\xcd\x7a\xd4\xaa\x4d\x51\xf0\x36\x79\xe7\x39\x8f\x1c\x41\x20\xf4\x6e\xdf\xb2\xbf\xa8\x8e\x41\x2f\x3d\x84\xab\xe6\xeb\xbb\x0a\xfa\xcf\xf4\x9e\x7a\x33\xe8\x64\x44\xf3\x0c\xe4\x9e\x1a\x06\x5d\x9c\xac\xe2\xeb\x3b\x89\x93\xb6\x5e\xca\xa9\xb3\xa7\x93\xb7\x78\x1f\xa4\x2d\x54\x70\x5d\xb3\x01\xe7\x6b\x33\x2a\xbb\xa7\xca\x7d\xbd\xbe\xb3\xce\xaf\x18\xc6\xb2\xea\xb3\xe5\xc2\x77\x9f\xdf\x46\x6a\xe7\x4c\xb8\xf9\x70\x2f\x17\x12\x60\xa4\x8e\x95\x96\xd3\xc5\xef\x9a\x60\x74\x88\xd5\x15\x53\xd5\xef\xeb\x5b\x5b\x76\xb7\xf5\x82\x15\x75\xfc\x94\x94\x5e\xb0\x9f\x97\x72\x69\xf2\x68\x46\x69\xcf\x72\x0d\x99\x5d\xe2\x2a\xba\x7b\x24\xaf\xe8\x3d\x5e\xe4\xf0\x97\xfb\x81\x8e\xe2\xfa\x29\x48\x3b\x4a\x1b\x67\xcb\xb3\xf5\xe4\xce\x86\x06\x63\x09\xe8\x7a\x30\xb7\x2d\xba\xd2\x97\x5f\x34\x82\xc0\x9c\x24\x1c\x06\x23\x8a\x12\x31\x90\xbc\xc1\x9b\xb3\xe9\x63\x36\x0d\xe2\xd7\xae\xd8\xee\x49\xed\x09\xf5\xd0\x46\xb0\x6a\xa7\x60\x2b\xf6\x0c\x28\x6c\xf7\x8e\x15\x7a\x14\xf5\xe2\xeb\xc6\xc8\x41\xf0\x47\x1b\xe1\x1c\xc9\x1a\x14\xff\x0f\x6d\x87\xa9\x8a\xff\xdd\xed\xd0\x06\xbd\x1a\x3d\x90\x18\xb0\x07\x08\x3c\x4e\x73\xc7\xee\x1d\xe0\x3b\x11\x88\xfc\x03\x7e\x87\xe4\x5a\x5f\x80\x5c\x36\x6d\x43\x18\x27\xd1\x64\xf5\x25\xc3\xd7\x96\xd6\x4d\x14\xc0\x8d\xc5\x6d\xb6\x53\x67\x7d\x2b\x73\x82\x64\x62\xfb\xd8\xd3\xdd\x97\x02\xf3\x64\x65\x58\x0f\xbd\xd0\xdb\x0b\x70\x53\x56\xea\xd0\x32\x82\x92\x5a\xa6\x99\xb3\x13\x92\x06\x31\x02\xf0\xa9\xa6\x04\xb0\xb8\xf5\xe3\x10\xad\x84\x01\xbb\x6d\xc6\x43\x85\x0f\xbb\x24\xa7\xef\x90\x9c\x5e\x72\xf2\xb8\x05\xeb\x95\x2b\x36\xe8\xd4\xbe\x72\x1c\xb6\x6f\x58\xe6\x15\x47\xf7\x1b\xc2\xdb\xcc\xad\xca\x7c\x3b\x9a\xb7\x37\x94\x38\x9a\x35\x40\x8e\x27\x00\xb0\xfb\x67\x21\x2c\x55\x15\x10\xa2\xc3\x12\x6f\x29\x69\x1f\x34\x6c\x71\x86\xf0\x35\x33\xf1\x7b\x4a\x28\x37\x35\xec\x95\xde\xd4\x8d\x7a\xd5\xcc\x39\x26\x45\x67\xd0\xa7\xf2\x33\x80\x9a\x37\x4d\x4f\xb2\x1c\x81\x12\x1b\x09\xb3\x4c\x99\xa6\x97\x96\xce\x8c\xf0\xe2\xd3\x68\xa6\x04\x7a\x3c\x55\x02\xbd\x7f\xae\x36\xfc\x6a\x00\xb5\xd5\xee\x16\xfd\x8e\x68\x8e\x6b\xf0\xe4\x82\x5f\x1b\xb8\x70\x19\xa3\x16\x47\x25\x43\x0c\x1d\x16\x9e\x6a\x79\xc1\x6f\x3e\x4c\x36\x7d\xc4\x39\x77\xb6\x3d\x2a\x1b\x36\x3e\x2a\x3e\xb5\x53\xf0\x82\x2e\x13\xa5\xf9\x6e\xf1\xa9\xec\xd9\xc1\x7a\x95\xc1\x44\x23\xac\xeb\xcc\xc0\xd2\x97\x00\x4b\xdf\x10\x58\x7a\x09\x8d\xdb\x44\xad\x74\x8e\x6e\xca\x3e\x87\xc9\x4e\x50\xcb\xeb\x23\x5a\x01\x49\x9e\x2a\x05\x4d\x5c\xa6\xf2\x8f\xee\x42\x66\x49\x83\x1a\x4e\xa1\xac\x53\x91\xe8\xd0\x81\x4c\xd5\xc6\x81\x62\xe5\x40\x5f\xdc\x2e\xd6\x62\xcd\xf2\xb9\xe7\x3e\x9c\x4b\x4a\x00\x0b\x19\x8f\x60\x8d\x46\xc2\xaa\x04\x71\x2d\x08\xfc\x32\x26\x94\x42\xc1\x3c\xb0\x10\x2e\x82\x3b\xe3\xd8\x55\x53\x80\xdb\x5c\x36\xd3\x5e\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\xc9\x54\x0a\x59\x11\x01\x5b\x7c\x8c\xf4\xb5\x35\xc2\x39\x58\x2d\xc0\xc5\xc8\xde\x5a\xe3\x34\x85\xc5\xc3\xc1\xfe\x46\xc5\x5f\xd2\xba\xb7\xae\x05\x4c\xe4\x0a\x48\x13\x92\x62\x9c\x30\x9e\xe9\xb7\x6f\xcb\x8b\xa2\x9f\x4a\x9a\x3f\x40\xe9\xaf\xa6\x59\x7c\x24\x17\xc5\x59\xd3\x61\x9a\xdc\x96\x4b\x56\x54\x88\x73\x33\xe2\x10\xc1\xfb\xe4\x1c\xc9\x26\xdd\x84\xfe\x44\x97\x0d\x46\x19\x0c\x2c\x36\xe1\xb3\x61\xde\x1f\xa3\x69\xa6\x75\x84\xd1\x42\x75\x64\x10\x5d\xcc\x86\x2d\x56\x3b\x98\x2d\x9b\x40\xca\x23\x1b\x72\xb1\xb9\x0e\x4b\x43\xae\x34\x41\x6d\x50\xc3\x3b\xc8\x9c\xc1\x2c\xbb\x27\x7b\x9d\xaa\x1b\x97\x05\xac\x72\x11\x27\x08\xa8\xda\x61\xa4\xba\xab\xed\x49\x60\x43\x83\x7d\xcf\x65\xdb\x3b\x5d\x5f\xf8\x62\xb6\x9f\x8b\x00\x53\x60\xa5\x12\xe3\xc8\x26\xff\xac\x2f\x4e\xf8\x27\x6d\x4e\xf4\xf1\x9a\xc0\x73\xf1\xc8\x72\xdf\xf1\x3b\x36\xfb\xca\x9a\x8e\xef\xf1\x05\x11\x98\xa7\xdf\xe2\x45\x35\xda\x0f\xcb\x75\x33\xcf\xd9\x24\x45\xde\x0a\xc2\x53\x38\x4f\xb4\x8e\xaa\xcb\x42\xa4\x1c\x3e\x33\x96\x0f\x90\x94\xc1\x15\x4f\x23\x50\xc4\x8b\xe0\x0c\x41\xb3\xa6\x0d\xae\xf2\x0d\x71\x71\x69\xce\x8e\x20\x99\xda\x42\x8f\x6a\x08\xca\x40\x43\x2c\x1b\x8b\x79\x37\x89\x53\x13\xd6\x23\xef\xb9\x64\x86\x31\xf7\xd5\xb5\xf7\xf9\x97\xc9\x75\xf7\x4a\x7a\x5b\x76\xf7\x9c\x3a\xa0\xef\xbc\x03\x8e\x17\x18\xe1\x14\xd9\xb3\xd5\xab\x0e\x83\x9e\x4a\xb0\x45\xee\xaf\xf7\x4d\x6d\x98\xbd\x64\xc6\x15\x51\xc4\x59\x4e\x0a\x7d\xb0\x5d\xd8\x04\x8b\xfa\x58\xc2\xce\xdf\x07\x65\x20\xba\xae\x8a\xc5\xb0\x03\x1c\xf6\x43\x0c\x61\xf6\xb4\xef\x2f\x3a\x11\xe0\x2b\x6c\x3e\x54\x71\xc5\x1d\x90\xcb\xb8\xa6\x0d\xcd\x9d\x62\x0d\x65\xd4\x95\x09\x8b\xa6\xc3\xe1\xd3\x97\x7b\xcc\x61\xa9\x56\x71\x38\x1d\x90\xe8\xe8\x86\x3a\x22\xd5\x28\x11\x92\x60\x24\xc4\xb6\x3a\x48\xf2\xb7\x37\x76\x71\x23\x7a\x54\x50\xdf\x61\x7b\xc1\x9e\x8c\x5a\x93\x12\xe3\x37\xf5\xe2\x2e\x48\xca\xf8\x7e\x57\xd2\x55\x05\x98\xda\x1b\x59\xaa\xcf\x9d\x41\x0f\x28\x2c\x58\x6b\x69\xc3\xe7\x56\xa0\xde\x55\x62\x39\xe8\xf2\x80\x5c\x46\xdd\x96\x52\x12\xa8\xd1\x3c\x95\x95\x22\x6b\x56\xd0\x7b\x49\x09\xdf\x32\x90\x14\x79\x7a\x9f\xc9\x87\x84\xb1\x29\x34\x7d\x6c\x59\x15\x74\x52\xab\x19\x74\x2e\xa8\x15\x50\xd3\x14\x3f\xe8\xcd\xd0\xd9\x40\x52\xe1\x17\xcb\x9e\x11\x5d\xaf\x29\x5b\x79\xa1\xe0\x8c\x5f\x28\x90\x14\xa8\xd5\x0a\x98\xfd\xb2\x16\xed\xf8\x7d\x98\x1e\x3c\x5b\x8f\x5c\xf7\x60\xfd\x04\x4c\x60\xf7\x94\xb7\xfc\x40\xc2\x0f\x1a\xa2\x34\x78\xbe\x9e\x1d\x26\x4b\xf8\x70\x6d\xd7\xdc\x5f\x7e\x75\x0b\x37\x62\x7c\x3f\xb0\x43\x78\x42\x7e\x5f\x1a\xa6\x00\x44\x66\x96\x62\x89\x2e\x2f\xa2\xea\x64\x32\x7f\xa2\x91\x97\xc1\x97\xe8\xfd\xc7\x4b\x36\x62\x0c\x40\x30\x22\x00\xb8\x11\xe5\xbd\x44\x0d\x2a\xa7\x7c\xb3\x52\x97\xbb\x17\x7a\xf8\x90\x08\x36\xbd\x3b\x49\xb9\xf7\x1c\x64\xfd\x69\x85\x78\x8a\x4c\x7d\xca\x75\xa1\x8e\x86\x51\x74\xa4\xd9\xa8\x05\x33\x80\x42\x60\xbc\x7b\x7a\xd3\xed\xac\xeb\x17\xbb\xfb\x7a\xae\xcf\xad\xcb\x2b\xee\x7b\xc1\x3a\x16\xd3\xf4\x85\xde\x57\x25\x2b\x76\x7d\x16\x2f\x95\xe2\x85\xf8\x50\x7c\x36\xbc\x91\x20\x7d\x36\xc9\x12\xa4\xcf\x6a\xc6\x9d\x9b\x03\x90\x9b\xf8\x08\x62\xc3\xe7\x67\xd6\xe5\x4c\x6c\xe8\xa4\x28\xd2\x8b\x43\xcd\xe9\x36\xfd\xd6\x5e\x80\xbb\x38\xb9\x3c\xbb\x63\x67\x30\xa8\x62\x38\x20\x03\x34\xe7\x2c\x45\x75\x64\x05\xf8\x6e\x5e\xfa\xb2\x63\x54\x6b\x02\xab\x37\xd9\x3a\xdd\x34\xdc\x5d\x4c\x94\x3c\x77\x4c\x27\x3e\xc7\x10\x86\x6f\x8b\x94\x99\xa5\x27\xc4\x68\x54\x6c\x44\x69\xad\xa9\x21\xdf\x9c\x70\xa5\xdc\xe6\xad\xbd\x3e\x82\xa7\xaf\xd2\x47\x07\x8f\x66\x11\x2d\xc9\x7a\x3c\x2c\xa4\x51\xb1\x2e\xdf\x5d\xd0\xe7\xa2\xbd\x15\x2b\x01\x1d\xe9\xa7\x6a\xcb\x60\x19\xbb\x46\x09\xa7\x4b\x29\x80\xfd\x05\x29\xb6\xf1\xf9\x3a\xb9\x6c\xaf\x39\x2e\xa0\xe2\xcf\xd9\xe1\x09\xb4\x38\x94\x14\x92\x12\x6d\x1a\x41\x80\x8d\x8f\xf6\x9d\xa0\xe5\x68\x22\x3e\xda\xc8\x61\xb5\xc5\x79\x42\x7f\xac\x9e\x20\x3e\xe9\x90\xd9\x95\x2b\x7f\x9b\xe9\x11\xe3\x15\x43\x07\xfc\x97\x27\xd4\x43\xfe\x3c\x2e\x72\x9f\x9b\xcd\x2c\x22\xcd\xe1\x39\x1c\xd7\xf3\x85\xa6\x73\x61\x65\x01\xcf\x74\xd7\xa0\x27\x63\xef\xc4\x25\x22\xc8\x4c\x4e\x0b\x7b\x2d\x37\xae\xda\x59\x33\x8c\x4b\x44\xef\xe6\x8e\xe6\x75\xc2\x24\xed\x0e\x33\xb4\xa0\xf6\x01\xf7\x12\x57\x7c\x1f\x13\x23\xca\x5a\xd3\x28\xba\xfb\x56\xd5\x28\xc6\xd7\xae\x0a\x9b\x6f\xb7\xee\x10\x0c\x1e\x44\x06\xda\x06\x20\xd7\x42\x70\x02\x88\x5f\x34\x8a\x58\x00\x24\x1e\xb7\x21\x10\x3b\xde\x2a\xc0\xf0\x20\xd5\xe4\xe6\xea\x8a\x9f\xa5\xe3\xd7\x1c\x34\xa4\x23\xff\xe4\xe8\xb6\xae\x7d\xf5\x23\xcf\x58\xc5\x09\x95\x21\x8f\xe9\x58\x9d\xcb\xcf\x91\xc8\x32\x9a\x81\xb7\x3b\xe8\xc6\xb8\xbf\xe7\xbb\x5a\xa4\xcf\x20\x4b\x1b\xe2\xac\xb0\x11\xf0\x62\x6d\xd3\xf4\xf6\x2e\x63\xc0\x88\x9d\x53\x32\x9d\xd0\xfd\xca\x4d\x30\xdf\xe8\x2e\x32\x79\x1e\x2e\x28\x83\xfb\xe4\x05\x9c\x79\xc6\x85\xa8\xdf\xe3\x12\xd4\xef\x3d\xe0\x62\xb5\x64\x6c\xcc\x05\x7e\x09\x91\x76\x3d\x46\xe0\x39\xc1\x46\x1b\xb0\xa4\x0d\xf1\x06\x73\xe0\x2a\xee\x56\x01\x6a\x5c\xbc\x99\xc6\x0b\x86\x1a\xf3\x5d\x41\x26\x33\x8d\x7d\xa6\xe1\x19\x33\x7d\x3d\x53\x78\xc8\x3e\x7d\xa9\x51\x1b\x05\xf3\xc2\x62\x7b\xd0\x80\xb3\x42\x16\x2a\x48\x5e\xc3\x32\xc2\x72\xdf\xe1\xd7\x08\x28\x5a\xb9\xd1\x54\x12\x00\x3b\xcc\x21\xb2\x85\x02\xfd\xb9\xbc\x95\x88\x16\x13\x80\x4b\x6e\xce\x81\xd1\xaf\xf4\xf1\x23\xca\x7a\x2a\x59\x8f\x9e\x8c\xca\xb0\x5c\x4a\x02\xb5\x78\x28\x56\xff\x28\x25\x0e\x3e\x9f\xc1\x92\x81\xd6\x2e\xf8\x72\xe2\x88\x33\xee\x2a\xda\x4d\x94\xea\xdc\xda\x15\x73\xbf\x74\xc7\x66\x40\x30\xb9\x7e\x04\x19\x32\xd2\x3e\x35\x64\x5d\x7d\x6a\xc8\x86\xfb\x54\xc5\xaa\x70\x0b\x51\x6a\xd7\xad\x6d\x17\x5d\x5c\xbc\x8b\xb7\xaa\xcf\x0d\x1e\xa1\x66\x26\xed\x01\xbf\xc9\xc3\xe1\xfe\x1f\xa4\xec\x11\xfb\x24\x28\xa1\x53\x1d\x4e\xaa\xa6\x0e\xeb\xe8\xfe\xbe\xae\xfa\xf2\xfb\x07\x30\x0a\x7a\xd0\x57\xc5\xfc\xc1\x93\x90\xe8\x55\x70\x27\x0b\xa8\x5e\xb5\xd8\x33\x3d\x4e\x8f\xc5\x6a\x9a\x75\x10\x27\xf1\x5c\x9e\xf1\x51\xd6\x4e\x8d\x99\xe3\x99\x35\x72\xe4\x8f\x70\x47\x8c\xc2\xe3\xdb\xfa\xc5\x9e\x89\x6d\x90\xe1\x43\x0d\xc3\xd7\xf1\xdc\xaa\x79\x89\x64\xdf\x41\x79\x4e\xc8\x9e\x17\x52\x27\x2d\xeb\x1e\x5e\x07\x7a\x5b\x8b\x6f\xa3\x16\xc1\x48\x9c\x5e\xee\x84\xfb\x1f\xaa\xe2\x86\xfd\x1f\x21\xab\x8d\xe2\x6e\xa4\x55\x2e\x66\x91\x6f\x89\xa1\xcd\x3d\xff\x72\x24\x09\xee\x3c\x10\xdf\x7c\x76\xee\xcb\xd6\x7a\xa9\x2e\xfe\xfb\x70\xf1\xa3\x7d\x7c\x5d\x76\x7e\xb0\xc4\x0f\x78\x79\x27\x2a\x74\xce\x79\x4e\x3e\x9a\x28\x6c\x61\x3d\xdc\xc2\x9b\xdb\xfc\xe4\xc2\x23\x3a\x4d\xb6\x2e\xeb\x25\x90\xee\x2f\xfc\x93\x38\x4f\xfe\xe9\x26\x48\xfc\xe1\xa1\xc9\x65\xbf\xb4\xe7\xe6\x21\x0f\x85\x2e\xa5\xb8\xa5\xbd\x97\x45\x0c\x56\x26\x3c\x90\x4f\xf0\x7b\xba\x83\x0a\xbb\x97\xf6\x6a\xbe\xad\x22\xed\x90\x26\x58\xbb\x37\x3f\xbf\x3b\x1d\x40\x4e\x6c\x6d\xcd\x99\x20\x05\x9a\x33\xb1\xf1\xa1\xfe\x05\x05\x55\xe1\x07\x8a\x5f\x90\x50\xec\x15\x83\x73\x20\x99\x7b\x97\xf8\x15\x17\x60\x9b\xcd\x12\x6f\x91\x77\xcc\xe1\x6b\x12\xf3\x93\x78\xa6\x78\x54\xba\xd3\xd7\xd8\x3c\xb8\x0f\x56\xaf\x41\x67\xb8\xf0\xcc\x31\x12\x38\x07\xdd\x14\xc3\x68\x65\x7a\x86\x05\x72\xef\x04\xcb\x8d\x8d\x37\x56\xc3\x1d\xcd\x64\x45\x02\x99\x17\x84\xf9\xe2\xd1\x09\xd0\x43\xf9\x1d\x03\x05\x2f\xa6\x0b\x94\x3d\x98\x3e\x6a\xb5\x0e\xdb\xac\xc5\x6a\xc1\xaf\x81\x98\x5a\x06\x34\x4e\x9c\x99\xa6\x8f\x70\x85\x66\xcf\xd5\xca\x6c\x1a\x05\xfe\x4c\x93\x0c\xd4\x40\x7c\xcd\x06\xa1\x55\xbb\x6e\xd2\xc6\xaa\x9c\xa0\x73\x84\x5f\x11\x6a\x29\x79\xe0\xfd\x2c\xb0\x9e\x42\xb0\xd2\x58\x4a\x18\xf0\x72\xe1\x26\xc6\x2e\x6b\x5e\x1f\xf9\xb7\xe4\x71\xaf\x33\x18\xcc\xba\xba\x2a\xdd\x2d\x90\x8e\xe6\x1d\xa5\x45\xc0\xab\xbe\xdf\x76\x16\x83\x05\xef\x7d\xa7\xa7\xf4\x63\x30\x88\xb0\x2a\x1d\xc9\xa8\xa6\x6d\x85\x9b\xb9\x60\x5e\x24\x61\x7a\xc6\x0d\x5a\xcf\xa2\x00\x5c\x0f\xa3\x21\x0d\x5e\xb6\xea\x4a\xe4\x77\xf0\x6b\x4d\x0a\xd9\x46\xd7\x3a\xb3\x8b\x93\x2d\x33\x94\x9e\xc9\x0c\x83\x33\xd9\x0c\x28\x67\x8b\x56\xa2\xb5\xf3\x9f\x4b\xb6\x5e\x73\x39\x21\x6d\xb0\xb4\x8e\x1f\xb8\xdf\x89\x27\xb8\x7e\x7a\x78\xff\xb6\xa3\x4c\x93\x65\x4c\xbc\x07\x19\x03\x94\x9f\xcb\xc5\x2e\xb8\xb2\xff\x59\x7e\xeb\x1d\x99\xaf\xa6\x31\x27\x8b\x5d\x8d\xb7\x40\xcf\x24\x25\x80\x99\x7a\xa0\xc4\xba\x0e\xe6\xd3\x98\xd0\xbd\xed\xbb\xe6\xa1\xf7\x60\x28\x33\x42\x35\xdb\x4e\x8d\xf3\xbf\x16\x6f\xd6\x81\x5d\xaa\xc1\xc2\x89\xbf\x80\x53\x79\xe6\x9c\xcc\xe1\xcd\x2f\x90\xea\x70\xee\xe0\xd5\xba\x52\x0f\x42\xbe\xb7\x70\xad\x96\x6c\x9e\xc4\x37\xaa\xc0\x6a\xbc\xfb\x7a\xb8\xf6\x25\x69\xc8\x21\xc4\xb1\xfe\x8c\x60\xaa\x5a\xc4\x01\xc9\x92\x8b\x9e\xb7\x92\xa6\x55\x06\xc6\xb6\x26\xc9\xba\x77\x65\x9d\xb8\x7c\xa1\x29\x43\x48\x6b\x19\x40\x6c\x0e\x33\x9c\x8d\x90\xdb\x0c\xd3\x10\x73\x35\xb0\x88\x0e\xc6\x34\x5c\x46\xcb\x6a\xb6\x4c\xc0\xb7\xb3\x51\x6f\x9d\x5c\xac\x2b\x62\xa6\xc3\xf7\x99\xa0\x25\xbf\xc9\xdc\x7f\x34\x17\x58\xbd\x2a\xb1\x6b\xc6\xc0\xb4\x27\x8a\x5f\xf3\x50\x5e\x48\x6d\xcb\x3a\x08\x68\x2e\xbf\x8a\xd1\x4b\xeb\xf6\x1e\xd9\xb7\xfe\x3d\x32\x76\x0f\xd9\xfb\xee\xaa\x7b\x07\x13\xb5\xb2\xbd\xbb\x04\xd2\x1b\xbc\xe9\xd6\xb5\x8b\x67\xc3\xb2\x7c\x7d\x12\x83\x71\xe6\x7f\x58\xc5\x32\x46\x7b\x31\xf4\x77\x7d\xa5\x53\x7e\x07\xe3\x7b\x26\x3a\xfe\x67\x32\xd2\x3f\x05\xcf\x68\xc6\x4f\x9c\xda\x63\xa1\x5f\x51\xc1\xe0\x65\x53\xff\x54\xe8\xd7\x74\x42\x86\x31\x7c\x2d\xcf\xd6\x2c\x7a\x69\x2a\xac\x50\x1f\xc1\xdb\x33\xa8\x51\x75\x32\xb6\xaf\xae\x4d\x47\x38\xac\xce\x0d\xf4\xeb\xbb\x37\x78\xe8\x35\x78\xcc\xb6\xa9\xbf\x66\xde\x26\x5f\x04\xfb\x5d\x5f\x2e\xfb\xea\x6e\xb9\x80\xb7\x8a\xa7\xf6\x7b\xb0\x6b\x04\xf7\xa7\x11\xdf\x6f\x24\xc4\xfd\xe2\x48\x00\x1e\xdf\xe9\x47\xd8\x0d\x60\x7b\xf8\xa6\xeb\x78\x47\x0c\xf6\x90\xbd\x0b\xa9\x4f\xf8\x81\xfe\x4a\x72\xd5\xe9\x0b\x4c\xf2\x70\xe2\x43\xf7\xae\x20\xd1\x83\xbe\x69\xd6\x1f\x93\x7c\xc9\x43\xa2\xff\x13\xde\xc1\xea\x24\x88\xcd\x4c\x9f\x89\xfc\xe4\xaf\x6f\xb9\xe6\x6f\x35\x84\x25\x87\x0f\xff\x76\x83\x04\x12\xde\xf9\x0c\xe3\x84\x15\x12\x56\x1c\xd7\x8a\x7f\x16\xf8\x59\xe4\xb7\xf8\x75\x83\x5f\x37\x65\xf9\x49\x0a\x83\x38\x53\xf1\xa6\x26\x1e\x95\x53\x6e\xf1\xfb\x96\x5f\xcc\x42\x70\xf2\x05\x42\x65\xe2\x61\x32\xfb\x81\xe7\xc7\x6a\x5c\x1d\x20\xdd\x7e\x50\x3a\xb7\xaa\xa9\xf2\xf9\x90\x0d\xb5\x6e\x35\x09\x5f\xfc\x5e\x0e\x35\xaf\x49\xf2\xf9\x10\x67\x6a\xbf\xb2\x0a\xe5\x9b\x52\xb9\x1f\x9a\x28\x9f\x94\xd6\xe6\x37\x99\xef\x97\x7e\x21\xd5\xf7\x4a\xbf\x68\x7a\x8b\xb6\xd9\xf2\x73\x11\x1f\x13\x7b\x33\xc8\x3f\x16\x74\x4c\x79\x66\x2b\xc9\x11\xcd\x39\xde\x09\x1e\x05\xe1\xbb\x9e\x2d\x87\x7d\x98\x25\xf6\x46\x58\x55\x6f\x77\x4e\x07\xe6\xdf\xa7\x13\x30\x1f\x28\x53\x3c\xc5\xf8\x59\xf1\x04\x1a\x36\x5a\xdd\x6c\x0e\x86\x09\xba\x35\x96\x72\xd3\xc7\xff\xfc\x27\xe0\xe9\xfb\x5f\xff\x4a\x4f\x5e\x3e\x49\xcb\xcf\x1c\xc1\xb9\x4b\x37\x6a\x0e\x61\x60\xf4\xfb\x55\x04\xc9\x41\x2a\xe0\xc0\xa3\x57\xf7\xe2\xc0\x83\xe6\x93\xff\x17\x00\x00\xff\xff\x7d\x94\x44\xe9\x88\xc5\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4337,7 +4337,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 50409, mode: os.FileMode(420), modTime: time.Unix(1457156822, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 50568, mode: os.FileMode(420), modTime: time.Unix(1457200520, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/template/template.go b/modules/template/template.go index d2f82f0d2..da7f20c58 100644 --- a/modules/template/template.go +++ b/modules/template/template.go @@ -233,7 +233,7 @@ func ActionIcon(opType int) string { return "repo" case 5, 9: // Commit repository return "git-commit" - case 6, 13: // Create and reopen issue + case 6: // Create issue return "issue-opened" case 7: // New pull request return "git-pull-request" @@ -241,8 +241,10 @@ func ActionIcon(opType int) string { return "comment" case 11: // Merge pull request return "git-merge" - case 12: // Close issue + case 12, 14: // Close issue or pull request return "issue-closed" + case 13, 15: // Reopen issue or pull request + return "issue-reopened" default: return "invalid type" } diff --git a/templates/.VERSION b/templates/.VERSION index 62a9b80e4..505aa1c97 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.8.57.0305 \ No newline at end of file +0.8.58.0305 \ No newline at end of file diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index 4206308e3..00982e5b8 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -37,6 +37,12 @@ {{else if eq .GetOpType 13}} {{ $index := index .GetIssueInfos 0}} {{$.i18n.Tr "action.reopen_issue" .GetRepoLink $index .ShortRepoPath | Str2html}} + {{else if eq .GetOpType 14}} + {{ $index := index .GetIssueInfos 0}} + {{$.i18n.Tr "action.close_pull_request" .GetRepoLink $index .ShortRepoPath | Str2html}} + {{else if eq .GetOpType 15}} + {{ $index := index .GetIssueInfos 0}} + {{$.i18n.Tr "action.reopen_pull_request" .GetRepoLink $index .ShortRepoPath | Str2html}} {{end}}

{{if eq .GetOpType 5}} @@ -55,13 +61,13 @@ {{else if eq .GetOpType 6}} {{index .GetIssueInfos 1}} {{else if eq .GetOpType 7}} -

{{index .GetIssueInfos 1}}

+ {{index .GetIssueInfos 1}} {{else if eq .GetOpType 10}} {{.GetIssueTitle}}

{{index .GetIssueInfos 1}}

{{else if eq .GetOpType 11}}

{{index .GetIssueInfos 1}}

- {{else if (or (eq .GetOpType 12) (eq .GetOpType 13))}} + {{else if (or (or (eq .GetOpType 12) (eq .GetOpType 13)) (or (eq .GetOpType 14) (eq .GetOpType 15)))}} {{.GetIssueTitle}} {{end}}

{{TimeSince .GetCreate $.i18n.Lang}}