diff --git a/README.md b/README.md index e68f78a45..ebf1600f6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.7.29 Beta +##### Current version: 0.7.30 Beta diff --git a/cmd/web.go b/cmd/web.go index 5f1e44f3a..29f6a0f8b 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -421,7 +421,7 @@ func runWeb(ctx *cli.Context) { m.Get("/action/:action", repo.Action) m.Group("/issues", func() { - m.Combo("/new").Get(middleware.RepoRef(), repo.NewIssue). + m.Combo("/new", repo.MustEnableIssues).Get(middleware.RepoRef(), repo.NewIssue). Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost) m.Combo("/:index/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment) @@ -459,7 +459,7 @@ func runWeb(ctx *cli.Context) { m.Post("/delete", repo.DeleteRelease) }, reqRepoAdmin, middleware.RepoRef()) - m.Combo("/compare/*").Get(repo.CompareAndPullRequest). + m.Combo("/compare/*", repo.MustEnablePulls).Get(repo.CompareAndPullRequest). Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost) }, reqSignIn, middleware.RepoAssignment()) @@ -484,7 +484,7 @@ func runWeb(ctx *cli.Context) { m.Combo("/:page/_edit").Get(repo.EditWiki). Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost) }, reqSignIn, reqRepoPusher) - }, middleware.RepoRef()) + }, repo.MustEnableWiki, middleware.RepoRef()) m.Get("/archive/*", repo.Download) @@ -492,7 +492,7 @@ func runWeb(ctx *cli.Context) { m.Get("/commits", repo.ViewPullCommits) m.Get("/files", repo.ViewPullFiles) m.Post("/merge", reqRepoAdmin, repo.MergePullRequest) - }) + }, repo.MustEnablePulls) m.Group("", func() { m.Get("/src/*", repo.Home) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 5d49c4c4a..b72b8846b 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -558,10 +558,17 @@ settings.collaboration = Collaboration settings.hooks = Webhooks settings.githooks = Git Hooks settings.basic_settings = Basic Settings -settings.danger_zone = Danger Zone settings.site = Official Site settings.update_settings = Update Settings settings.change_reponame_prompt = This change will affect how links relate to the repository. +settings.advanced_settings = Advanced Settings +settings.wiki_desc = Enable wiki to allow people write documents +settings.issues_desc = Enable builtin lightweight issue tracker +settings.use_external_issue_tracker = Use external issue tracker +settings.tracker_url_format = External Issue Tracker URL Format +settings.tracker_url_format_desc = You can use placeholder {user} {repo} {index} for user name, repository name and issue index. +settings.pulls_desc = Enable pull requests to accept public contributions +settings.danger_zone = Danger Zone settings.transfer = Transfer Ownership settings.transfer_desc = Transfer this repository to another user or to an organization in which you have admin rights. settings.new_owner_has_same_repo = The new owner already has a repository with same name. Please choose another name. diff --git a/docker/README.md b/docker/README.md index 7bf54e4c4..35106a131 100644 --- a/docker/README.md +++ b/docker/README.md @@ -33,7 +33,6 @@ Directory `/var/gogs` keeps Git repositories and Gogs data: |-- conf |-- data |-- log - |-- templates ### Volume with data container diff --git a/gogs.go b/gogs.go index cd13dd218..493bebe2c 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.29.1204 Beta" +const APP_VER = "0.7.30.1204 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/repo.go b/models/repo.go index b4ad19c06..47cebb6c9 100644 --- a/models/repo.go +++ b/models/repo.go @@ -161,6 +161,14 @@ type Repository struct { IsMirror bool *Mirror `xorm:"-"` + // Advanced settings + EnableWiki bool `xorm:"NOT NULL DEFAULT true"` + EnableIssues bool `xorm:"NOT NULL DEFAULT true"` + EnableExternalTracker bool + ExternalTrackerFormat string + ExternalMetas map[string]string `xorm:"-"` + EnablePulls bool `xorm:"NOT NULL DEFAULT true"` + IsFork bool `xorm:"NOT NULL DEFAULT false"` ForkID int64 BaseRepo *Repository `xorm:"-"` @@ -214,6 +222,20 @@ func (repo *Repository) MustOwner() *User { return repo.mustOwner(x) } +// ComposeMetas composes a map of metas for rendering external issue tracker URL. +func (repo *Repository) ComposeMetas() map[string]string { + if !repo.EnableExternalTracker { + return nil + } else if repo.ExternalMetas == nil { + repo.ExternalMetas = map[string]string{ + "format": repo.ExternalTrackerFormat, + "user": repo.MustOwner().Name, + "repo": repo.Name, + } + } + return repo.ExternalMetas +} + // GetAssignees returns all users that have write access of repository. func (repo *Repository) GetAssignees() (_ []*User, err error) { if err = repo.GetOwner(); err != nil { diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 3c5e4ee59..2629f4414 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -87,6 +87,13 @@ type RepoSettingForm struct { Branch string Interval int Private bool + + // Advanced settings + EnableWiki bool + EnableIssues bool + EnableExternalTracker bool + TrackerURLFormat string + EnablePulls bool } func (f *RepoSettingForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/modules/base/markdown.go b/modules/base/markdown.go index 420392282..1934b0085 100644 --- a/modules/base/markdown.go +++ b/modules/base/markdown.go @@ -137,50 +137,6 @@ var ( sha1CurrentPattern = regexp.MustCompile(`\b[0-9a-f]{40}\b`) ) -func RenderSpecialLink(rawBytes []byte, urlPrefix string) []byte { - ms := MentionPattern.FindAll(rawBytes, -1) - for _, m := range ms { - m = bytes.TrimSpace(m) - rawBytes = bytes.Replace(rawBytes, m, - []byte(fmt.Sprintf(`%s`, setting.AppSubUrl, m[1:], m)), -1) - } - - ms = commitPattern.FindAll(rawBytes, -1) - for _, m := range ms { - m = bytes.TrimSpace(m) - i := strings.Index(string(m), "commit/") - j := strings.Index(string(m), "#") - if j == -1 { - j = len(m) - } - rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf( - ` %s`, m, ShortSha(string(m[i+7:j])))), -1) - } - ms = issueFullPattern.FindAll(rawBytes, -1) - for _, m := range ms { - m = bytes.TrimSpace(m) - i := strings.Index(string(m), "issues/") - j := strings.Index(string(m), "#") - if j == -1 { - j = len(m) - } - rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf( - ` #%s`, m, ShortSha(string(m[i+7:j])))), -1) - } - rawBytes = RenderIssueIndexPattern(rawBytes, urlPrefix) - rawBytes = RenderSha1CurrentPattern(rawBytes, urlPrefix) - return rawBytes -} - -func RenderSha1CurrentPattern(rawBytes []byte, urlPrefix string) []byte { - ms := sha1CurrentPattern.FindAll(rawBytes, -1) - for _, m := range ms { - rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf( - `%s`, urlPrefix, m, ShortSha(string(m)))), -1) - } - return rawBytes -} - func cutoutVerbosePrefix(prefix string) string { count := 0 for i := 0; i < len(prefix); i++ { @@ -194,7 +150,7 @@ func cutoutVerbosePrefix(prefix string) string { return prefix } -func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string) []byte { +func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string, metas map[string]string) []byte { urlPrefix = cutoutVerbosePrefix(urlPrefix) ms := issueIndexPattern.FindAll(rawBytes, -1) for _, m := range ms { @@ -204,24 +160,45 @@ func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string) []byte { space = " " m2 = m2[1:] } - rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf(`%s%s`, - space, urlPrefix, m2[1:], m2)), 1) + if metas == nil { + rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf(`%s%s`, + space, urlPrefix, m2[1:], m2)), 1) + } else { + // Support for external issue tracker + metas["index"] = string(m2[1:]) + rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf(`%s%s`, + space, com.Expand(metas["format"], metas), m2)), 1) + } + } + return rawBytes +} + +func RenderSpecialLink(rawBytes []byte, urlPrefix string, metas map[string]string) []byte { + ms := MentionPattern.FindAll(rawBytes, -1) + for _, m := range ms { + m = bytes.TrimSpace(m) + rawBytes = bytes.Replace(rawBytes, m, + []byte(fmt.Sprintf(`%s`, setting.AppSubUrl, m[1:], m)), -1) + } + + rawBytes = RenderIssueIndexPattern(rawBytes, urlPrefix, metas) + rawBytes = RenderSha1CurrentPattern(rawBytes, urlPrefix) + return rawBytes +} + +func RenderSha1CurrentPattern(rawBytes []byte, urlPrefix string) []byte { + ms := sha1CurrentPattern.FindAll(rawBytes, -1) + for _, m := range ms { + rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf( + `%s`, urlPrefix, m, ShortSha(string(m)))), -1) } return rawBytes } func RenderRawMarkdown(body []byte, urlPrefix string) []byte { htmlFlags := 0 - // htmlFlags |= blackfriday.HTML_USE_XHTML - // htmlFlags |= blackfriday.HTML_USE_SMARTYPANTS - // htmlFlags |= blackfriday.HTML_SMARTYPANTS_FRACTIONS - // htmlFlags |= blackfriday.HTML_SMARTYPANTS_LATEX_DASHES - // htmlFlags |= blackfriday.HTML_SKIP_HTML htmlFlags |= blackfriday.HTML_SKIP_STYLE - // htmlFlags |= blackfriday.HTML_SKIP_SCRIPT - // htmlFlags |= blackfriday.HTML_GITHUB_BLOCKCODE htmlFlags |= blackfriday.HTML_OMIT_CONTENTS - // htmlFlags |= blackfriday.HTML_COMPLETE_PAGE renderer := &CustomRender{ Renderer: blackfriday.HtmlRenderer(htmlFlags, "", ""), urlPrefix: urlPrefix, @@ -252,9 +229,36 @@ var ( var noEndTags = []string{"img", "input", "br", "hr"} +// PreProcessMarkdown renders full links of commits, issues and pulls to shorter version. +func PreProcessMarkdown(rawHTML []byte, urlPrefix string) []byte { + ms := commitPattern.FindAll(rawHTML, -1) + for _, m := range ms { + m = bytes.TrimSpace(m) + i := strings.Index(string(m), "commit/") + j := strings.Index(string(m), "#") + if j == -1 { + j = len(m) + } + rawHTML = bytes.Replace(rawHTML, m, []byte(fmt.Sprintf( + ` %s`, m, ShortSha(string(m[i+7:j])))), -1) + } + ms = issueFullPattern.FindAll(rawHTML, -1) + for _, m := range ms { + m = bytes.TrimSpace(m) + i := strings.Index(string(m), "issues/") + j := strings.Index(string(m), "#") + if j == -1 { + j = len(m) + } + rawHTML = bytes.Replace(rawHTML, m, []byte(fmt.Sprintf( + ` #%s`, m, ShortSha(string(m[i+7:j])))), -1) + } + return rawHTML +} + // PostProcessMarkdown treats different types of HTML differently, // and only renders special links for plain text blocks. -func PostProcessMarkdown(rawHtml []byte, urlPrefix string) []byte { +func PostProcessMarkdown(rawHtml []byte, urlPrefix string, metas map[string]string) []byte { startTags := make([]string, 0, 5) var buf bytes.Buffer tokenizer := html.NewTokenizer(bytes.NewReader(rawHtml)) @@ -264,7 +268,7 @@ OUTER_LOOP: token := tokenizer.Token() switch token.Type { case html.TextToken: - buf.Write(RenderSpecialLink([]byte(token.String()), urlPrefix)) + buf.Write(RenderSpecialLink([]byte(token.String()), urlPrefix, metas)) case html.StartTagToken: buf.WriteString(token.String()) @@ -322,13 +326,14 @@ OUTER_LOOP: return rawHtml } -func RenderMarkdown(rawBytes []byte, urlPrefix string) []byte { - result := RenderRawMarkdown(rawBytes, urlPrefix) - result = PostProcessMarkdown(result, urlPrefix) +func RenderMarkdown(rawBytes []byte, urlPrefix string, metas map[string]string) []byte { + result := PreProcessMarkdown(rawBytes, urlPrefix) + result = RenderRawMarkdown(result, urlPrefix) + result = PostProcessMarkdown(result, urlPrefix, metas) result = Sanitizer.SanitizeBytes(result) return result } -func RenderMarkdownString(raw, urlPrefix string) string { - return string(RenderMarkdown([]byte(raw), urlPrefix)) +func RenderMarkdownString(raw, urlPrefix string, metas map[string]string) string { + return string(RenderMarkdown([]byte(raw), urlPrefix, metas)) } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 21fbc9687..7db07ea2c 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xfd\x72\xdc\xc6\xae\xe7\xff\x7c\x0a\xc6\xa7\x5c\x4e\xaa\xe4\x49\x25\xb9\xfb\x51\xa9\x38\x59\xd9\x8e\x3f\xee\xb5\x2c\x5d\x4b\x39\x67\xcf\xa6\x5c\x13\x6a\x48\x8d\x78\x3d\x43\xce\x21\x39\x56\x74\x6e\xdd\x37\xd8\x07\xd8\xe7\xdb\x27\x59\xe0\x07\xa0\x1b\x4d\x72\x24\x3b\xf7\xd4\xfa\x0f\x8b\xd3\x8d\xfe\x42\xa3\xd1\x68\x34\x80\x2e\x76\xbb\x65\x59\xf5\xab\xfc\x49\x7e\x9c\xef\x8a\xba\xd9\x54\x7d\x9f\xf7\xd5\xe6\xea\xf1\x75\xdb\x0f\x55\x99\xbf\xac\x07\xfa\xdd\x7d\xac\x57\x55\x96\x5d\xb7\xdb\x8a\x40\x5f\xd1\x9f\xac\x2c\xfa\xeb\xcb\xb6\xe8\x4a\x4a\x78\x6e\xdf\x59\xf5\xfb\x6e\xd3\x76\x0c\xf4\xb3\x7c\x65\xd7\xd5\x66\xc7\x65\xe8\x4f\xd6\xd7\xeb\x66\x59\x37\xf4\xf3\x9c\xbe\xf2\xd7\x8d\xa4\xb4\xfb\xc1\x92\x4e\xf7\x83\xa4\xed\x77\x96\xf4\xcb\x2e\xeb\xaa\x75\x4d\xbd\xe9\x28\xe9\x9d\x7e\x66\x37\xd5\x65\x5f\x0f\xdc\xd2\x5f\xe4\x2b\xfb\x58\x75\x7d\xdd\x72\xed\x7f\x96\xaf\x6c\x57\xac\x19\xe0\x8c\xfe\x64\x43\xb5\xdd\x6d\x0a\x14\xb8\xd0\xcf\x6c\x53\x34\xeb\xbd\xc0\xbc\xd1\xcf\x6c\xd5\x55\x94\xb5\x6c\xaa\x1b\x4a\x7d\x86\x1f\x8b\xc5\x22\xdb\x13\x12\x96\xbb\xae\xbd\xaa\x37\xd5\xb2\x68\xca\xe5\x56\x86\xf9\x0b\xa5\xe7\x9a\x9e\x53\x7a\xce\xe9\x18\x42\x55\xd2\x50\x97\x45\xaf\xe3\x20\x5c\xd2\xc8\x8b\x3e\x43\x55\x4d\xb1\xb5\xd2\xfc\x99\x55\xdb\xa2\xde\x30\xd6\xf8\x2f\xf5\xbb\xef\x6f\x5a\xa0\xf6\x4c\x3f\x09\x07\xcb\xe1\x76\x57\x01\x05\x8f\x2f\xe8\x2b\x5b\x15\xbb\x61\x75\x5d\x70\x37\xe5\x2b\x23\xa0\x5d\x4b\xb8\x68\xbb\x5b\xc0\xd9\x8f\xac\xed\xd6\x45\x53\xff\xbd\x18\x04\x3f\xa7\xee\x67\xb6\xad\xbb\xae\x65\xd4\x9e\xe0\x23\xa3\x91\x2f\xb9\x1e\x4a\x79\x4b\x48\x70\xb5\x70\xce\xb6\x5e\x77\x82\x45\xce\x3c\xc1\x2f\xae\x85\xf3\xae\xda\xee\x83\x66\xbc\xe0\xcf\x51\x51\xea\x84\xe6\xa6\xed\x17\x0d\xe1\x5d\x73\x4f\xf0\x23\x01\xe8\xb3\xa2\xdc\x12\x26\x77\x45\x53\x31\x8a\x8e\xf9\x17\xe1\x85\x7e\x65\xc5\x6a\xd5\xee\x9b\x61\xd9\x57\xc3\x50\x37\x6b\xc6\xf5\xb1\x24\xe5\xe7\x9a\x94\xb9\xbc\x90\x76\xdb\xee\xc3\x6c\x52\xfa\x5f\xe9\x67\x7e\x26\x3f\x25\xcf\x15\x42\x66\x28\xc9\x23\xe9\x97\x57\x55\x55\xca\x58\xfa\xfc\x05\x7d\x67\xbb\xfd\x66\x43\x58\xfb\xdb\xbe\xea\x07\x2e\x74\x46\xbf\x69\xfc\xf2\x3b\xab\xfb\x9e\x3e\x28\xf9\x35\x3e\x32\x9a\xba\x66\x85\xc1\x3c\xc3\x47\x96\xfd\xda\x57\x45\xb7\xba\x7e\x9f\xc9\x5f\xf4\x95\x3f\x98\xf4\x0e\x4d\x2a\xd3\x91\xd2\x90\xb4\x60\x0d\x64\xab\xb6\xe4\x1f\xcf\xe8\x0f\x55\x5d\x37\xfd\x50\x6c\x36\xef\x33\xfd\x60\x30\xf9\x92\x09\x18\xea\x01\x58\xd0\xc4\xfc\x7c\xa8\x76\x3d\xcf\x60\xfe\xa2\xee\xfa\xe1\xf1\x50\x13\xad\xbe\xdb\x37\x59\xd9\xae\x3e\xd0\x2a\xe0\x15\x8d\x96\x5f\x5f\xe5\x84\xac\x47\xb4\x0e\xba\x7d\xd3\x10\x7a\xf2\x97\x2d\xa1\x8c\x9a\xa9\xa9\xfd\xe7\x80\x3e\xca\x77\x9b\xaa\xe8\x09\xa4\x2a\xca\xfc\x87\x22\x1f\x8a\x6e\x5d\x0d\x4f\x1e\x2c\x2f\x69\xf5\x7d\x78\x90\x5f\x77\xd5\xd5\x93\x07\x0f\xfb\x07\x3f\xbe\xdc\x53\xb1\x4d\xdd\x54\xfd\x0f\x5f\x17\x3f\xe6\xab\x82\x72\x08\x8d\xb7\xf9\x65\x75\xc5\x8b\x8d\xda\xca\x89\xca\x9b\x35\x2f\xb4\xdb\xe1\x9a\x1b\x24\x4a\xa0\x8f\x3e\xe7\x95\xfe\x45\xc6\x13\x40\x9c\x60\x59\x5e\x1a\x57\x43\x87\x90\xdc\xd1\x04\x9c\xdc\x9e\xff\xeb\x9b\xa3\xfc\x8c\x58\xdb\xba\xab\xf0\x4d\xff\x51\x89\xef\x72\x1a\xed\x45\xfd\xfc\xe9\x22\xa3\xb2\x86\x90\xe7\xc5\x50\x5c\x72\xdf\xc3\xec\x73\xa6\x2c\xc2\x90\x87\xa5\xc8\xcc\x12\x8c\xb1\x1f\x92\x69\x99\x5b\xc8\x54\x87\xae\xfe\x50\xc7\x5b\x66\x01\x94\x1e\x30\x7b\x26\x38\xa3\xaa\xf2\xd7\x6f\xdf\x9e\x3e\x7f\x9a\x57\xcd\x9a\x30\x93\xdf\xd4\xc3\x75\xbe\x1f\xae\xfe\xfb\x72\x5d\x35\x55\x57\x6c\x96\xab\x9a\x91\xd2\x11\xc1\xe6\x84\x25\x19\xe2\x22\xeb\xfb\x0d\x71\x28\x50\xc1\xf9\xf9\x9b\xfc\x84\x29\x61\x57\x0c\xd7\xe8\xc8\x70\x9d\xf5\x7f\xdb\x30\xa2\x42\x83\x17\xd7\x55\x8e\xc5\x00\xa0\xf6\x6a\x8c\x97\xbc\xd4\xbe\x2e\xb2\xaa\xeb\x96\xc4\x40\x87\x5b\x46\xb3\xd6\x79\x08\x5a\xaa\x23\x6a\x6f\xda\x81\xa6\x31\x47\x39\xa9\xa2\x6e\x3e\x16\x9b\xba\x24\x64\x47\x84\xa4\x65\x91\x58\xb6\x34\x6f\x5c\x9a\x28\xb3\xbd\xc1\x50\x8b\x15\xf1\xff\x3e\x7f\xb0\x78\x00\x86\xfb\xe0\xf1\x83\x45\xd6\xb4\x4b\xe1\x12\xcc\x9a\xcb\xba\x2f\x2e\x89\x4d\xcb\xb6\xd1\x19\xd7\xfb\x2b\xd3\x8f\x74\x45\x21\xf2\x04\x82\x71\xcb\x5b\x11\x76\x00\x26\xae\x82\xf8\x35\x98\x8d\xb2\x19\x3f\x76\xe3\x49\x61\x7e\x85\x2d\x85\x84\xc9\x98\x33\x9b\x30\xa3\xae\xe3\xdd\x6e\x53\xaf\xa4\xe9\x97\x92\x17\x09\x8d\x37\x66\x45\x8a\x87\x03\xa1\x58\x9e\x23\x17\xea\x35\xb3\xad\x3c\xe1\xf3\x28\x7f\x5d\xd1\xca\xb9\xde\xaf\x65\x73\xda\xb4\xfb\xf2\x0b\x30\x14\x9b\xb9\xc8\x4f\xf2\x77\x2d\x75\x18\xd4\x11\x00\x62\x13\xc7\xc4\x18\x58\x16\xe8\xaa\x6d\x3b\x30\xe2\xb4\x58\x4d\xd3\x73\x53\x53\x26\x8d\xb4\x2f\x3e\x12\x5b\x1c\x5a\x59\x92\x25\x2d\xb9\x15\x57\x4c\x1c\x6c\x4f\x1b\xba\x2c\x0b\xe2\x23\xb2\x34\x2c\x2d\xa5\x41\x40\x6d\xf7\xb4\x9a\xae\xa9\x32\x46\x3c\x0b\x24\x54\xe5\x5c\x3f\x31\x24\xaa\x07\xab\x9c\x56\x6e\x4b\x9b\x27\x4f\xf4\x73\x7c\xe8\x6f\x5f\x3f\xf5\xaa\xb8\xba\xa2\x5e\xf5\xb4\x2a\x5e\xe5\xab\x4d\x4b\x4b\xea\x97\x77\x6f\x7a\x5e\x30\xd7\xcb\x5d\xdb\x41\x10\xa1\xac\x33\xfa\x0c\x69\x0e\xd1\x0c\xd1\xec\xb7\x97\xf4\xeb\xe6\xba\x26\x46\x0d\xb4\x73\x09\x16\x92\x28\x95\x9a\xd8\xf7\x34\x85\x47\x39\x2d\x61\x1a\x01\xa1\x0c\x04\xc0\x63\x30\xaa\x63\xf0\x2b\xa2\xb1\x7d\x47\xcb\xe9\x7a\x18\x76\xd6\xf2\xab\x8b\x8b\x33\x69\x3a\xa4\xde\xd5\x76\xe1\x28\x03\x73\xb0\x61\xd1\xa8\xc9\xdb\x66\x01\x22\xd9\x77\x9b\x11\xfd\xd0\x58\x2d\xe7\x00\x5e\xb8\x0b\x5f\xf3\x7f\xe7\x11\x3d\xc0\x73\x4f\x42\xdf\x0d\xa8\x89\x70\x0c\x71\x85\x68\xba\xdd\x71\xb5\x8e\xa8\x4f\x35\x21\x52\x32\x40\x43\x3e\xe4\x1b\xca\x84\x40\xe9\xf6\xe8\x2d\x0d\x57\x99\xe8\xf9\x09\x21\x01\x9c\x14\xa9\x57\x5d\xbb\xa5\xd4\x17\xf4\x27\x26\xc4\xce\x9f\x70\x7d\x80\x29\xca\x92\x78\x7c\x7f\x94\xbf\x7b\xf1\x2c\xff\x2f\xdf\x7d\xfb\xed\x22\x7f\x3d\xf0\x3a\x64\xd2\xfc\x37\x26\xa9\x42\x3b\x1e\x41\x89\x5f\x0d\x44\x75\x0f\x78\x5d\x3d\xc8\x7f\x40\xee\xff\xa8\x7e\x2f\x48\x3e\xac\x16\xab\x76\xfb\x23\xf3\xd4\x6d\x41\x2b\x9f\x73\x88\x58\x95\x8a\xcf\xab\xa6\xa4\x0f\x91\xd6\x34\xcb\xf1\x02\xcd\x76\xb2\x9b\x08\xad\xcb\x55\xdb\x5c\xd5\x1d\x8f\xe7\xe7\x06\xa4\x60\xe2\x2c\xed\xd5\xc8\x31\x91\x88\x50\x46\xec\xa3\xbe\xba\x8d\xa0\x18\xe9\x5b\x4e\xd4\xd9\xcc\x84\xe4\x96\x2a\x9e\x07\x1c\x9f\x0b\x25\xf2\xa4\x9d\xd2\xe8\x3a\x43\x77\x1f\xf1\xdd\x5e\x5d\xf1\x46\x6b\x5b\x84\xb6\x70\x2a\xa9\xb2\x5b\x78\x10\xa2\xc4\x1d\x04\xf2\xe7\x4a\xc1\xcf\x9e\xbf\xcd\xab\x8f\x44\x6a\xcc\xf2\xba\xb6\xdc\xaf\x40\x5e\x0c\x7b\xc4\x9c\x9a\xf8\x43\x4f\x0b\x63\x25\x9b\x8a\xe3\x10\xdc\x35\x66\x43\x2b\x02\x22\xc6\x60\x9c\x9a\xa4\xc8\x8f\xc4\xf6\x3b\xd7\xc4\x4b\x4b\xd2\xde\x4f\x60\x27\x9d\x0a\x25\x78\xe4\x2b\x9a\x70\x22\x0a\xe9\x45\x2f\x9d\x92\x6c\xa2\x75\x22\xe2\x3d\x9d\x4e\x8a\x92\xfa\x72\x79\x0b\xa6\xd3\x33\x2d\x94\xd5\x55\xb1\xdf\x0c\xb1\x5f\xa3\x1d\xc4\x5a\x3a\xe7\x03\x92\xcf\x9b\x2d\x30\xe9\x20\x88\xa7\x1f\x97\x25\x2a\x6c\x48\xc8\x91\x9d\x86\xc9\x55\x4e\x20\xb6\xe9\x10\x6f\xaa\x30\x3d\xcb\x28\xef\xeb\x7c\x99\xd8\x9f\xe6\x87\x66\xdf\x89\xd8\x93\x63\x9f\xe5\x1a\xad\x02\x96\x13\xe6\xfb\xb2\xc8\x54\x56\x5a\xea\x51\x6d\xf9\xb1\xc6\x41\x28\x90\xab\x54\xa9\xc7\x37\x66\x6a\x7f\x66\x00\x3e\x61\xf5\xb3\x65\x43\x6f\x4e\x79\x90\x7d\x38\x08\x09\xce\x79\xb8\x68\x81\xe5\x37\x9a\xa5\x8f\x35\x78\xbc\x12\x0c\xf0\x42\x54\x83\xa6\xa9\xa9\xbe\xaa\x50\x03\x95\xff\x9a\xea\x44\x99\x85\x9e\x0e\x54\x60\x37\xb9\x8f\xf7\xfa\xb2\x85\xe0\x80\x8d\x84\x4a\x1b\x5a\x47\x9b\x7a\xde\xd5\xeb\x6b\x62\xac\xed\xcd\x91\x20\xe5\xe6\xba\xad\x78\xfd\xbc\x7e\xfe\xe4\x1b\xe9\xc7\x9a\xb7\x95\x50\x88\x37\xa4\x62\x4f\xc4\x45\x18\x53\x32\x96\x2e\x84\x8d\x1d\x90\x93\x73\x88\x00\x8d\x0f\x7e\x13\x39\x22\x30\x0d\xe5\x15\x3e\x4f\x99\x44\x84\x91\xd2\x76\x78\x94\x86\x85\x29\xa9\xac\xbf\x5c\xb7\x38\xc4\x98\x6c\xcf\x3b\x25\x1d\x85\xfb\x61\xb9\xae\x87\xe5\x15\x73\x2e\xae\xf8\x05\x57\xc0\x1b\x37\xe5\xe4\x8f\x28\xeb\x51\x4e\xdc\x8f\x4e\x66\xe5\xf7\xf9\xc3\x8f\x2a\x2d\x7e\xc7\x2c\x69\x49\x8b\xa8\xde\x60\x46\xf4\x68\xd4\x55\x22\xac\xda\xf1\x3b\x48\x6c\xfd\x7e\x87\x7d\x4d\x85\xc3\x70\x12\x28\xdb\x9b\x86\x17\x1f\x58\x2f\xb1\x99\x7a\x55\xd3\x86\x71\x59\x37\x05\x6d\xee\x56\x0b\x58\xfa\x43\x22\x89\xb7\xa7\x17\x00\x5c\xb7\x97\xfb\x7a\x53\x1a\xc0\x22\x33\x01\x92\xc4\x47\x9d\x7c\x2f\x52\x5b\x52\x2d\x7d\x59\xb5\x1d\x4b\x23\x18\x8d\x15\x3c\x20\x06\x75\x2c\x5e\x20\xb9\xe6\xb3\x0c\x60\x51\x2e\x48\x2c\x8c\x06\x9a\x7d\x1c\xd3\x58\x9e\x01\xd9\xd4\x7d\xf3\x68\x40\x4f\x57\x7b\x6a\x8b\x66\x9e\x93\xa9\x60\x9f\x3f\xfe\x91\xfe\xcf\x58\x3a\x92\x0d\x60\x3d\x45\x3c\x67\xe6\x92\xb9\x97\xa5\x98\x74\x35\xa1\xf1\x30\xd3\x46\xc1\x6e\xac\xbe\xbf\x46\x02\xfd\x5e\x88\x96\x35\x25\x1b\x9a\xd6\xea\x0b\xfa\xe0\x53\xdb\x7a\x83\x49\x28\x06\x3d\x5a\xb5\x84\x37\x26\x90\x23\x59\x33\x57\x34\x34\x66\xa5\x43\xf1\xa1\xc2\x69\x8c\x36\xfc\x5f\x59\x05\xf4\x3e\xdb\x8b\xfc\xd9\x6e\xca\x70\xd6\x01\x61\x13\x63\xa9\x12\x0d\x46\x84\x09\x34\xdb\x93\x9c\xbd\xba\x5e\x06\xfd\x11\xe3\x64\xa8\x7e\xc7\xd6\x8f\xac\xa8\x4e\x62\x82\xe7\xac\x6c\x7b\x8b\xd9\xe2\x31\x9c\xdc\xc6\xc9\x22\xe1\x93\x96\x09\x9d\x63\x2f\x5b\x46\xda\xc7\x2a\x40\x3d\xf3\xa9\x69\x01\xaa\x8b\xc4\x64\xad\x2a\x55\x34\x50\x96\x68\x43\x34\x57\x34\x22\x7d\x06\x46\xa6\xca\x2f\xf0\x3b\x9a\x4e\x3d\xd4\x2f\x68\x5e\xa0\x31\xb0\x96\x89\x2b\xde\xca\xb2\x70\x6d\x66\xbf\xaa\x62\xec\x7d\x66\x70\xef\xd2\x7c\xe2\x28\x74\xfa\x8f\xca\xa7\xa5\x4d\xae\x29\xa1\xa0\x38\x51\xa6\x12\x05\x8a\xeb\x6a\xc7\xb2\xc7\xb6\x07\x55\x6c\xf8\x90\x7d\xab\xa2\x73\xa0\x8f\x9f\x84\x5d\x13\xc1\x10\x93\xfb\x22\xeb\x5b\x5e\x6f\xcb\xcf\xac\xe2\x69\x4d\x94\x80\xf2\xe9\x56\x27\x5a\x31\x92\x70\x79\xfa\x68\x91\xdd\x1e\xa5\x87\xaa\xeb\xa2\x27\x16\x4e\x92\x82\x16\x2b\x17\x76\xb8\xe5\x69\xa7\xa3\x1c\x96\x0c\x34\x79\x20\x72\x29\xd9\x76\xe3\x3d\x98\x7b\x28\x5c\x4e\x5b\x09\x92\x13\xe4\x22\x2f\x3e\xcd\xb4\x49\x08\xdb\x56\x2c\x39\x2f\xb7\xa2\x41\x93\x5f\xf9\x49\x95\xd1\x66\xb8\xa6\xf5\x6c\x04\xfb\x84\x15\x1f\x6b\x1c\x30\x94\x5e\x19\xa0\x1a\x3c\x1b\x56\x08\x4b\xf9\xc9\x34\x96\xc4\x18\x6e\xa0\x15\xa2\xa5\x3d\x41\x3f\x6d\x58\x94\xbd\x30\xb6\x2e\x12\x02\x04\xbd\x9e\x98\x45\x44\xe2\x71\xce\xaa\x47\x0f\xa5\x42\x6b\x18\x15\xc3\x33\xcf\xf8\xe1\xf2\xc7\x87\xfd\x0f\x5f\x5f\xfe\x18\x38\xeb\xea\xba\x5a\x7d\x10\xf2\xab\x9b\xcb\xf6\x77\x1c\x69\xa1\x22\xa1\xd3\x34\x2f\xb1\x87\x65\x4e\x47\xdc\x0e\x27\x2a\xe2\x04\x54\x8c\xf0\xce\xb9\xc9\x9c\x51\x5f\x98\x61\xd0\xbe\xb6\xc2\xa2\x02\x7d\x47\x7a\x3c\xe6\x54\xa6\x48\xb0\xff\x48\x92\x18\xc7\xa6\xde\xd6\xc3\x84\x24\x98\xbf\x14\x4a\x5a\xaa\x25\x33\x1c\xa1\xae\x38\x4a\xe2\xd2\x54\x0d\x6d\xaa\x46\x26\x37\x05\x1d\xa1\xbe\xcb\x89\x34\xf6\xb4\x3b\x71\x67\x69\x3c\xc4\xa6\x0b\xde\x95\xe9\xf8\x54\xf4\xcb\x7d\xa3\xe8\xaa\x4a\x23\x92\x57\x35\x36\x0f\x6e\xd7\x48\xd9\x41\xa5\xc7\x80\xfc\xcb\x80\xc9\xaf\x16\xaa\xd4\x42\x29\x66\xe8\xdc\x9f\x9a\x65\xd6\x62\x6e\x4e\x88\xdf\x35\x95\x9c\x79\x31\x7e\x06\xe3\xe9\xa3\x83\x53\x9c\x14\x3a\x7d\x7d\xa0\x14\xe0\xf9\x72\x3f\x0c\x2d\x9f\x48\x36\x4c\x0b\x52\xc6\xfa\xfc\x0c\x80\x38\x62\xc5\xfa\x30\x99\x63\x2c\xe9\xa1\x0a\xdb\x71\x8f\xf5\x2c\x7a\x6d\x3e\xc8\xa5\x43\xd3\xed\x2f\x40\x95\xa2\x41\x2a\x9a\xdb\xa8\xd4\x40\x1f\xb8\xb9\x61\xbe\x27\x5f\x76\xd5\x57\xb1\x2f\x61\x1d\xa0\x84\xf6\x47\x4a\xbb\x25\xf2\x0e\x99\xa2\x57\xb5\x85\x64\x9b\x99\x6a\x27\x23\x69\x74\x29\x6a\x91\xcf\xd4\x4e\x3c\x93\xc4\xc9\x12\x58\xa6\x41\xa0\xf4\x62\xd4\x56\x3c\x09\x4e\xd1\x37\xa4\x3d\x8e\x9b\xd2\xd0\xb6\xcb\xfe\x5a\xce\xdc\xd6\x3d\x3a\xaf\x37\xeb\x44\x59\x85\xbb\x10\xd0\xdb\x7f\xe5\x9d\x8f\x07\xfa\x3e\xd3\xa9\xa8\xdc\x7a\x50\x42\xb5\x1c\x9b\x32\x59\x16\x01\xde\x84\xb4\x3f\x57\x1d\x1f\xeb\x00\x94\xcc\xd5\x21\x24\xa6\x63\x08\xdc\x30\xee\xea\xef\xfc\xda\xd5\xe4\xab\xfd\xe6\x28\xbf\x91\xed\x3e\x96\x09\x47\x4a\x15\x04\x98\x2a\xe5\xde\x86\x86\xd7\x96\x05\x8d\xef\x16\x7a\xea\xbf\xd2\x9e\xd4\xe0\x06\xa0\xcd\x28\x43\x0a\x9d\xe0\x83\x40\xf9\x4c\xfc\x3e\xe3\x4d\xff\xed\x48\x9a\xe5\x4d\x4d\xd3\x9c\x44\x85\xac\x9f\xfd\x0d\x47\x18\xf3\xd9\x8c\xe0\xfb\xae\x8a\x17\x1d\xf8\x0a\x83\x3f\x3f\x7f\x75\x61\x87\xdc\xf3\x57\xf9\x87\x4a\xeb\x7e\x35\x0c\xbb\xfe\x17\x68\x3b\x44\x75\xc1\x7a\x8e\xb3\xe2\x96\xa5\x4c\x49\xd6\x1f\xc8\xb8\xa8\x8a\xad\x76\x92\x3f\xa5\x8a\x63\xda\x7f\x35\x91\x3f\x69\x5b\x76\x5a\xb4\x0c\xf2\xd6\xcf\x89\x98\x2d\x84\x1f\xce\x3c\x95\x5e\xa2\xfc\x36\xd1\xfc\xfd\x96\x15\x9b\x1d\x1d\xcb\x58\xe0\x71\x60\x50\x72\x5d\xea\xe9\x2c\x07\x08\x08\x7d\xbf\x25\x02\x59\xe1\x34\x4a\x05\xbe\x7c\xbc\xfc\xca\x29\x3d\xd3\xca\x4a\x5a\xff\x7f\xa8\x42\xfe\x66\xa1\xd8\xd7\xdb\xd7\x7f\xb7\x51\x24\xd5\x71\x3a\xf1\x52\x82\x80\x08\x1a\xa1\x02\x10\x36\x72\x16\x47\x07\xd6\x79\x51\x02\x89\xbc\x49\xd5\xdb\xe2\xf7\xfb\x0a\x6e\xdb\x99\x72\xc2\xe5\x62\x21\x63\x66\x3a\xc4\x64\xf5\x10\x38\x2b\xb5\x0e\x02\xd3\xc4\x13\x48\xdd\xac\x36\xfb\xf2\x60\x47\xfa\xfd\x25\x2d\x24\x16\xa5\x1f\x3d\xec\x1f\x71\x95\xcd\x07\xda\xb4\x9b\x00\xff\x8b\xfc\xce\xf1\xfb\x7b\xbb\x81\xa3\xb3\xae\x9e\x2f\xf2\x70\x17\x47\xb2\x47\xc9\xfb\x07\xce\x09\x8b\xc8\x7a\xfc\xd9\x21\x10\x3f\x14\x16\x7a\xb6\x0b\xeb\x9f\xb5\x14\x38\x46\x11\x01\x2e\xe2\xad\xe1\x92\x65\x80\x25\xcb\xe4\x8d\x97\xbc\x99\x5f\xda\x0e\x0b\x29\x01\x10\x72\x79\xb4\x9c\x96\x1b\xad\xce\x83\xc5\x49\xd2\x99\x29\x7d\x3a\x55\x33\x1f\x28\x3f\xd0\x02\x9b\xa9\x20\xac\xbb\x83\x05\x65\xee\x51\x88\x46\x5e\x8e\x19\xc7\xb4\x1c\x43\xd1\xa1\x70\xb3\xa9\xd6\xac\x8f\xb4\x76\x93\xc6\x74\x9e\x69\x5b\x14\x30\x4f\x6e\x11\xc1\x61\xae\xfc\xb4\xfa\x23\x4e\x98\xa2\xf4\x70\xc9\x8a\x1a\xaa\xaa\xc3\xc5\xaf\x3b\x62\x6a\x37\x74\x9b\xd8\xf2\x69\xaa\xdf\xf3\x2e\xc5\x27\x2f\x11\xbe\xd2\xc9\x60\xf9\x03\x55\x55\x68\xe2\x70\xf5\x44\x8a\xcc\xd5\xef\xab\x1f\x60\x9f\x59\xb5\xd7\x48\x4c\x2b\xd6\xca\x03\xd0\xa1\x6a\xc3\x71\xb9\xfa\xbd\x86\x72\xf7\x65\xfd\xb1\xd2\x03\x73\xd0\x13\x20\x6f\x91\x6d\x88\x75\xf0\xc9\x4c\x46\x25\x52\x7a\xfb\x91\x17\x23\xb7\xc7\xb9\x52\x4e\x94\xbd\x3a\x28\x9e\x67\x3d\x7a\xe3\x82\xa8\x2a\x8f\x48\xd8\xe1\x12\xd4\x4f\xac\xed\x62\x73\x53\xdc\xf6\x50\x23\x19\x7f\x62\xb5\xb6\x14\x67\xe6\x43\xa2\xd0\x1a\xbd\xf2\x97\x27\xb4\xe0\x0c\x13\x7c\x0b\xc0\x3b\x4d\x90\x58\x6e\x70\x78\x06\x73\x51\xc5\xd4\x47\xb7\xa7\xeb\xc6\xc4\x07\x7f\x3e\x26\xf3\x09\x46\xb2\x5d\x45\xb8\x95\xd4\x7d\x62\xa6\xec\x11\x8b\x89\xd4\x0c\x8b\x6d\xc4\xbd\x05\xd7\x24\x05\x13\x66\xd1\x25\xa7\x49\xd9\x53\xfd\x8f\x45\xec\xaf\x09\x87\x7c\x8a\x8c\xca\x05\xde\xc8\x68\x56\x4c\xf9\x2f\xe9\x50\x0d\x64\xfd\x40\x4b\x80\x31\x6d\x57\xfd\x7f\x75\x42\x4b\x8e\x5c\x2c\x31\xa0\xa9\xbf\xae\x77\x79\x0b\x9d\xb2\x47\x61\x24\x5b\x27\x68\xf3\x35\x47\x85\x63\x05\xeb\xd6\xbb\xa2\xe9\xaf\x2a\x28\xd9\xb7\xf9\x15\xdf\x26\x2f\xb4\x69\x96\xdb\xe5\xca\xff\x40\xcb\x72\x42\x43\xd3\x7e\x6f\xc1\xdc\xb9\x89\x4a\x9b\x96\x3b\x17\x68\x72\xd1\x07\x60\x35\xd6\xd4\x5b\x1f\x98\xcc\x26\x28\x80\xf8\x9c\xdc\xa0\x59\x6f\x3e\x56\x1e\x11\x57\x7f\x74\xe4\x0e\xeb\x7a\x8f\x20\x57\x2f\xe9\x34\x51\x8a\xb4\x2b\x5a\x52\x56\x50\x27\xa3\xe7\xa2\xee\x56\x9d\xd6\x48\xa5\xad\xf0\xc2\xe0\xb5\x32\xaa\x10\x3a\x9c\x78\x62\xca\xe4\x06\x7e\x79\x49\x5d\x5c\x5d\x27\xab\xf3\x02\x39\xb9\xe4\x4c\x16\x68\xf6\x2b\x37\xfd\x3e\x93\x3b\xf8\x65\xd0\xd8\x3f\x93\x3b\x79\x11\x7b\x55\x03\x3f\xe4\xa6\xa6\xe7\x6b\x14\x2b\x22\x4a\xf9\x3b\x4b\xf2\x2e\x6c\x1a\xd3\x7f\x6b\x49\xe2\x80\xe2\xfd\x9f\xe9\x8b\x0f\x02\x4d\x96\x5c\x3c\x8e\xb4\x28\x90\xb5\xeb\x81\x57\xd8\x19\x2d\x0c\x12\x7a\x8e\x35\x85\x0e\xf1\xe0\x0e\x50\xec\xbc\xb0\x6f\x9a\x8f\x82\x99\x1e\x2f\x6d\xf9\x52\x38\x51\xb2\xbd\xb0\xef\x8c\x75\x00\xdb\x05\x36\x07\x16\xd2\x71\x87\xe1\xb6\x04\x16\x16\x78\xda\x2c\x6f\xe1\xe0\x77\xc5\x40\x6c\xb1\x91\xb3\x9a\x70\x28\x5f\x54\xb3\x43\x15\xe1\xa6\x9b\x6b\x61\xab\x10\x41\xc5\xfb\x2c\x1a\xab\x98\x9d\xca\x9c\xce\x58\x59\x4c\xaf\x02\xf2\xbf\xd0\xa7\xea\x7b\xc0\xbe\xf0\xa1\x07\x76\xdc\x31\xdb\xc5\x20\x0c\x67\xdc\xcf\x4c\x35\x64\xa9\x7a\x4c\xc9\xfb\x49\xfe\x5c\x3e\xec\xe8\xbf\xaf\x31\xa6\x9a\x8e\x11\x3b\xe0\xdd\x99\xd6\xe8\x44\x84\x4e\xab\x05\x55\x54\xd3\x77\xd3\x13\xab\x54\x02\xba\xb5\x8b\x23\xc8\x00\x7c\x6f\xe1\x4e\xae\xac\x79\xc6\x91\xb6\x71\x97\x62\x7c\xd5\xc3\xc7\x70\x02\xbb\xa9\x2e\x73\xd6\x05\x13\xdd\xd0\x09\x51\xc7\xb9\x2d\xe8\x70\xf9\xb1\x2e\x82\xda\x89\x26\x8b\x6d\x77\x74\x13\x7d\xc1\x76\x3b\xb8\x65\x9f\xda\x97\xf1\xad\x95\x5e\x04\xbd\xd1\xcf\x6c\xbf\xe3\x9b\x15\x37\xde\x5f\x90\x10\xc6\x9b\xe6\xbb\x43\x1b\x46\x6e\xc5\x82\x6a\x47\xc0\x4b\x77\x8a\xe3\xeb\x05\x5d\x3d\x33\x76\x63\xba\x82\xca\x31\x48\x54\xc0\x80\xc3\xa8\xd5\x0c\x90\x29\x17\xbd\x18\x3e\x6d\x8c\xf9\x75\x7b\x93\x6f\xea\xe6\x43\xaf\xd8\x64\x36\xe6\x0f\xb0\x50\x58\x11\x0d\xee\xc5\xa0\x48\x3e\xa7\xf6\x4b\x76\x05\x35\x5a\xe0\x76\x51\x25\x97\x71\xc7\x48\x9e\x85\x8d\xc7\x78\xbb\x2c\xbb\xaa\x58\x48\x06\x4f\xb3\x8b\x3d\x1a\x65\xdb\xf6\xaa\x1e\x8d\x3c\x84\xd3\xa0\x75\x51\x28\xc5\x79\x80\xd0\x29\x39\xb6\xeb\x44\x2c\xa9\xcc\x2e\x00\xad\x03\x58\xa0\xcb\x7a\x2b\xe6\x80\xbf\xd8\xf5\x20\xe6\x27\x9c\x25\x90\x0d\x6b\x93\xb4\xf7\xfe\x52\xe4\x6d\x6b\x97\x8f\xc6\x0c\x2d\xf3\xc8\xf6\x7c\xc1\x00\x76\xec\xa4\xb3\x63\xfa\xd0\x0a\x4c\xbf\x7f\x0f\x99\x18\x11\xf8\x0b\x23\x99\xf8\xc0\x1f\xda\x4d\x22\xd9\x3d\xd3\x9b\x8a\x90\xcf\x98\x75\xf9\x6f\x71\xb5\x17\x34\x0f\x7c\x18\x5f\x8e\x40\xf4\xb0\x9e\x40\xce\x0a\xd0\xd6\xd6\x41\xe1\x79\xd4\xfb\xc9\x5a\xb1\x72\x37\x84\x05\x3f\x70\xa5\xee\x72\x61\x06\x3e\xac\x67\x95\x7b\x42\x58\x62\x88\x35\x4a\x83\x4b\x46\xa9\x82\x50\x05\x9e\xd3\x87\x53\xc5\xb1\x30\x1f\xbe\x1d\x10\x6b\xc4\x90\xaf\x06\x89\x09\x8f\xaa\xcc\xaa\xc1\x73\xb1\x5d\x47\xc4\x41\xbb\x6c\xca\xcd\x26\xfc\x2b\xe1\x55\x60\x55\x2d\xee\xe8\x23\x8b\xa2\xc3\xa2\x56\xc5\xbc\x1e\x5f\x96\x12\x94\x48\x44\xc4\x2c\xe6\x6a\xb2\x32\xe6\x90\x2b\xec\x39\xf4\x91\x7e\x08\xd7\x92\xb1\x3e\xd7\x84\x51\xbe\x0d\x46\xb2\x0d\x6d\x33\xa3\x51\x91\xc3\x98\x6f\xdd\x88\x89\x44\xb8\xb4\x4b\xb8\x47\xfe\x1c\xec\x84\x26\x4d\x74\xd6\xc6\x4c\x7e\x1a\xb7\x1e\x67\xfb\xe7\x54\xdb\x2d\x63\x4b\x69\xfd\x8b\x8c\x7a\x04\x4a\x8c\x57\x9f\x25\xa6\x38\xd5\xa8\x31\x94\x87\x10\x9d\x4d\x48\x5d\x26\xba\x78\xa8\xd5\x3f\x47\xff\xce\x7b\xf6\x3f\x40\xf5\x9e\x34\x15\x55\xef\xa1\x93\xa3\x75\x30\x19\xe5\x74\x41\x50\x06\xc4\x07\xa5\x65\x27\x14\x28\x35\x07\xd9\x80\x5b\x91\x23\x09\xa3\x87\x92\x20\x41\x28\x25\x60\xeb\x60\xf9\x14\x76\x45\x30\x0a\x94\xf3\x49\x3f\xd1\x27\xa7\x73\x7e\x8c\x03\x18\x21\x45\x60\x61\xb8\x47\x1b\xb2\x08\xaf\x7a\xa0\xdb\x32\x1e\xe4\x62\x3d\xd8\x78\x4d\xee\xcd\x8e\xf4\xd4\x73\x5d\xaf\xaf\x69\x5c\xf5\x96\xef\x93\x41\x49\x76\x69\x19\x0f\xa5\xfc\x8b\x18\x49\xbb\x6e\x58\x61\xc5\x2d\x88\x51\x57\xd8\x58\x7e\xe8\x87\xae\x6d\xd6\x3f\x3e\x6f\xf9\xb4\xc8\x7a\x1c\xde\xfc\x7e\xfa\xe1\x6b\x4d\x27\x66\xc9\x53\xc8\x16\x80\x2f\xeb\xe1\xd5\xfe\xf2\x51\x9f\xaf\xd9\x24\x15\x77\x2d\x85\x33\x54\x55\x4b\x02\xb1\xb8\xbb\x69\x02\x5a\x60\xb6\x4a\x6b\xbc\x6f\x37\xb4\x40\xd2\x22\xed\x76\x2b\xd3\x4b\x8c\x7f\x2b\x90\xe8\x3f\x8c\x0f\xaa\x06\x98\xab\x3a\xc5\x0f\x55\xb8\x08\x24\x1e\xe7\x47\xa7\xcd\xa4\xbc\x44\x3b\xa2\x72\x16\x03\xe3\x3e\xb5\x19\xdc\x76\xc1\xaa\x91\x3c\x14\x83\x80\x30\x2d\x86\x89\x64\x65\xd3\x54\x31\x83\x03\x00\xea\xb0\xf2\x54\x94\x7a\x22\x92\x12\xa7\x59\x9b\x22\x23\x54\xac\xf8\x16\xd2\x72\xe4\xcb\x7b\x84\xa9\x6d\x21\xef\x86\x0e\x82\x60\x47\x2b\x5c\x79\x9a\x8c\x5e\x39\x9a\x8d\xc0\xf1\x34\xc5\x49\xe4\x6a\x63\x98\x84\xaf\x55\xc2\xd5\xac\x17\x9e\x9f\x89\xd5\x92\xf0\x34\x21\x49\x3a\x60\x30\xc7\xfe\x44\x7e\x36\x69\x37\x0e\xdc\x9a\xfb\x04\x9e\x86\x31\x1d\x03\x1d\x34\x16\xa8\x44\x74\xa6\xde\xa8\x02\x04\x19\x6c\xee\x1a\x0f\x3b\x6f\x5b\xbd\x36\xcb\x2d\x11\x73\x42\xa7\x9b\xa1\x4a\x16\x33\x77\x02\x06\x8a\x62\x83\x03\x9d\xca\x7f\xcb\xcb\x82\x38\xc1\xd0\x7e\x20\x62\x9a\x16\x41\xfa\xa1\x42\x81\xc3\xd8\x11\x43\xf9\xcb\x71\x64\x0f\xe3\x43\x87\xde\x3e\x1f\x64\x31\x8e\xb3\x68\xad\xc1\x0e\x4a\x14\x42\x30\xfe\x66\x6b\x91\x52\x38\x89\x32\x02\x35\xf6\x09\x1c\x80\x24\xab\x86\x81\xa0\xb4\xe5\x0f\xfd\xed\xa7\x25\xa9\xdf\x2d\x17\xe2\xdf\xfb\xc6\x31\x50\x21\x87\xa5\xa0\x22\x0c\xf2\x8c\x4e\x90\x30\x75\x3c\x96\x0a\x2f\x38\xbb\x57\x33\x5f\xbd\xc4\xb7\x22\x2f\x35\x11\x6b\x00\x80\x82\xf0\x3e\x20\x02\xbf\xa2\x32\xc1\x6a\x51\xfb\x0c\xb5\x62\xc4\x1c\x10\xd5\x19\xcb\xbc\x16\x7b\x8d\xfc\xf8\xec\x35\x6d\x19\xa1\x41\xab\xf4\xe7\x82\x24\x68\xe9\xc2\x4d\x50\x64\x30\xb1\x8d\x79\x6e\x90\xf5\xa5\xb8\xe9\x4d\x51\x12\x4b\x3c\x0c\x6a\x32\x20\x19\x4c\x9a\x2f\x38\xae\x7a\xa7\xdc\x91\xd6\xd0\x93\xf1\x6e\x15\x86\xfa\x05\x61\x36\xa8\x18\x79\x69\xed\x6e\x99\xff\x3b\xfb\xac\x42\x30\x74\x03\x0e\x3e\x32\x0c\x23\x48\x28\x38\x72\x5e\xc2\x5d\xe0\x1f\xd6\x61\xe5\x20\x7e\x2a\x3d\x1b\x99\x9d\xcc\xc8\x54\x66\x8b\xcd\x71\x96\x9d\xd5\x93\x8e\xf9\x3e\x3e\xc3\x84\x1f\x8f\xdf\x77\x70\x19\x3f\x2a\x47\xca\x67\xb3\xcd\x06\x8a\x96\xa6\x47\xfc\x26\x97\x8d\x50\xcc\x1b\xb8\x15\x39\x55\x28\x45\x38\xa3\x61\xaa\xe5\xa6\xda\xb0\xb9\xaf\xb6\x1e\xaf\x3e\x75\xe8\x89\x21\x80\x02\xb9\x13\x68\x15\xa5\x5b\x41\x85\xd7\xce\x59\x65\x04\x41\xcb\x0d\x77\xff\x72\x84\xb7\xfd\xfa\xd9\xf1\xdb\xb7\xa7\x17\x71\x9b\xe6\x75\xd0\x94\x24\x4c\x7c\x11\x4c\xe4\x26\xfd\x32\x43\xb9\x30\x81\x29\x44\x34\xd5\xd3\x12\x87\xe0\x3c\x9b\xb2\xda\xe9\x73\xdd\x82\xf7\xb4\xdc\x17\xe3\xe5\x49\xff\xcb\x43\xf3\x97\xfd\xca\xf2\xcd\xfb\xcc\x74\xdc\xa7\xfc\x37\xf3\xd7\x04\xee\x66\x06\x4b\x2f\x5e\xe0\x44\x5b\x7c\xea\x40\x5b\x4e\xae\x0d\xc0\xa4\xf7\x05\x8e\x44\x84\xfb\x16\x7b\xc5\x55\x8e\x8b\xee\x23\xd6\x82\xb6\x1d\x16\x0c\x23\x77\xdf\xd4\x7f\xdb\x43\x40\xe3\x03\x11\x31\x0f\xb6\xbc\xbc\xac\x37\xb2\xa1\xfc\x39\xfc\x90\x74\xfe\x1a\xd9\x8b\xbb\xc6\xe9\xd7\x0f\xfd\x8e\x0d\x57\x69\x6f\xe8\x9f\x3c\xd8\xd7\x39\x2b\xd5\xd8\x70\xeb\xc1\x8f\x74\x82\xe1\xeb\x6f\x9a\x3e\x82\xf8\x71\x52\x1d\xfb\x8c\xad\x44\x03\x17\x4c\x80\x40\xb7\x9a\xce\xab\x85\x25\xde\x44\xed\x27\x88\xff\x03\x6d\xb2\x83\x5a\x1c\xc7\x97\x7a\x3a\x26\x1c\x61\xed\x7e\x2c\x36\xfb\x54\x49\xc2\xad\x73\x99\xfe\xab\x0c\xc6\xf0\xb1\x2c\x6c\x7c\xe0\xda\xc8\x19\x44\x0d\x3f\x01\x69\xc3\xdd\x1e\x4e\xec\x04\xc9\xa2\xdf\x17\x19\x7a\xa2\x7a\xe7\xb1\xaf\x1c\xf2\xcc\xec\x9d\xf3\x60\xfb\x8e\xd4\x99\xd9\x70\x5e\x2d\xc5\x66\x10\x8d\x73\xee\x66\x93\x59\x0b\x06\x51\x79\x8a\xd1\x8b\xc1\xc0\xc1\xfa\x55\x57\xc3\x74\x5f\xd2\xd9\x31\x32\x77\x4e\x91\x21\x31\xb6\x7b\x4e\x74\x4f\x28\x5a\xac\xeb\x81\x8e\xda\xec\x9f\x05\x53\xef\x8c\xd8\x06\xed\x64\x70\xa9\x94\x2f\x4b\x99\x14\xe5\x4d\x5f\x60\xa1\x2a\x63\x51\x53\x57\x00\x7f\xe8\xef\x99\x52\x0a\x68\x0e\x9d\x7c\xe9\xd1\x2e\xeb\xa6\xe6\x85\xff\x9a\xfe\xd0\xa6\x2e\x47\x80\x94\x4c\x45\xbe\x45\x25\xaa\xd7\x91\xf3\x77\xa8\x47\x8d\xef\x74\x56\xd4\xea\xce\xcd\x8b\x5a\x87\xab\xe2\x1c\x68\x43\x42\xfe\x14\x09\xea\x48\x49\x3d\xa1\x59\xf8\x28\xe2\x90\xb8\x56\xbe\xb6\x94\x2f\xf9\x04\xf8\x55\x76\xc3\xf7\xbf\xa2\x8b\xfe\x8b\x7e\x42\x15\xbd\x2e\xfe\x2e\xa9\xe7\xe1\x07\xa6\xbd\x57\x42\xe8\x0f\x28\xa2\xc7\x97\xb9\x9f\xaf\x8f\x1e\xd7\x70\xb7\x5a\x9a\x4d\x9e\x96\x7c\xc9\x60\x0b\x21\xb1\x98\xc8\xd4\x45\xd4\x3c\xe5\x82\x8f\xa8\xb8\xca\xf9\xdc\xc3\x3c\xc5\xf4\x26\x45\xba\xcc\x61\x27\x7a\x49\xcb\xf4\xc1\x8f\x82\x6d\x5b\xe3\x56\xab\x4e\xde\x89\x7a\xa9\xba\xd9\x53\x88\x85\x2c\x64\x3b\x3b\xb3\xd9\x10\x9f\x4b\x55\x01\x34\x0f\x95\x6c\x03\x2a\x8a\x15\xce\x53\xe6\xeb\x97\xaf\x2f\xe0\x27\x43\x73\x0d\xd7\x06\x73\x06\x62\x2b\xe2\x45\xa8\x93\x77\x88\xba\xef\x45\x72\x68\x6a\x20\x9e\x57\xaf\x5d\xf4\xdb\x74\x10\x7b\x93\x93\xae\x56\xe6\x79\x5f\xac\xcd\xae\x27\x01\x63\x66\xcc\xaf\x25\x51\x0b\x72\x22\x8e\xd0\xe9\x4d\x8e\xd9\x53\x15\xde\x45\xcb\xaa\x0d\x97\x87\x71\xda\xfc\xbd\xa1\x30\x12\xe3\x4e\xca\x56\xae\x02\x7f\x82\x6f\x0e\x7b\x15\xa4\x8c\x09\x8e\xc1\x85\x9f\x5f\x6f\x10\x48\x7b\x21\x6f\xe5\xbb\xdb\x25\x2b\xa2\xb1\x7b\xef\x6e\x63\x82\x13\x73\x28\x83\xd0\xe6\x80\x83\x61\xc6\x19\x66\xf3\xff\xfe\xef\xff\xf3\xf8\x19\x0f\xef\xd9\xd0\x6d\xe8\x4b\xa5\x48\x86\x17\x74\x4b\x05\xf9\xe9\xbf\xd0\x69\xe0\x46\xad\x30\x7e\x91\xaf\xcc\x7e\x63\x49\x52\x7e\xaf\xda\x63\x7c\x64\xfa\x8b\x57\x66\xa6\x7e\xce\xbc\x24\x33\x3e\x8a\x29\x79\xd0\x31\xcc\x33\xd2\xbf\xed\xeb\xd5\x87\xa5\x68\x10\x9e\xe4\xff\xca\xbf\x72\xb8\xb8\xea\x5e\xc2\xfc\x29\x30\x1b\x10\xe1\x88\x63\x79\x6b\x60\x30\x60\x35\xc9\x8f\xcc\xa9\x48\xf7\xc6\x5b\xb3\x32\x34\x40\x76\xe0\xc9\x76\x7b\xb6\x3b\xe2\x89\xb7\xd6\xce\x28\x05\xce\x50\x9c\xc8\x92\x8c\xab\x21\x5c\x22\x26\x75\xa0\x79\xea\xae\xb8\xb2\xcd\x8a\x00\xc8\x8a\xea\x30\xb6\x2e\xbb\x2c\x68\xc8\x2a\x8e\x27\x3e\xc9\x81\x83\x2a\xe7\x1c\xba\x0a\x07\x0e\xfa\x93\x11\x63\x66\x53\x35\xbd\x9d\x64\x77\xce\xa1\xc0\x6d\x1c\xd2\xed\x6e\x92\xaf\x58\x8b\xb5\x56\x84\x93\xc6\x53\xfd\xcc\x28\x9d\x7f\x5f\xd0\x9f\x89\xe3\x35\xbb\x69\x4f\xdd\xb3\x37\xc5\x65\x85\xe4\x37\xf8\xa0\xb5\x40\x7b\xc3\x40\x33\x02\x95\x59\xf8\x91\x31\x4a\xea\x41\x08\x11\x5f\x99\xfa\x3e\xc8\x4d\xa4\x7c\x66\xb8\xe8\xe9\x0a\xb6\x04\x7e\x57\xdc\xc8\x4f\x42\x97\xfa\x6f\xbf\x92\x2f\x49\x86\x5d\xb9\x80\xc2\xac\x3c\xc0\x43\x98\xd4\xd5\x70\x66\xdf\x99\x75\x60\x31\xed\x88\xe5\x8c\xdc\xc7\xf3\xd5\x28\xff\x4a\x8e\xc4\x2f\xf8\x40\x6c\x69\x05\xb8\x77\x6e\x86\x6f\x21\x7d\x4b\x4b\x4a\x6e\x43\x4e\xe4\x2b\xe4\x94\x62\x6f\xfa\x1c\xbb\xa6\xa6\x99\x9d\xff\x29\xff\x0d\xa9\x44\x9f\x2a\x2f\xd1\xdf\x60\x33\x2f\xc1\x15\xf8\x2c\x2c\xfe\xea\x31\x79\x31\x9e\x0b\x97\xd5\xb0\x08\x72\x89\x6b\x27\x5a\x6a\xc8\xf7\xd9\x2b\xc2\x7f\xb7\x0c\xe5\x9f\xf1\xcf\x7c\x33\xa9\x25\x4c\xae\x9f\xdb\x51\x33\x1e\x86\x9a\x9a\x05\x93\xe6\x3c\xa4\xb4\xb8\x9d\x03\xa6\xf3\x4f\x93\xc0\x9e\x52\x82\x27\xad\xa4\x62\x96\xdc\x47\x35\x43\x98\x9f\x87\xa7\x8d\x91\xbd\xaa\x70\x9c\xd1\xcf\x69\x3f\x1d\x90\x74\xb3\x98\x01\x65\xad\x52\x84\xa3\x81\x8f\x81\x54\xf1\x19\xf8\xcf\x78\xf6\xe2\xfc\xd0\xd4\x8e\x27\x48\x32\x97\x24\x6b\xad\xaa\xe0\x15\x02\x20\xc8\x1c\x1c\xe9\x20\x69\x26\x54\xa6\x8d\x25\xf5\x01\xa1\x43\x71\x49\xd9\x0f\x4b\x60\x33\x14\x66\x5c\xc5\x2c\x41\x9d\x65\x2a\x73\xb1\x9a\x93\x2a\x7d\x1e\x89\x47\x4b\x11\x15\x05\x11\x41\x6c\xdc\xcc\x94\xb8\x93\xa2\xc6\x30\x07\x6b\x9e\xd0\x8d\x96\xbc\x63\x7a\x23\x04\xc7\x06\x38\x5c\xf5\x81\x72\x2a\x9f\x41\x2a\x9b\xe6\x2c\xd8\x75\x28\xf0\x4f\x76\xff\x96\x1f\xb3\xa0\xbd\x06\x3c\x21\x41\x9c\x77\xf6\xd0\xd5\x52\x55\x4c\x73\x85\x64\x96\xcb\xe5\xe5\xad\x96\x91\x79\x86\x47\xe6\x81\x22\x5b\xb6\x6a\xc1\x71\x4b\x8b\x9c\x84\x84\x99\x22\xbd\xba\x73\xb3\x3f\xf5\x34\x67\xc1\x1b\x13\xac\x5e\x98\x37\xf5\xb3\x20\x4c\xa5\x00\x39\xc5\xc7\x1c\x88\x28\x5e\x55\x75\xc2\xbb\x80\xb8\x2f\xd8\x15\xed\x6c\xc3\x6c\xca\x13\x4a\xbc\x81\x61\x4f\xf7\x09\xe5\xd8\x46\x96\xf9\xaa\xe8\xd9\x4f\x5a\x18\xae\xe2\xe7\x1d\xed\xc4\x02\xd2\xd0\xa4\x04\xaf\x24\xcc\x02\x81\xc8\x77\xfe\xf0\xd7\x6f\xde\xf7\x3c\x0d\xf1\x0a\xe3\xd7\x6f\xdf\xd3\xf9\xf5\xe1\xaf\xdf\xbd\xc7\xdd\xc5\xa4\xf0\xf2\x8a\x55\x77\xd3\x1a\x50\xd0\xa0\x77\x5d\xf5\xb1\x6e\xf7\xbd\xc8\x6b\xf8\x8c\xfc\xe1\x77\x99\x8a\xdf\x87\x74\x89\x07\xbf\xf2\xd1\x0a\x2f\x43\x56\xba\xc2\x9b\xfd\x76\xa9\x63\xec\x85\x03\xd8\xaf\x50\xdc\x30\xb0\x2c\xb8\xc9\xdf\xc2\x6f\x1e\x6e\x5d\xf2\x60\xa9\xf3\x76\x6c\xff\x93\xfc\xfa\x11\x03\xe1\xa1\xff\x16\x5a\x6a\xdd\xad\xc7\x85\x78\xc6\xb3\x94\x1d\xee\x5f\x6e\xab\x61\x91\x72\x25\x8b\xd2\x82\x2e\xa7\x59\xda\x8b\x08\xa2\xf3\x06\xd3\x60\x0f\xde\x55\x40\x8c\xc1\xbd\xc3\xcf\x51\xe6\x5d\x95\x75\x49\x01\x65\xb5\x91\x4a\x14\x74\x84\x6b\xc5\x94\x6c\x43\x9f\x87\x26\x69\x2f\xd4\x61\x3f\x3f\xb3\x16\x91\x27\x48\x80\xbd\x0a\xf5\x5c\x11\xc6\x9b\x15\x34\xe4\xb8\x44\xe0\xa1\xaa\x6d\xa8\x40\x7f\x66\x13\xbb\x56\x43\x4c\x9d\xe1\xc3\x92\x45\x25\xa5\x56\xff\x81\x36\x13\xf5\x9d\x26\x9a\x17\x18\x1d\x0f\xe8\x20\x04\x8e\x6d\x9e\x5f\x7c\x8f\xc4\x49\x09\x68\xdd\x2c\xcd\x7b\x40\x4f\x10\xc4\x2c\xd9\xe6\x4d\x46\x44\x64\xc4\xbe\xae\xaa\x11\x3e\xe8\x98\x97\x5c\x33\x9a\xa3\x9f\xdc\x31\xf3\x44\xfa\xd5\x5a\x95\xd0\x91\xfc\x4c\x7f\x02\x5e\x47\x86\x3c\xd6\x3f\x6e\x85\xba\x4f\x7f\x2c\x49\xf6\x45\x5b\x74\x71\xdf\x4e\xf3\x57\xed\xa6\x8d\xfb\x3a\x7e\x8d\x01\x44\x43\xfb\xb0\x1c\xc9\x66\x92\x1d\x69\x5b\x57\x2f\x27\x8c\x76\x1e\x81\x9c\x19\x8c\x64\x8c\xac\xd4\xd2\xcc\xe0\xcc\x22\x1d\x84\x4b\x8b\x85\x53\x98\xd6\xa2\xc6\x5e\x00\x0d\x2a\xe2\x59\xb0\x79\xeb\x09\x91\x33\xbc\xf6\x9f\xa5\x76\x6f\x31\xc1\xf7\xdf\xee\x42\x40\xeb\x3e\xac\xff\x9f\x6f\x3c\x9e\x90\xa5\xaf\xf7\x5c\x34\xca\x31\xc8\x49\xe1\xfe\x38\xa4\x99\xac\x41\x2e\x88\x32\xc5\xb8\x46\x8f\x1a\x9c\xa2\x36\x45\xfd\x3c\x9c\xe1\xc1\x80\x87\x9b\x36\x0f\x87\x34\x84\x47\xe3\x7d\xa2\xc8\xb9\xb0\x79\x02\x62\x75\x68\xf9\xc5\xa8\x5a\xf8\x72\x3f\x81\x19\xdf\xb8\x41\x6d\xe1\x49\xae\x5f\x9a\x9f\x9c\x1f\xc7\xe7\x46\x1b\x79\xcb\xea\xb3\xfd\x06\x5b\x04\x6e\x4f\xe5\xc7\x95\xdc\xfb\x19\x10\x42\x4c\xb1\x4c\x13\xdb\x72\x7c\x5e\x02\x50\xa9\x35\x07\xe7\x5e\x56\xab\x02\x06\xbb\xf0\x06\x6b\x58\x3f\x5c\x94\x6e\xf4\x04\xc2\x31\x33\xac\x7e\xb6\x80\xf6\x61\xc3\x98\xab\x85\xea\x4d\x37\x32\xc2\xd4\x65\x35\xdc\xc0\x49\x02\xe6\x15\x8c\x5c\x51\x36\xf7\xdf\xfb\xbd\x9a\x18\xdc\xd7\x68\xe3\x6b\xde\xb0\x4b\x65\x76\x7f\xc2\x0f\x61\x79\x8a\xca\x91\x38\x3f\x43\x06\x58\xef\x36\xa9\x4c\x8e\xd0\xbe\x6f\x2b\x6a\x14\x9b\x7c\x69\x27\x4c\x61\xbd\x3f\xf0\x29\xdf\x78\x2b\xbe\x89\xc2\xd9\x7c\x42\xd3\xbf\x0b\xe9\x5a\x3f\x6a\xd2\xbd\xdc\x9a\x91\xb4\xff\x5c\xf5\x54\xfa\x9f\xde\x1b\x8d\xd2\x61\x60\xe9\xb9\x29\xe8\x33\xfe\x4c\xa0\xc6\x07\xeb\x98\x27\x1a\x63\x10\x54\x65\x26\x95\xa5\xe6\xeb\xbe\x4b\xa4\x22\xa8\x09\x4e\x13\x92\xa1\x77\x83\x7e\x26\xa9\xd7\x74\xc8\x67\x46\xa0\xd8\x0c\x57\x64\x8b\x04\x35\x10\x72\xbb\xd8\x12\x53\x4d\xc8\xb9\x98\x54\x1b\x56\xbe\xc2\xa4\x0b\x5f\xaa\xe0\x00\x5b\xb4\x3e\xec\x62\x94\x7e\x85\x2b\x90\xf9\xba\x14\xb6\xdc\x47\x23\x77\xc6\x22\x15\x82\x26\xcc\xf1\x33\xeb\x7b\xdd\x2f\x61\x10\x25\x86\xd4\x17\x6a\xe5\xb4\xa9\x57\x43\x1e\xd2\xbd\x9d\xfb\xae\x6b\xd7\x12\x91\x27\xd8\xb5\xd3\x76\xd9\x5f\x23\xc6\x07\x03\x5c\x11\x97\xda\xb6\x90\xe3\x02\x8b\x28\x9a\x25\x54\xff\x18\xaa\x0f\xfc\xc1\x2a\x5a\x43\x2e\x43\x3c\x1e\x61\x58\xd4\x64\xa3\xe1\xba\x6a\xa1\x1b\x3f\x54\xf3\xa3\xe1\xee\xba\x8d\x0b\x88\x0b\x0a\x2f\x7a\x1b\x7a\x1f\x96\xaf\x69\x47\x0e\x36\x39\x17\x08\xce\x2b\xe4\x68\x1e\x5a\x89\x1b\x01\x53\xa3\x7a\x48\x88\x66\xcc\x56\x40\x40\x73\xab\x1b\x44\xbb\x6f\x74\x11\xa2\x14\x74\x82\x4c\xe6\xbf\x4d\xc7\xab\xc4\x7c\x68\xac\x9e\x6d\x35\xb2\x71\x27\xf4\xf4\xe5\x9f\x1e\x96\x5f\xc9\x42\x86\x99\xd1\xe4\x6e\x86\x13\x05\x9d\x7e\x8b\xe4\x31\xd7\x3d\xfc\xc0\x99\x6c\x78\xb3\x60\x20\xfa\x5e\xfc\x96\x39\x5d\x9d\xdb\xcf\xe2\x29\xdc\x65\xcf\xa8\x0c\x5c\xee\xbc\xda\x60\x0c\x50\x46\x65\xcc\xc3\x3e\x69\xbb\x5d\xd2\xf2\x58\xea\x99\x8e\xb6\x14\x5e\x2c\xf8\x35\xee\x82\x1d\x66\xc6\x55\x87\x63\x41\x3a\x22\xda\xdb\x2f\x79\x1f\x11\x17\x67\xe1\xd3\x4e\x3f\x49\x24\xa0\x1e\x2b\x7a\x9d\xae\x02\x42\x52\xfd\x88\xcd\xcf\x62\xc7\x04\x3b\xf8\xd7\xfa\x8c\x99\x2b\x42\x9f\x1b\x07\xfd\x9c\x46\xcc\x1a\xc1\xfc\x4b\x8b\x0a\xf6\x55\x3a\xc8\x4a\xec\xb5\xf9\xaf\xcf\x08\x71\x5c\xb4\xaa\xa5\x4c\xbd\xd6\x88\xca\x35\x25\xc6\x37\x39\x0a\xee\xa9\x8f\x6e\xe9\xdf\xe3\xed\xf6\x71\x59\x3e\x9a\x19\xb5\x13\x8d\xc2\xb0\x47\xc6\x67\xaa\x87\x18\xb1\x4a\x57\x93\x93\x34\xe7\x71\xc7\x00\xc9\x3c\xfd\xc2\x02\x00\xaf\x76\x96\x3c\xca\x88\x39\x21\xde\x38\x7b\x3d\x6f\x02\x2d\xb1\xbc\x68\xd2\xc2\xcc\x42\x5c\x19\xfd\x58\x46\x52\xba\xcb\x1a\x79\x67\xdf\xd9\xc1\x70\x8d\xa2\x32\x1d\x31\xf0\xed\x01\xa4\x48\x28\xbf\x83\x28\x71\xd2\x71\x44\x6b\x90\x90\x67\x00\xe7\xe5\xe3\xd8\xfa\x3f\x52\x46\x9e\x6b\x7e\x8e\x0c\xee\x93\x92\x6f\xea\x0f\x35\x15\xf8\x0b\xfd\xc1\xf7\x42\xfd\xe9\xf3\xe8\x3f\x4f\xed\x72\xf6\x17\x49\xbe\x8d\x95\x73\x98\x66\xf9\x36\x05\x5a\xcf\x5c\xe2\xe7\x89\x09\xd3\x7e\xc3\xac\xfc\x83\x6c\xa9\xed\x6a\x8f\xf3\xf7\xad\x7a\x85\xfc\x1b\x5c\x34\x5a\x92\xec\xae\x35\x92\x1b\xe4\xe6\x7a\x50\xa2\x5a\x48\x83\x4a\xe3\x70\x2f\x5b\x6a\xb0\x63\x5d\xe4\x03\x02\x7a\x52\x3a\xb6\x50\x01\xf7\xe1\x90\x91\xa0\xb2\xb2\xa6\xab\xa4\x1c\xe1\xc5\xd4\xdf\xd7\xfa\x56\x63\x7d\x49\xbe\x5d\x88\xeb\xe1\x3c\xde\x17\xfc\xa5\xab\xe5\x76\x8a\x43\x45\x16\x97\x6c\x52\x8b\xf9\x56\xa5\x57\x64\x10\x3a\x0e\x84\x46\xd2\x96\xf8\xcc\xe9\xda\x80\x09\xa4\x36\xc0\x44\xc1\xec\xb9\xcf\x99\xa0\xed\xe4\x8f\x72\xc4\x8d\x01\x0e\x4a\xe7\x94\xa5\x46\xda\xd0\x13\x62\x32\x9e\x98\x97\x8e\x07\x79\xba\x85\xc5\x8d\x10\xd3\x88\x46\x46\x16\xb2\x89\x75\x6c\xbf\x88\x75\xf4\x8a\xe4\xde\x0d\xc1\x5c\x36\xcc\x90\x53\x7f\x72\x20\xa1\xb9\x00\xc5\x96\xb6\x10\x54\xc1\x17\x4b\xbe\x62\x96\x8b\x7c\xa4\x32\xad\xfb\x1d\xc1\xae\xdb\xf6\x83\x04\x7f\xba\xc4\x67\xcc\x59\x73\xc0\x53\xc9\xe4\xd0\x9e\xaf\xd2\x5c\x3a\xc6\xd4\x2b\x1f\x08\xf9\x29\x27\xcc\x74\xb1\x64\x6e\xd2\x2d\xff\x2e\x1a\xf0\xe7\xf8\x95\xff\x2f\x66\x41\x01\x44\x3d\xa9\x4e\x2d\xd8\x17\x1b\xfb\xc4\x5c\xf5\x81\x71\x4d\xa9\xcb\xce\xb4\x2d\x75\x12\x61\xd1\xe1\xd3\xfc\x9c\xe6\xfc\x9b\x52\x9f\xeb\x45\xac\x3d\x78\x6d\xf2\x5d\xa4\x7e\x9e\x9a\xe3\xe7\x14\x2c\xd8\x05\x44\x67\xcf\xf4\x5a\x94\x4d\x35\x1b\xf1\xef\x80\xc3\x27\xdf\x5a\xb6\x10\x8e\xbc\x97\x29\xf1\xb7\x10\x4b\x54\xf5\x3b\xd0\x39\xc1\xf0\xb1\x77\xdd\x43\x10\x6d\xb8\x7c\xf3\x29\xa0\x17\x2b\x10\x75\x5d\x15\x0f\x28\xd1\x4b\x15\x41\x57\xd4\xa7\xb7\xee\x29\x01\xc7\x48\x4c\xe2\x42\x65\x5d\x45\x9e\x9b\xde\x91\xd7\x1f\x30\xed\x0c\x2b\x46\x80\x86\x94\x53\xda\xa9\xc4\x32\x57\x8a\x15\x89\xd7\xec\xe0\xf4\xa5\x62\x4d\xc7\x97\xc5\xa1\x47\xbc\x11\x56\xdd\x00\x7f\xd5\x29\xda\xd9\x87\x86\x18\xf5\xf2\x1b\x6a\xe6\x31\xe4\x72\x89\x7e\x8a\x41\x08\x9f\xaf\xaf\x1c\x3e\x60\x60\xcc\x06\xc3\x1f\xeb\x72\x4f\xd4\xc7\x73\x71\x57\xbd\xdf\xa6\xf5\xd2\xce\x02\x7b\x8e\x83\x75\x8f\xe6\x13\x02\x6b\x08\x8d\x0d\x87\xe5\xab\xe8\x87\xdf\xcf\xb5\xcc\x9b\x5d\xd0\xad\x29\x0e\xe0\x4f\x9f\x47\x87\x54\xbf\x25\xca\x7e\x07\x13\x47\xf1\x42\x30\x91\xfc\xfb\x7c\x32\x1f\x29\xb6\xc4\xc9\x39\x48\xf0\xf7\x1a\x59\x4e\x08\x61\x84\xa5\x51\x7d\x40\x98\x33\x85\xb4\xd9\xe7\xe1\x73\x54\x45\x0d\xdb\x6d\xe7\x4d\x4f\x12\x12\x9b\x03\x51\xc4\xd9\x64\x85\x8e\xa5\x47\xba\xd7\x1f\x05\x1d\xbe\xf8\x76\x3a\xab\xd9\xc8\x03\xdb\x04\xb3\xa3\xbe\xc2\x38\x45\x10\xf0\x7a\xd2\x74\x74\x39\x3d\x8a\x16\x7f\xc1\x02\x89\xcf\x38\x6c\x5c\xd9\x94\xd5\x8e\xc3\xba\xb2\x1a\xfd\x4a\xe4\x3a\x91\x2d\xee\x69\xf5\xdb\xbb\x5a\x15\x43\xc5\xb9\x66\xcd\x64\x57\x43\x38\x60\xd1\x72\x20\xf6\x7b\x5a\xfb\xce\x5a\xf3\xa2\xd1\x87\xaa\xda\xb9\x26\xd2\xee\x3b\x0f\x26\x30\xcf\xd4\x74\x70\x86\xa3\xa9\x77\xae\x79\xf3\x1f\x60\xe2\x49\x7c\xa2\x68\x9f\xa2\xbb\xd9\x3d\x9e\x8c\xd3\x05\x62\x0a\x77\xbc\x1e\x00\xa5\x7b\x80\x61\xc9\x68\xe9\x38\x37\x8c\xc8\x8d\x25\xcf\x54\x25\xc6\xe9\x23\xab\xb7\xe8\xde\x1f\xba\x66\x05\xba\xc3\xdd\x4b\xed\x8f\xf3\x19\xbb\xe3\x00\xca\xce\x1d\x9e\x58\x73\x71\xe9\xe1\xf1\x3c\x73\xc9\x87\x0b\x8c\x1c\x69\x92\xba\x52\x47\x1a\xd7\x41\xa1\xa2\x43\xf5\x3c\x9b\xad\x43\x29\xcf\xd5\x22\x46\x25\x12\xfb\x32\xbd\xbe\x57\x2b\x13\x30\xd4\x85\x27\x06\x06\xad\x11\xe1\x61\xa9\xa1\xf6\xf4\xa9\x8c\x71\x88\x05\xcd\xbd\xb9\x6e\x5d\xe0\x24\xf1\x07\xc2\xee\xe5\xbb\xbe\x48\xb1\x73\x23\x02\x8d\x62\x52\xc5\x9b\x91\xdc\x13\x64\x71\x15\x7e\xa0\x90\xd9\xee\xa9\xcf\x90\xbd\x21\xe3\x68\xd8\xed\xd3\xf3\x0b\xe8\x67\x69\xc9\xd0\xce\xbb\x66\x4e\x9d\xff\xe5\xba\x6a\x10\x0c\x96\xa3\x5f\x2b\xeb\x5a\xad\xd8\x8b\xaf\x6e\x34\x54\xe6\x4d\x65\xce\x15\x4d\xb9\x11\x46\xe7\x7d\x3c\x4d\xde\x10\x3d\x6d\x8e\x18\xd7\xbc\x36\xfb\x5d\xb5\xa2\xf3\xda\x82\xaf\x65\xbb\x06\xaf\x86\x84\xc7\x0c\xee\xb4\x21\x0e\x23\x81\x2d\x19\xab\x73\x1d\x5a\x14\x25\xfe\xf6\x42\x77\xed\x09\x7a\xc6\xa0\x73\xde\x0c\x86\xe1\xbb\x4e\x67\xe0\xc8\x62\xd3\x5f\x33\x83\xcf\xd5\xd6\xe9\x2e\x57\xa9\x83\x7d\xf0\xa1\x4a\xa5\xe9\x7b\x0e\x69\xe3\xaa\x16\x51\xeb\x65\xaa\xae\x19\x90\x7e\xd7\x8a\x89\xf2\x3b\xfd\x9c\x02\xc9\x59\x9e\x7b\xf2\x4a\xbe\xa6\x20\x3b\x8d\x29\x16\xa2\x8b\x4d\x41\x2e\xdb\x92\xcf\xe6\x4f\xe9\xcf\x54\xec\x0e\x6f\x54\x98\xec\x0d\xe2\xdc\x71\x68\x0a\xb1\x82\xe0\x0c\x42\x77\xb5\xb9\x92\x30\x23\xac\xd7\x84\x32\x42\x54\xd1\x6c\xdb\x2f\x21\x76\xd9\x16\x1d\x15\xa8\xc3\x29\x9c\xa9\x10\x63\xd0\xeb\x99\xd5\x2b\xdd\x7b\x1a\x8f\xfb\x84\x5b\x35\xeb\xd7\x6b\x91\x5a\x30\x0d\x50\xbd\x48\x38\xc8\x23\xde\x8c\x58\x67\x61\xf7\xdc\xb6\x65\xed\x24\x04\x24\xfb\x09\x12\x51\x23\x72\x8f\x81\x88\xd4\x2b\xd6\x83\xce\xcc\xde\x02\xe2\x83\xd8\x80\xb0\x69\x8f\xd4\x2d\x82\x11\x24\x0e\x11\x13\x88\x78\x0b\x0f\x20\x73\x40\x1c\xef\x4c\x0a\x1e\x4f\x17\xaf\x92\xf5\xe0\x38\x4a\xf2\x78\x08\x3a\xaa\xa1\x1d\xe5\x9e\x81\x39\x85\x5d\x33\x38\x75\x3e\xe3\x8a\x8d\x80\xdd\xea\xe6\x8d\x9d\xc4\x29\x91\xbb\xbb\x6a\x5d\x74\xa5\xc5\x33\x52\x4e\xc3\xce\x5d\xe0\x28\xde\x7f\xbd\xd8\xf4\xad\x55\x41\x9c\x91\x40\x3e\xb0\xd9\x1e\xcd\x37\x4b\x45\xa6\x0d\x63\xf9\x32\xaa\x10\x98\xb9\xec\x77\xcc\x6f\x84\x79\x59\x3b\x18\xf2\x97\xff\x7c\x7e\xfa\xf6\x28\xff\xfd\xf1\xcd\xcd\xcd\x63\x2e\xfe\x78\xdf\x6d\xd8\xe9\xb4\xe4\x78\x49\xff\xf3\xe4\xcd\x51\x5e\x0d\xab\xaf\x16\xf9\x89\xb0\xa1\xb8\xba\xd5\xda\x19\x17\x63\x4c\x5d\x2c\x6c\xfe\x71\xf6\xa4\x2b\x46\x1f\x26\xf0\x31\xf9\xfc\x96\xca\xb3\x67\xc6\x49\x3a\x99\x62\xa4\xe4\x36\xa4\x55\x57\xc1\xb6\x07\x1f\x2e\x83\x76\xa7\x0f\x73\x81\x32\xc6\x20\x35\xb5\xa3\xdd\x78\xbd\xd2\x87\x11\x46\x20\x76\x95\xfd\x0c\x97\xd8\x21\x13\x13\x17\xb6\x15\x8e\x0e\xd9\x5f\x43\x99\x93\x70\x4c\xc2\x99\x4e\x44\x55\xfe\x34\x2e\x0c\x8b\x5c\x04\x37\x7f\x92\xff\x33\xeb\x31\x79\xa2\x84\xb6\x38\xcb\x68\x0b\xc0\x8b\x71\x61\x44\xeb\x74\xa2\x34\x0d\x40\x62\x90\x9a\x28\x1f\xf3\x82\x38\x3f\xa9\x44\x4f\x7c\x6c\x14\x34\xe4\xdb\x70\x02\x04\xad\x49\x75\xd3\x22\xa9\x16\x79\x3e\xdb\xf0\x22\xc6\xb8\x47\x6a\xa6\x6b\x2a\xd6\x39\x3c\xe4\x62\x8e\x3c\x8b\x22\xc7\x1f\x01\xca\x5c\xc4\xdb\x47\xc7\xb5\x0b\xc6\x94\x6b\x68\xda\x6a\x9c\xe1\x82\x8b\x54\x03\xe2\x3a\xcc\xad\x45\x39\x83\x87\x59\x8b\xab\xc7\xf8\x9b\xee\x70\x22\x99\x88\x47\x5c\xc2\x3d\xc0\x3a\x52\x29\xed\x66\xbc\x8b\x8d\x05\x34\xe5\x4d\x51\x94\x51\xde\x34\xd9\xae\x15\x70\xd4\xc6\x64\x97\x54\x79\x7a\x7a\x4a\x88\x2d\x1c\x12\x08\xc4\x04\x6d\xa9\xa3\xb4\xf0\x4a\x70\x2b\x7e\x1e\xd2\x52\xf1\xca\x56\x29\xf8\x6e\xba\x44\x19\x21\xb2\x8e\x3c\x47\x65\x41\x2d\x35\x58\x61\x10\x78\xc3\xb3\xdb\x8c\x79\x1c\x4c\x62\x01\x78\xa1\x5b\x6a\x35\xbf\x4e\xf1\x3f\x1d\x65\x8e\x5f\x82\x19\xaf\x6c\x92\xd5\xe4\x2d\xb1\x67\xf2\xe5\xb1\xb5\xdb\xb4\xb7\x16\x2e\xe1\x39\x7e\x69\x18\x25\x3f\xb2\x08\xa6\x83\x8a\x90\x73\x75\x45\xd9\x0a\x50\x5c\x0c\xcb\x9f\xa7\x8d\x55\x35\x8f\xe5\x05\x08\xcc\x2a\x5e\x2d\x51\x97\x1b\x9c\xfa\x8a\xd4\xab\x54\x1e\x15\xd0\x88\x03\x5e\x39\xd4\x2e\xd3\xce\xff\xd5\x45\x31\x56\x81\xba\xe1\xf3\xb8\x75\xc1\x1f\xb3\x92\xcb\x9f\xb9\x01\x4c\xfd\xfb\x03\xd4\x38\x12\x81\x1b\xe4\x7c\x24\x82\xb4\xa8\x8f\x46\xe0\x8a\x62\xcb\x0c\x27\xdf\x59\x7d\x6b\x32\x23\xd3\x50\x03\x71\xa4\x9f\x10\x6d\x60\x7e\xd2\xc6\x42\xf4\xbd\xb3\x7c\xd7\x65\x47\xe9\x07\xf7\x09\x71\x07\x46\x47\xef\x4f\x91\xa7\xe7\xfa\x12\x91\xe2\xb0\x7b\xdf\xd5\x47\x59\x5f\x5d\x2d\x2e\xbb\xf6\xa6\x67\xe7\x7e\x3c\xe4\xc2\x4c\x9d\x7f\xe7\xe7\xf8\x2d\x20\x6c\xf7\x02\xaa\x90\x0f\x49\x54\xeb\xbb\x27\x7a\xcd\x2d\x89\x30\x3a\x18\xbf\x1f\xf1\x9c\x72\xc4\x00\xe1\x2d\x51\xfb\xb1\xe5\x2c\xa4\x08\xed\xab\x37\x4b\xfe\x42\x58\x02\xa8\xc7\x59\x9b\x8b\x42\xe7\x9c\xa2\x60\xfc\x69\x28\xb7\x4d\x10\x86\x9f\x62\xa2\x21\xd2\x72\x54\x6d\x81\xb2\x0c\x8e\xc0\x88\x1c\x6a\x88\xc3\x11\xc4\xbb\x1f\x13\x84\xe1\x32\x42\x28\x82\xc0\x63\x9e\xbe\x7e\x2b\x3f\xe1\xcd\xa1\x61\xc0\xe0\xce\xc1\x96\x22\x99\xf9\x88\x2c\xe6\x7c\x45\x2c\x4f\x5c\x7c\x44\x0f\x63\xcf\x2e\xe2\x57\x80\x28\xbb\xe2\x0a\x77\xa2\xfc\x37\xa4\x92\xc8\x1d\x8b\x9d\x75\xd5\xe3\x71\x31\x42\x8e\xa0\xfa\x1c\x1f\x21\x5d\xef\x34\xf9\x4f\x48\x2b\x60\xaf\xf4\xc4\x8d\x3c\x62\xc4\x0c\x63\x88\xee\x1e\xf6\x79\x5f\xb3\x72\x57\x09\x74\xd4\x20\xa8\x23\xc6\xf8\x06\xed\xc0\xe9\xc7\x8f\xd5\x5f\x96\x22\x04\x49\x7f\x9d\x07\xfc\xb0\xff\xdb\x20\xd1\x05\xf4\x6d\xa1\x45\xd2\xef\xa4\xb4\xec\xe8\x95\xcd\x76\xbe\x69\xd7\x10\x5a\xe1\x9b\x2b\x8f\xcc\xec\xf9\x31\x26\x42\x04\x87\x93\x63\x01\x27\x10\x7f\xbd\xa5\xfa\x3f\xca\xf3\x00\x52\x3d\x09\x2b\x21\xfa\x01\xc9\x2d\x8d\x38\x60\x5b\x1e\x4e\xf0\x16\x25\x31\x29\x13\x83\x90\x9b\x2a\x3d\x3a\x57\x51\x3e\x04\xa1\x95\xf7\xd9\x62\xa9\x88\xe3\xc1\xc8\xd8\x5d\x07\x12\x4e\x6c\xa9\x53\xee\x6b\x39\x37\x9d\xc6\xa8\xe3\xbf\x9e\x2c\xf4\xdd\x9e\x33\xf9\x0a\x39\x2c\x70\x8b\xd4\xf8\x46\xbe\xe4\x81\xc9\x31\x35\x4d\xe3\x73\x50\xde\xe3\xf1\x5c\x3b\xf8\x80\x80\xbf\x54\x8f\x58\x03\xdc\xd2\x76\x9e\xcb\xbd\x5f\x31\x24\x94\x62\x7b\x5b\x7c\x36\xea\x31\xd8\x7a\xec\xc6\xf8\xb6\x3b\x34\xa7\x84\x12\x49\x66\x42\xed\x7c\x8f\x68\x2b\x05\x17\x89\xe9\x72\x01\xf5\xc4\x05\x83\x1b\xfd\xc9\x42\x13\x79\x29\x42\xa5\xd7\x1e\x33\xc0\xb2\x45\x68\x56\x54\xfd\x8d\x61\xe6\x77\x05\x6b\xc7\xc7\x45\x10\xf7\xbb\x4e\xf4\x14\x41\x23\x4e\x24\x73\xc7\x1e\x30\x69\xcd\xeb\x5f\xa5\x89\x7b\x98\xfe\x78\x0d\xa4\x37\xa1\xae\x1e\xdd\x9a\xf9\x66\x5b\xd7\xc8\x64\x6b\x0e\xbd\xd1\xa7\x7e\xb0\xfd\xd8\x77\x96\xfd\xda\x76\xeb\xf7\x31\xb6\x74\x50\x27\x26\x71\xa5\x71\xd8\x67\x98\x10\x9f\xf1\x00\x60\x8c\xd9\x18\x6b\x34\x72\x7c\xc9\x8b\x6e\xfa\x2c\xa2\xa8\x5a\xe4\x09\x00\xdc\xae\x5b\x70\x84\x85\x39\x5d\x4a\x6c\x5a\xbd\xf6\x4e\xde\xab\x85\x2f\x64\xbc\xce\xfd\x45\x1d\x36\xd4\x90\x83\xfd\xf5\xf8\x83\xc3\x07\xf3\x0b\x9b\xac\x38\x94\x8b\xd1\xd7\x48\x20\x96\x88\x04\x44\xc6\x86\x9f\x22\xff\xcd\x10\x90\x54\x55\xa5\x9c\xaa\x5f\x9a\x3e\x0a\x7a\x9a\x3c\x2d\xe3\x9c\x44\x11\x0c\x39\xb9\xab\xe7\xca\x81\x95\x19\x2b\x9e\x49\x88\x6c\xa0\x10\xa9\x77\x41\x27\x91\x07\x78\xad\x8b\x01\x18\xaf\xea\x42\x2c\x22\xd4\x4b\x47\x49\x04\x01\x9a\x9b\xc4\x9a\xbd\x5f\xc4\x66\x1c\xe7\xb8\x16\x13\x9f\x58\x0c\x6f\xb6\xb1\xf5\xc0\x4f\x02\x9f\x38\x50\xeb\xf9\xbb\x90\xc8\x21\x92\x9c\x6f\xe8\x28\xb7\x49\x0e\xe4\xa8\x88\xc5\xe0\x9f\x0e\x38\xcf\x4f\x63\x99\x7f\xbe\xfb\xfc\xb4\x8e\xbb\x1d\xe8\xff\xe8\x8d\xff\x7c\xa4\x52\xaf\x75\x1c\x85\x2c\x0d\x59\x73\xb1\x4b\xff\xc8\xfd\x7b\x0a\xea\x98\x4c\x82\x82\x50\xd3\xa7\xde\xf3\xe8\xb5\x3e\x51\xea\x7f\xee\x56\x3f\x0d\xe1\x3d\xee\xf5\x24\xc8\x66\xd2\xe9\xcf\x0b\xb6\x79\xf0\x7a\x3c\xe1\x15\xe3\x53\xf8\x24\x72\x0e\x06\x78\x67\x91\x34\x8e\x8e\xef\x70\xd0\xbb\xba\xeb\x56\xbd\xbc\x91\x08\x3a\x72\x99\x70\x7f\x18\x9d\x03\xf7\x59\x77\xc5\xd3\x19\xf7\x92\x79\x4c\xf0\xd5\xf2\x9d\xbc\xb3\x84\x97\x32\x52\x93\x88\xff\x4c\x8c\x9d\xf9\x1b\x20\x3e\xa5\xdf\x98\x72\x12\x52\x89\xe1\x2f\xaa\x7c\xf8\xd8\x65\xf8\x92\x73\x59\x64\xb4\x11\x73\x90\x27\x05\xb9\xa3\x90\xf1\xca\xb5\x17\x31\xe2\xf8\x32\x89\xab\x73\x12\x63\x9a\xc7\x10\x3b\xdf\x87\x62\x7a\xb3\x6a\x51\xf9\x46\xe9\x91\x53\xc2\x16\x4c\xef\x8e\x23\x90\xfc\x86\xcc\x37\x9b\x33\x2e\x9f\xb6\xa1\xcf\x63\x75\xed\xa6\x0a\x1d\xcd\xdf\xd1\xaf\xd8\xbd\xd4\xe9\x29\x2d\x18\xca\x84\x74\x3d\xde\x6a\x18\xff\xd8\x1b\x09\xd1\x0e\x77\x44\x97\xaa\xbb\xa5\x9b\x2b\x91\x93\xb5\x76\x1c\x3b\xbe\x1f\x43\xcb\x73\x5b\xba\xaf\xbe\x6d\x6f\x32\xd9\x54\x17\xf0\xa1\x92\xa0\xe1\x9a\x92\x36\x2a\x69\x2c\xb1\x68\x68\xb7\x5c\x82\xce\x68\xf0\xaf\x69\xfe\x28\x4e\x09\xf6\x94\x10\xa1\xc4\xde\x00\x60\x81\x5b\xbd\xf5\x1a\xb9\x26\x4b\x03\x77\x48\xad\x10\xd8\x63\xb3\x62\x29\x97\xb4\xeb\x21\x3e\xa5\x61\x3c\xac\x3e\x6e\xee\xc8\x74\x94\x50\x1f\xa9\xf2\x54\x82\x62\x4a\x2b\xfa\x5a\xb6\xf5\x23\xbc\x59\x19\xfb\xe1\x21\x3e\xa5\x1f\xdc\x0a\xdc\x4e\xe4\x00\x77\x47\x7f\xe8\xc4\xad\x51\x6f\x13\xf3\x8d\x71\x17\x63\x64\x8d\x0b\xb7\x93\xc3\x64\xa8\x1c\x49\x26\x7c\x25\x30\xdd\x52\x25\x47\xae\xf6\x67\x84\x07\xb1\xec\x9a\x8d\x8a\x77\x3f\x13\x80\x7f\x0f\x97\x0c\xa0\xce\x66\x2b\x82\xcd\xee\x4b\xd2\xaf\x28\xec\x41\xfa\x52\xde\xa0\x99\xf7\x6f\xc9\x02\x67\xf1\xe0\x44\xf2\xf3\x9b\x0a\x44\x3f\x9b\xc9\x52\x1e\x44\x09\x6b\x95\x17\x98\x6b\x75\x5a\x59\x60\xe6\x80\x0a\x4c\x7c\x0a\x67\x2b\xd6\xcb\x6d\x4e\x61\xce\x6c\xfb\xc8\xa4\xd9\x60\x50\x02\xa8\x6d\x71\x9b\x98\x6c\xc1\x9b\x61\x9b\x3e\x2d\x7e\xc7\x81\x67\xda\x95\xb8\xaf\xcb\x2b\x23\x81\x60\x0e\x1e\x7a\x16\x7e\xa9\x4f\x09\x24\x92\xdd\xba\x83\xeb\x93\xcd\x35\x33\x0b\x47\x0a\xa8\xf0\xfb\x30\xca\xf0\xa8\x6d\xe4\x06\xb0\x00\xa0\x8a\x1e\xdd\xc5\x14\x3e\xa3\x03\x60\x1b\x77\xf7\x00\x6c\x41\xfc\x61\xa9\x1b\x8e\x05\xdc\xd5\x11\x7d\x8d\xf6\xd3\x3b\x02\xbe\xf1\x89\x1d\x39\xb2\x5e\x68\x88\xfe\xb2\x9c\x5d\xff\x77\xf5\x6f\x74\x10\x02\x71\x26\x4f\x40\x18\x33\x80\xc1\x8a\x3c\xf0\x3a\x67\xb0\xe2\xd4\xaa\x8b\xc5\x78\x95\x38\x73\x27\xb7\x52\x9c\xc5\xa3\xf5\x05\xb6\x35\x6a\x81\xa9\xbb\x5c\xac\xaa\xa1\x79\x47\xd8\xdc\x66\xf0\x56\x9a\x69\x0c\x24\x36\x10\x1c\xba\x5b\x95\x74\x18\x23\x69\xa8\xa6\x68\x9c\x25\x67\x3a\xdc\xfd\xcb\x5b\x22\xbf\x62\xae\xde\x67\xe1\x1d\x55\x5e\xff\xf6\x9d\x89\xe6\x4b\xee\x3f\xf1\x9a\x43\x7c\xc6\x21\x1f\x3f\xeb\x70\xe7\x93\x1a\xe9\x53\x22\xe3\x37\x65\x7a\x09\xc1\xb8\x36\x11\xd1\x1e\xaf\xcd\xd4\x28\x8d\x31\x7e\x4b\x38\xd8\xe2\xe1\xf2\x15\xc7\x57\x6f\x9b\x5a\xcc\x9f\x4e\xe4\x8b\xc6\x9e\x25\x06\xec\x2f\xf8\x87\x84\xbe\xd5\x14\xb6\x98\xce\x86\x76\x40\x4c\xb5\x0b\xfe\xfb\x7d\xfe\xb0\xcc\xe2\xd0\xa1\x03\x66\x75\xdb\x4a\x34\x9d\xf2\xed\xf2\xdd\x03\x10\x70\xbf\xe9\xec\x45\x8b\x58\x03\xba\x09\x4d\xf3\xde\x75\x5b\x3b\x89\x4a\xf7\xfd\x5c\x8b\x66\x95\x0e\x63\x81\xd2\x9e\x1f\x66\xb6\xc3\xaf\x4a\x96\xfc\xaa\xa4\xe8\x21\x8f\x5c\x42\x32\x21\x3e\x63\x17\xe2\x31\x27\xc9\xe9\x56\x1a\xd3\x25\x92\x5c\x92\xc4\x81\xaa\x92\x84\x62\x35\x69\xc5\xee\x19\x7c\x9a\x99\x5a\xc6\x14\x33\xba\x4c\x6a\x4f\x63\xf2\xfa\x2c\xb1\x54\x4d\x92\xf4\x31\xdd\x74\x24\xa2\xe5\xf5\x69\x9b\x76\xcd\xcf\xbe\xd8\x53\xed\x6e\x78\x2a\xaf\xa7\x75\x9a\x77\x47\x52\x05\x7c\xc9\x7d\x0a\x6e\x3b\x87\xa2\x4f\x4b\x63\x7d\xfa\x04\x75\x49\x98\x00\xd2\xf9\xbd\x58\x5d\xab\xc3\xe1\x0c\x21\xd9\x31\x3c\x10\x93\x9c\xc5\xe7\x20\xe5\xc1\xe3\xdc\x9e\x37\x9e\x85\xe9\xf6\xd0\x21\xee\x1b\x97\xcb\x1e\x53\xec\x9e\x87\xb0\xc5\xad\xc6\xdb\x63\xf7\xa9\x10\xa2\x38\x3f\xc5\x72\xec\xef\x2c\xe4\xf6\x45\x8e\xe2\xa2\x61\x91\xb5\xa4\xc8\x30\x77\x6c\x90\xb1\x66\xdd\x6a\xd5\x0c\xc8\x3d\x81\xd9\x47\xc9\xa3\x80\x3b\xa7\x5e\xc7\x5b\xf6\x27\xd5\x31\xea\x65\x84\x08\xd5\x7c\x7e\x57\xc1\xff\x99\xdf\x53\x6f\x46\x9d\x4c\x78\x9e\x81\xdc\x53\xc3\xa8\x8b\xb3\x55\x7c\x7e\x27\xb1\xd3\x36\xeb\xf0\x7e\xf4\x5c\x27\x6f\x11\xd7\xba\x2b\xf5\xe0\xba\x61\x23\xc2\x97\x66\x07\x76\x4f\x95\x87\x7a\x7d\x67\x9d\x9f\x31\x0c\x7e\x47\x7e\xbd\x8a\xdd\xe7\xa8\xfe\xdd\x25\x33\x6e\xde\xdc\xab\x95\x39\xdc\x26\x4a\xcb\xf9\xe2\x77\x21\x18\x1d\x62\x75\xc5\x5c\xf5\x87\xfa\xd6\x55\xfd\x6d\xb3\x5a\xe2\x11\xf4\xfe\x5a\xef\xc5\xdf\x55\x72\x69\xf2\x68\x41\x69\x5f\x17\x1a\xba\xb2\xc2\x15\x72\xff\x48\x1e\x7c\xf9\x72\x45\xe9\x30\xa7\xa7\x6d\xfc\x31\x58\x3b\x4a\x9b\x64\xcb\xd8\xfa\xea\xce\x86\x46\x63\x71\x7c\xdd\xe1\xb6\x43\x57\x86\xea\x93\x46\xe0\x2c\x40\xfc\x30\x98\x50\x94\x89\x81\xe5\xf9\xe7\xc9\x18\x71\x5f\xb2\x35\x0f\xbf\xd3\xc0\xa6\x4a\x6a\x02\xa8\x9b\xb6\x3d\x72\xaf\x17\xa5\x07\x06\xe4\xdb\xbd\x63\x86\x1e\x25\xbd\xb8\x7f\x8c\x7e\x2f\x45\xb4\x4c\x6a\x88\x0d\xdc\x21\xa4\x21\x7a\xe6\x2f\xf8\xed\x79\x9b\x3c\x21\xb3\x5c\xb7\x5d\x4b\xd3\x23\xa1\xd1\xf4\x59\x99\x97\x96\xd6\xcf\x14\x80\x7a\xff\x76\xb9\x57\xf7\x34\x2b\x73\x82\x64\x92\x91\xd8\x03\x2c\x96\x82\xa4\x61\x65\x58\x69\xbb\x52\x55\x3f\x44\x0f\x2b\x75\x6c\x19\xae\xa4\x96\x69\x2f\xd9\x73\x45\x7d\xf7\x01\x7c\xaa\x29\x0e\x16\x57\x64\x1c\x6f\x8c\xd0\xb5\xdf\x2d\x79\xa8\xf0\x1b\x93\xe4\xfc\x0d\x92\xf3\x0b\x4e\x9e\xb6\x60\xbd\x0a\xc5\x46\x9d\x3a\x54\x8e\x63\xd0\x8c\xcb\xbc\xe0\x50\x35\x63\x78\xc3\xdc\x75\x55\xec\x26\x78\x7b\x45\x89\x13\xac\x01\x72\x8a\x00\xc0\x1e\xc6\x82\x2f\x55\x97\x38\x71\xfa\x12\xaf\x29\xe9\x10\x34\x0c\x4e\xc6\xf0\x0d\x4b\xbc\x07\x4a\xa8\xe8\x31\xee\x95\x5e\x6b\x4d\x7a\xd5\x5e\xb2\x17\x66\x6f\xd0\xa7\xf2\xd3\x41\x5d\xb6\xed\xc0\xef\x2e\xef\x58\x6a\x84\xd9\xa1\xa0\xe9\xa9\xa5\xb3\xd4\xb8\xfa\x30\xc1\x94\x40\x4f\x51\x25\xd0\x87\x71\xb5\xe5\x50\xb7\xd4\x56\xb7\x5f\x0d\x7b\x5a\xa0\xa1\xc1\x93\x73\x0e\x91\x7b\x1e\x32\x26\x2d\x4e\x4a\x7a\x0a\x1d\x17\x9e\x6b\x79\x45\xb2\x50\x35\xdb\xf4\x33\xce\xb9\xb3\xed\x49\x59\xdf\xf8\xa4\xf8\xdc\x4a\xc1\x2b\x69\xbc\xa1\x5d\xee\x57\x1f\xaa\x81\xbd\xdf\xae\x97\xb0\x67\xf0\x75\x9d\x19\x58\xfe\x14\x60\xf9\x2b\x02\xcb\x2f\xa0\x9e\x9a\xa9\x95\x36\x9d\x6d\x35\x14\xb0\x4b\x71\xb5\xbc\x7c\x46\x33\xc0\xc9\x65\x31\x57\x0a\x6a\xab\xa5\x1e\x16\x74\x15\xb2\xfc\xe6\x6a\x38\x85\x66\x4b\xcf\x0f\xc7\x01\x64\xae\x36\x8e\x7a\x26\xbb\xdf\xea\x76\x25\x8f\x87\x71\x1c\x34\xea\xc3\x3b\x49\x71\xb0\x38\x10\x11\xac\xf1\x48\x98\x60\xc0\x97\x94\xc0\x2f\x52\x46\x29\x1c\x2c\x02\x0b\xe3\x22\xb8\x33\x0e\xd7\x30\x07\xb8\x2b\x64\x31\x1d\x84\xb4\xe6\x0d\xd0\x5a\x1e\xc3\x69\xa3\xbd\xa0\x52\xd8\x8a\x9c\x46\xc5\x29\x44\x9f\xd4\x20\x9a\xc3\x15\x3f\x7c\x42\xec\x41\x0d\x4e\x53\x58\x3c\xf1\x16\xaf\x1f\xe2\x8d\x66\x78\x73\x50\xc0\x44\x08\x87\xe8\x2d\x29\x26\x36\xe2\xfd\x53\xfb\xb6\xbc\x24\x94\x97\xa4\x99\xdc\x82\x53\xaf\xa6\x59\x44\x80\x10\x92\x50\xd3\xf5\xa1\xfc\xf1\x63\xea\xe7\x6c\x1c\x9e\x3c\xc2\xfe\xd6\x3b\x80\x5c\xb4\x18\xa5\x1b\x58\x6a\xa7\x66\xc3\xbc\x3f\x2a\xc1\x42\xeb\xf0\xa1\xaf\x74\x64\x90\xf3\xcd\x50\x6b\xf4\xee\xab\x1a\x6c\x09\xa4\x44\x86\x96\x5b\xc0\x8d\x2f\x8d\x43\x98\x9d\x6a\x46\x35\xbc\xc1\x01\xcd\x61\x79\xfa\xfa\x3e\x34\xeb\xac\x9f\x10\x23\x7f\xe8\xa5\x61\x84\xb9\x6f\xec\x7d\x36\x23\x83\x43\x4f\x22\xda\x63\x0c\x9f\xf8\x2a\x62\xc4\x85\xa3\x14\x98\x74\xa4\x34\x52\xf7\x4b\x4f\x14\xe3\xb7\x1c\x8a\x11\x91\x30\xb8\xd2\x49\x02\x0a\x67\x5a\xce\x90\x69\xe6\x67\xa0\x83\x9a\xcc\x08\x07\x37\xbc\xec\x68\xb0\x54\x5b\xdb\x49\x0d\xae\x0c\xd4\x99\x42\xd8\x2c\x77\x8b\x6f\xb6\xaf\x47\x82\x80\x2f\x6d\xc6\xee\xab\xeb\x60\xcc\xf0\x59\xbc\x47\x8d\xb2\xa1\x3d\x3c\x59\x09\xe8\x3b\x2f\x2c\x53\x04\xcf\x3f\xa4\xfb\xff\xe5\x2d\x61\xdf\x81\xf8\xa2\xf0\x81\xf6\xff\x21\x2f\x0a\x8f\xb5\xf9\x7d\xda\x95\x19\xf3\x9b\xe3\xf1\xfb\x42\x07\x6c\x2e\xf9\xc9\xd5\x05\x1c\xe6\x52\x16\x99\x5c\xa7\x26\xac\x12\x25\x3c\x0b\x44\x42\x6a\x58\x82\xa4\x78\xd5\x60\xb7\x0c\xa2\xf4\x03\xf7\x1b\xb7\xe7\xbc\x22\x93\xd6\xa4\xc4\xf4\xe1\x92\xb4\x0b\x92\x32\xbd\x8c\x94\x74\xd5\x57\xe5\xf6\xf0\x81\x2a\x1f\x17\x50\x5a\x89\x08\xd4\x59\xda\x38\x76\x37\x74\x91\xca\xac\x46\x5d\x1e\xb1\xab\xa4\xdb\x52\x4a\x62\x03\x99\xc7\xa5\x72\x44\xcd\x72\xbd\x97\x14\x1f\x18\x57\x52\xe4\xc1\x4e\xbc\x42\x2f\x5f\x9a\x3e\x35\x03\x72\x9d\xd4\x6a\x46\x9d\x73\xb5\x02\x6a\x9e\xe3\xba\xde\x8c\x8d\xd9\x25\x15\x8e\x84\x6c\x79\xdf\x0f\x9a\xb2\x93\x70\xb7\x67\x1c\xee\x56\x52\xa0\x03\x2a\x61\xa3\xca\x2a\x9f\xe7\x6f\x7d\xba\x7b\xc3\x13\xb9\xe1\xf5\xce\x19\x18\x67\xa4\x53\x74\x1c\x6d\xf7\x7b\x0d\x3d\xe6\xde\xf2\x64\xa7\x3f\x79\x21\x6c\xb7\xe1\xfe\xf2\x53\x0d\xb8\xbe\x61\x65\xf6\x1e\x01\x71\xf8\x19\x3f\xdc\x5b\x13\x9b\x59\x8b\xb9\xb3\x3c\x3b\xa5\xc8\x64\xf9\x40\x03\xfe\x41\x2e\x50\x65\xfd\x53\xb6\xb8\x73\x20\x18\x11\x00\xc2\x88\x8a\x61\xe8\xea\xcb\xfd\x30\xff\x48\x6e\xc8\x3d\x08\x3d\x8e\x4a\x8d\x45\x1f\x76\x32\xee\x3d\x47\xec\x7c\x5c\x23\x82\x0f\x73\x9f\x6a\x53\xaa\x23\x1b\xdb\x0c\x20\xb8\x83\x84\x4d\x18\xb7\x60\xd6\x3a\x08\xc5\x72\x4f\x6f\xfa\xbd\x75\xfd\x7c\x7f\x5f\xcf\xf5\x55\x4b\x79\x2c\x73\x0c\x26\x71\x5d\x0c\x4b\x12\xd7\xc5\x6a\xc0\x0d\x4f\x00\x90\x7b\xdf\x04\x62\xcb\x1b\xe0\xb2\x2f\x98\x5b\x10\xab\x2f\xf3\xf3\x63\xcd\xe9\xb7\xc3\xce\xde\xfd\x38\x3f\xb9\x38\xbb\x83\xb4\x19\x54\x49\x14\x90\x8e\x4e\x39\x4b\x69\x15\x59\x8e\x60\xd5\x42\x4a\xfd\x37\x54\xcb\x00\x1b\x2b\xa1\xfd\x7e\x1e\xee\x2e\x29\x44\x1e\x85\xa3\x2d\x9b\x63\xcf\xc1\x01\x42\xca\x2c\xf2\x93\xfd\x66\xa8\xd9\x64\xcf\x5a\x53\xb3\xb1\x4b\x9a\xec\x6a\x57\x74\x16\x8b\x1a\x71\xd7\xf2\x47\x47\x8f\x16\x09\x33\x58\x0e\xf2\x7e\xac\x3c\xe5\x7b\xf1\xe6\x9c\x3e\x57\xdd\xad\xdc\x49\xeb\x48\x3f\xd4\x3b\x06\x5b\xea\x1b\xff\x34\x60\x4a\x01\xec\x9f\x91\x62\x2b\x97\x2f\x2f\xab\xee\x63\xbd\x0a\xf4\x72\x76\x7c\x02\x35\x08\x25\x79\x5e\xa0\x4d\x23\x52\x9c\x09\xa2\xb1\x13\x34\x1d\x6d\x22\x88\x1a\x3f\xe3\x97\xef\xd9\xa6\x78\x67\x08\xf4\x21\xad\xc6\xd2\xa2\xbe\x8f\xac\x98\x9e\x48\x4e\x93\xc7\xea\x0d\x24\x72\xda\xb1\x80\x9b\x16\xb9\xcf\x19\x63\x91\xf0\x56\xbf\x91\xa6\xf5\x7c\xa2\xa1\x96\xaf\xcc\x09\x3d\x77\x0d\x7a\x36\xe2\x49\x5a\x22\x81\x5c\x0a\xbb\xb7\x37\xc5\xd2\xaa\xe3\x1b\x72\x93\x12\xc9\xeb\x62\x13\xbc\xce\x18\x40\xdd\x61\xf4\xe4\x6a\x1f\x89\x1f\x69\xc5\xf7\x49\x21\xa2\x1a\x34\x95\x5c\xb8\xdd\x53\x95\x5c\x7a\xc9\xa7\xb0\xc5\x6e\x17\x76\x31\xf7\x6c\x1c\xc8\xd6\x81\x7c\x14\x86\xe3\x20\x68\x11\xf4\xa3\x7a\xc4\x25\xd3\x03\xb1\x67\xa6\x02\x8c\x77\x42\x4d\x6e\xaf\xae\x38\x26\x22\xc7\xf6\xd5\x20\x43\x08\x91\x78\xc2\x4e\x07\x56\x52\x1c\x8d\x97\xac\x23\x84\xce\x8d\xc7\x64\x2f\x8d\xbf\x43\x22\x1f\x72\x0c\xbc\xdb\x43\xb9\xc4\xfd\x7d\xb7\x6f\xe4\xf8\xe6\xb2\xb4\x21\xce\xf2\x8d\x40\x98\xea\xda\x76\xb0\xd7\x78\x9c\x24\xf5\x8e\x92\x69\x8b\x1d\xae\x03\x82\xf9\xfe\x70\xb5\x94\xc7\x42\x5c\x19\xdc\x5e\xae\xe0\x3a\x32\x2d\x44\xfd\x9e\x96\xa0\x7e\x1f\x00\x17\x1b\x19\x93\x43\xce\xf1\x4b\x98\x74\xe8\x31\xdb\xe4\x2a\x35\xda\x80\x25\x6d\x4c\x37\x1e\x07\xe5\x65\x24\x8c\xe7\x76\xe3\x39\x4b\x1a\x04\xe9\x85\xa9\x98\xea\xc5\x97\x98\xea\x45\xb1\x98\xaa\x1d\x1b\xf5\xa0\xef\x37\x36\x11\xe7\xe7\x6f\xd2\xd9\x8e\xb9\xee\xb5\x37\xde\xa8\x1f\x70\x90\x6f\x8e\x34\xfa\x00\x0e\x78\x5f\xb9\x12\x8a\x4d\x8f\x3f\x4d\x1d\xd7\xd1\xff\x6d\x53\x0f\xd5\x77\x0f\x60\xc5\xf0\x60\xa8\xcb\xcb\x07\x5f\xf9\x75\x53\xc3\xff\xc5\x2d\x9c\x7a\x75\x00\x3d\x41\x97\x90\x3c\x47\x9d\x4b\xec\x82\xba\xab\x74\x7b\x7f\xe6\x5e\x88\x9e\x50\x74\xdc\x05\x02\x3d\xfb\x1d\xc0\xfa\xc5\xbe\x54\x9d\xcb\x88\x31\xd0\xe0\x54\xf5\xce\xaa\x79\x8a\xe4\xd8\x41\x89\x4f\x6e\xf1\xca\xd5\xab\xc4\xba\x87\x70\xe3\xaf\x1b\x78\x3b\x59\x11\x7b\xdd\x1f\x5a\xbf\xf0\x06\xbf\xee\x50\xa2\xee\x3b\xd6\xd7\xfc\xa5\x00\x86\x1e\x94\x29\x27\x3c\x60\xaf\x3f\x19\x0f\x18\x8e\x7e\xf5\xdf\x2b\x09\x30\xeb\x86\x7d\x42\x47\xf3\xed\x7e\x8b\xd7\x80\xcf\x39\x1e\x26\xde\x73\x9e\x74\x6b\x47\xe7\x8e\xc2\xf7\x08\x09\x81\x07\x89\xc3\x30\xbb\x2f\x2d\x37\x7a\x6d\x28\x4e\xc5\x70\x62\xca\xdf\xe0\x9e\x30\x60\x87\xf6\xa0\x28\x24\x27\x85\xde\x71\x5e\x10\xaa\x67\x0a\x5b\xac\x81\x40\x29\xe6\xcb\x3b\x4b\x29\x7f\xdb\x57\x7b\xaa\xbc\x6a\xd6\xa0\xd2\x7f\xe5\x9f\x24\xed\xf0\xcf\x80\x20\x71\xd2\x85\xfa\x8d\x3d\x6f\x9e\x98\xdb\x2e\xb4\x70\x94\x12\x68\xe1\x5e\xb1\xc4\xcd\x8c\xdf\x04\x4e\xf0\x7b\xbe\x83\x0a\x3b\x3d\x28\xa5\xf9\x36\x8b\xb4\xa4\x5a\x37\x77\xaf\x7e\x7e\x73\x3a\x82\x9c\xe1\x05\x9a\x33\xc3\x3b\x34\x67\x86\x53\xc8\x15\x78\x18\x02\xae\xbd\xe7\x47\x20\x90\x07\x07\x20\x04\x1d\xcd\x5d\x40\xc9\xb3\x15\x29\xe9\x97\x44\x59\xe2\x13\x26\x44\x2f\xbf\x53\x20\xf7\x56\xa0\x40\xd9\x53\x81\x93\x56\x1b\xdf\x66\x23\xf7\x9e\x91\xe9\x88\xb1\x96\x63\x3a\xe2\x0e\x31\xdb\x3d\x83\x66\xdf\xb7\xda\xac\xa2\x04\xfe\x4c\x93\x0c\xd4\x40\x62\xcd\x06\xa1\x55\x87\x6e\x12\xe1\xd6\x41\x78\x7d\x86\x5f\xc9\xd4\xe9\xf2\xe3\xf5\x22\xb0\x71\x05\x92\xec\xa5\x25\x0c\x78\xbd\x0a\x88\x31\x0d\xf6\xcb\x67\xf1\x15\x45\x28\xbb\x47\x83\xd9\xd4\x57\x55\x50\x8d\xeb\x68\xde\x50\x5a\x02\x7c\x3d\x0c\xbb\xde\x02\x2f\xe0\xe5\xbe\xfc\x94\x7e\x8c\x06\xe1\xab\xd2\x91\x4c\x6a\xda\xd5\xb8\xae\x70\x78\x91\x84\x79\x8c\x1b\xb4\x6e\x0e\x0e\x5c\x77\x87\x31\x8f\x5b\x77\x81\x71\xda\x0a\x79\xa9\x49\x5e\x14\x08\xad\xb3\x08\x30\xdb\x32\x43\xe9\x26\xc9\x30\xd8\x24\xcd\x04\x6b\xb1\xea\x24\x6c\x24\xff\xb9\x60\xfb\x97\x90\xe3\xd7\x9e\xa5\xf5\x44\x7b\xe5\x5e\x7c\x49\xf5\x33\xc2\xc7\xd7\x5b\x04\x4d\x96\x31\xf3\xe2\x4b\x0a\x50\xfd\x5e\xad\xf6\xee\x1e\xf3\x67\xf9\xad\x17\x07\xb1\x9a\xd6\xcc\xb4\xf7\x0d\x5e\xfb\x39\x93\x14\x07\x33\x17\xa7\xd8\xba\x4e\x78\x1b\x54\xbb\x34\x1c\x6e\x3f\x34\x8f\xb3\x2c\x43\x99\x19\x9b\x59\x87\xc9\xcf\xe5\x46\xfc\xe1\x46\x96\x6d\x06\x8b\xa3\x27\xdf\x0d\xe5\x66\x15\x88\xbb\xf2\x31\x98\x97\x8b\x7c\x1a\xc2\xd4\x39\x63\x43\xcb\x9b\x19\x9f\x65\xb5\x3b\xe6\x6c\xbb\x85\x83\xc5\x21\xc3\x3d\x75\x2e\x5d\x95\xfc\xfb\x6c\x62\xb3\x5f\xc5\x64\xec\xfd\xe8\x45\x54\xbb\x92\x70\x26\x24\x49\x2c\x87\x87\xf2\x34\x50\x57\x35\x2e\x32\xa5\xfc\x2a\x27\x4f\x0c\x5a\xc8\xfe\x6f\x62\xc8\x7e\xb6\xbb\x3e\xf8\xe0\x50\x78\x00\x06\xb5\xb2\x21\xa9\x3c\x2e\x35\x7a\xf6\xa0\xef\x56\x5f\x8f\xcb\xb2\xaa\x37\x05\xe3\xcc\x7f\xb2\x8a\x65\x8c\xf6\x54\xce\x6f\xfa\x3c\x8d\xfc\x76\xe3\xfb\x5a\xf4\x91\x5f\xcb\x48\xff\xe4\xde\x8f\xd1\x1a\xc6\x6f\x39\x18\xba\x92\x18\xe8\xbe\x42\x7d\xa2\x61\x5a\xdf\xe8\xf5\x1e\xf7\x42\x51\xdb\x7c\x4e\xc7\x66\x83\xc1\xff\xa6\x2f\x03\x7c\x76\xb7\x42\x00\x3d\x9d\x03\xfb\x3d\xa2\x08\x99\xd7\xf9\x49\x8d\x44\x82\xf8\x2e\xf2\xb0\xa3\xcd\x25\xfd\xf0\xdd\xc0\x4c\xfa\x87\x7a\xa6\xb3\x3d\xa2\x0f\x3c\x0b\xf2\xad\x7b\xc3\x01\x4e\xf8\x92\x51\xf7\x1a\x7d\x5b\x5e\xce\xf8\x36\x3c\x8c\x98\xfd\xca\xa1\xf4\xdf\x67\xc5\x9a\xc7\x44\xff\x67\x78\xc3\x54\x5c\x4b\x40\xa9\xf4\x99\xc9\x4f\xfe\xfa\x86\x2b\xfe\x26\xef\x2b\xe2\xb0\x08\xdf\xfb\xcd\x16\x09\x5b\x3a\x86\x0f\x88\x43\xfc\xcd\x35\x12\xf8\xa9\x5f\xfc\x2c\xf1\xb3\x2c\x6e\xf1\xeb\x06\xbf\x6e\xaa\xea\x83\x14\x06\x0b\xa6\xe2\x74\x90\xbf\x46\xca\x2d\x7e\xdf\x72\xb0\xf4\x87\xec\x78\xc7\xed\xe8\x5b\x38\xf6\x03\xa1\xe7\xb9\x39\x4d\xb7\x1f\x94\xce\xad\x6a\xaa\x7c\x3e\x64\x8b\x85\x5b\x4d\xc2\x17\x87\x4a\xa6\xe6\x35\x49\x3e\x1f\x82\x8f\x0e\xd7\x56\xa1\x7c\x53\x2a\xf7\x43\x13\xe5\x93\xd2\xba\xe2\x66\x19\xfb\xa5\x5f\x48\x8d\xbd\xd2\x2f\x42\x6f\xd9\xb5\x3b\x0e\x0d\xfc\x3e\xbc\x9f\x1c\xe3\x44\x3f\xa7\x3c\x33\x38\xe3\x78\xb0\xec\x25\xbf\xe1\x77\x52\xf1\x1a\x3d\x3b\x0b\x2f\x32\x0b\x0f\x5f\x37\xbb\x7d\x38\xcb\xc6\xb7\x09\x04\x2c\x46\x44\x13\xff\x02\x7e\x2c\x4e\x5e\xd2\xa4\xd9\x5d\x5e\xd6\xfa\x80\x28\xab\x71\xff\x5e\x7d\xf9\xef\xff\x0e\x70\xfa\xfc\x8f\xff\xc8\x4f\x9e\x7e\x95\x57\xbf\x73\x44\xc8\x3e\xdf\x16\xbf\xe3\x08\xa1\x50\xf4\xf3\x45\x02\xc8\x8e\xcd\x30\xfa\xd6\x1b\x34\x65\xef\xb8\x36\xfb\x7f\x01\x00\x00\xff\xff\x02\xc1\x3f\x4d\x4b\xb5\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xfd\x72\xdc\x46\xae\xef\xff\x7c\x0a\xc6\x5b\x2e\x27\x55\xf2\xa4\x92\x9c\xfb\x51\xa9\x38\xb9\x8a\x1d\x7f\x9c\x63\x59\x3a\x96\xb2\x7b\xf7\xa6\x5c\x13\x6a\x48\x8d\x78\x3c\x43\xce\x92\x1c\xcb\xda\xad\x7d\x83\xfb\x00\xf7\xf9\xee\x93\x5c\xe0\x07\xa0\x1b\x4d\x72\x24\x7b\xcf\xd6\xf5\x1f\x16\xa7\x1b\xfd\x85\x46\xa3\xd1\x68\x00\x5d\xec\x76\xcb\xb2\xea\x57\xf9\x93\xfc\x38\xdf\x15\x75\xb3\xa9\xfa\x3e\xef\xab\xcd\xd5\xe3\xeb\xb6\x1f\xaa\x32\x7f\x51\x0f\xf4\xbb\xfb\x50\xaf\xaa\x2c\xbb\x6e\xb7\x15\x81\xbe\xa4\x3f\x59\x59\xf4\xd7\x97\x6d\xd1\x95\x94\xf0\xcc\xbe\xb3\xea\xe3\x6e\xd3\x76\x0c\xf4\x8b\x7c\x65\xd7\xd5\x66\xc7\x65\xe8\x4f\xd6\xd7\xeb\x66\x59\x37\xf4\xf3\x9c\xbe\xf2\x57\x8d\xa4\xb4\xfb\xc1\x92\x4e\xf7\x83\xa4\xed\x77\x96\xf4\xeb\x2e\xeb\xaa\x75\x4d\xbd\xe9\x28\xe9\xad\x7e\x66\x37\xd5\x65\x5f\x0f\xdc\xd2\x9f\xe4\x2b\xfb\x50\x75\x7d\xdd\x72\xed\x7f\x94\xaf\x6c\x57\xac\x19\xe0\x8c\xfe\x64\x43\xb5\xdd\x6d\x0a\x14\xb8\xd0\xcf\x6c\x53\x34\xeb\xbd\xc0\xbc\xd6\xcf\x6c\xd5\x55\x94\xb5\x6c\xaa\x1b\x4a\x7d\x8a\x1f\x8b\xc5\x22\xdb\x13\x12\x96\xbb\xae\xbd\xaa\x37\xd5\xb2\x68\xca\xe5\x56\x86\xf9\x2b\xa5\xe7\x9a\x9e\x53\x7a\xce\xe9\x18\x42\x55\xd2\x50\x97\x45\xaf\xe3\x20\x5c\xd2\xc8\x8b\x3e\x43\x55\x4d\xb1\xb5\xd2\xfc\x99\x55\xdb\xa2\xde\x30\xd6\xf8\x2f\xf5\xbb\xef\x6f\x5a\xa0\xf6\x4c\x3f\x09\x07\xcb\xe1\x76\x57\x01\x05\x8f\x2f\xe8\x2b\x5b\x15\xbb\x61\x75\x5d\x70\x37\xe5\x2b\x23\xa0\x5d\x4b\xb8\x68\xbb\x5b\xc0\xd9\x8f\xac\xed\xd6\x45\x53\xff\xb5\x18\x04\x3f\xa7\xee\x67\xb6\xad\xbb\xae\x65\xd4\x9e\xe0\x23\xa3\x91\x2f\xb9\x1e\x4a\x79\x43\x48\x70\xb5\x70\xce\xb6\x5e\x77\x82\x45\xce\x3c\xc1\x2f\xae\x85\xf3\xae\xda\xee\xbd\x66\x3c\xe7\xcf\x51\x51\xea\x84\xe6\xa6\xed\x17\x0d\xe1\x5d\x73\x4f\xf0\x23\x01\xe8\xb3\xa2\xdc\x12\x26\x77\x45\x53\x31\x8a\x8e\xf9\x17\xe1\x85\x7e\x65\xc5\x6a\xd5\xee\x9b\x61\xd9\x57\xc3\x50\x37\x6b\xc6\xf5\xb1\x24\xe5\xe7\x9a\x94\xb9\xbc\x90\x76\xdb\xee\xc3\x6c\x52\xfa\x9f\xe9\x67\x7e\x26\x3f\x25\xcf\x15\x42\x66\x28\xc9\x23\xe9\x97\x57\x55\x55\xca\x58\xfa\xfc\x39\x7d\x67\xbb\xfd\x66\x43\x58\xfb\xcb\xbe\xea\x07\x2e\x74\x46\xbf\x69\xfc\xf2\x3b\xab\xfb\x9e\x3e\x28\xf9\x15\x3e\x32\x9a\xba\x66\x85\xc1\x3c\xc5\x47\x96\xfd\xd6\x57\x45\xb7\xba\x7e\x97\xc9\x5f\xf4\x95\x3f\x98\xf4\x0e\x4d\x2a\xd3\x91\xd2\x90\xb4\x60\x0d\x64\xab\xb6\xe4\x1f\x4f\xe9\x0f\x55\x5d\x37\xfd\x50\x6c\x36\xef\x32\xfd\x60\x30\xf9\x92\x09\x18\xea\x01\x58\xd0\xc4\xfc\x7c\xa8\x76\x3d\xcf\x60\xfe\xbc\xee\xfa\xe1\xf1\x50\x13\xad\xbe\xdd\x37\x59\xd9\xae\xde\xd3\x2a\xe0\x15\x8d\x96\x5f\x5d\xe5\x84\xac\x47\xb4\x0e\xba\x7d\xd3\x10\x7a\xf2\x17\x2d\xa1\x8c\x9a\xa9\xa9\xfd\x67\x80\x3e\xca\x77\x9b\xaa\xe8\x09\xa4\x2a\xca\xfc\x87\x22\x1f\x8a\x6e\x5d\x0d\x4f\x1e\x2c\x2f\x69\xf5\xbd\x7f\x90\x5f\x77\xd5\xd5\x93\x07\x0f\xfb\x07\x3f\xbe\xd8\x53\xb1\x4d\xdd\x54\xfd\x0f\x5f\x17\x3f\xe6\xab\x82\x72\x08\x8d\xb7\xf9\x65\x75\xc5\x8b\x8d\xda\xca\x89\xca\x9b\x35\x2f\xb4\xdb\xe1\x9a\x1b\x24\x4a\xa0\x8f\x3e\xe7\x95\xfe\x45\xc6\x13\x40\x9c\x60\x59\x5e\x1a\x57\x43\x87\x90\xdc\xd1\x04\x9c\xdc\x9e\xff\xfb\xeb\xa3\xfc\x8c\x58\xdb\xba\xab\xf0\x4d\xff\x51\x89\xef\x72\x1a\xed\x45\xfd\xec\xe7\x45\x46\x65\x0d\x21\xcf\x8a\xa1\xb8\xe4\xbe\x87\xd9\xe7\x4c\x59\x84\x21\x0f\x4b\x91\x99\x25\x18\x63\x3f\x24\xd3\x32\xb7\x90\xa9\x0e\x5d\xfd\xa1\x8e\x37\xcc\x02\x28\x3d\x60\xf6\x4c\x70\x46\x55\xe5\xaf\xde\xbc\x39\x7d\xf6\x73\x5e\x35\x6b\xc2\x4c\x7e\x53\x0f\xd7\xf9\x7e\xb8\xfa\xef\xcb\x75\xd5\x54\x5d\xb1\x59\xae\x6a\x46\x4a\x47\x04\x9b\x13\x96\x64\x88\x8b\xac\xef\x37\xc4\xa1\x40\x05\xe7\xe7\xaf\xf3\x13\xa6\x84\x5d\x31\x5c\xa3\x23\xc3\x75\xd6\xff\x65\xc3\x88\x0a\x0d\x5e\x5c\x57\x39\x16\x03\x80\xda\xab\x31\x5e\xf2\x52\xfb\xba\xc8\xaa\xae\x5b\x12\x03\x1d\x6e\x19\xcd\x5a\xe7\x21\x68\xa9\x8e\xa8\xbd\x69\x07\x9a\xc6\x1c\xe5\xa4\x8a\xba\xf9\x50\x6c\xea\x92\x90\x1d\x11\x92\x96\x45\x62\xd9\xd2\xbc\x71\x69\xa2\xcc\xf6\x06\x43\x2d\x56\xc4\xff\xfb\xfc\xc1\xe2\x01\x18\xee\x83\xc7\x0f\x16\x59\xd3\x2e\x85\x4b\x30\x6b\x2e\xeb\xbe\xb8\x24\x36\x2d\xdb\x46\x67\x5c\xef\xcf\x4c\x3f\xd2\x15\x85\xc8\x13\x08\xc6\x2d\x6f\x45\xd8\x01\x98\xb8\x0a\xe2\xd7\x60\x36\xca\x66\xfc\xd8\x8d\x27\x85\xf9\x15\xb6\x14\x12\x26\x63\xce\x6c\xc2\x8c\xba\x8e\x77\xbb\x4d\xbd\x92\xa6\x5f\x48\x5e\x24\x34\xde\x98\x15\x29\x1e\x0e\x84\x62\x79\x8e\x5c\xa8\xd7\xcc\xb6\xf2\x84\xcf\xa3\xfc\x75\x45\x2b\xe7\x7a\xbf\x96\xcd\x69\xd3\xee\xcb\x2f\xc0\x50\x6c\xe6\x22\x3f\xc9\xdf\xb6\xd4\x61\x50\x47\x00\x88\x4d\x1c\x13\x63\x60\x59\xa0\xab\xb6\xed\xc0\x88\xd3\x62\x35\x4d\xcf\x4d\x4d\x99\x34\xd2\xbe\xf8\x40\x6c\x71\x68\x65\x49\x96\xb4\xe4\x56\x5c\x31\x71\xb0\x3d\x6d\xe8\xb2\x2c\x88\x8f\xc8\xd2\xb0\xb4\x94\x06\x01\xb5\xdd\xd3\x6a\xba\xa6\xca\x18\xf1\x2c\x90\x50\x95\x73\xfd\xc4\x90\xa8\x1e\xac\x72\x5a\xb9\x2d\x6d\x9e\x3c\xd1\xcf\xf0\xa1\xbf\x7d\xfd\xd4\xab\xe2\xea\x8a\x7a\xd5\xd3\xaa\x78\x99\xaf\x36\x2d\x2d\xa9\x5f\xdf\xbe\xee\x79\xc1\x5c\x2f\x77\x6d\x07\x41\x84\xb2\xce\xe8\x33\xa4\x39\x44\x33\x44\xb3\xdf\x5e\xd2\xaf\x9b\xeb\x9a\x18\x35\xd0\xce\x25\x58\x48\xa2\x54\x6a\x62\xdf\xd3\x14\x1e\xe5\xb4\x84\x69\x04\x84\x32\x10\x00\x8f\xc1\xa8\x8e\xc1\xaf\x88\xc6\xf6\x1d\x2d\xa7\xeb\x61\xd8\x59\xcb\x2f\x2f\x2e\xce\xa4\xe9\x90\x7a\x57\xdb\x85\xa3\x0c\xcc\xc1\x86\x45\xa3\x26\x6f\x9b\x05\x88\x64\xdf\x6d\x46\xf4\x43\x63\xb5\x9c\x03\x78\xe1\x2e\x7c\xcd\xff\x9d\x47\xf4\x00\xcf\x3d\x09\x7d\x37\xa0\x26\xc2\x31\xc4\x15\xa2\xe9\x76\xc7\xd5\x3a\xa2\x3e\xd5\x84\x48\xc9\x00\x0d\xf9\x90\x6f\x28\x13\x02\xa5\xdb\xa3\xb7\x34\x5c\x65\xa2\xe7\x27\x84\x04\x70\x52\xa4\x5e\x75\xed\x96\x52\x9f\xd3\x9f\x98\x10\x3b\x7f\xc2\xf5\x01\xa6\x28\x4b\xe2\xf1\xfd\x51\xfe\xf6\xf9\xd3\xfc\xbf\x7c\xf7\xed\xb7\x8b\xfc\xd5\xc0\xeb\x90\x49\xf3\x3f\x98\xa4\x0a\xed\x78\x04\x25\x7e\x35\x10\xd5\x3d\xe0\x75\xf5\x20\xff\x01\xb9\xff\xa3\xfa\x58\x90\x7c\x58\x2d\x56\xed\xf6\x47\xe6\xa9\xdb\x82\x56\x3e\xe7\x10\xb1\x2a\x15\x9f\x57\x4d\x49\x1f\x22\xad\x69\x96\xe3\x05\x9a\xed\x64\x37\x11\x5a\x97\xab\xb6\xb9\xaa\x3b\x1e\xcf\x2f\x0d\x48\xc1\xc4\x59\xda\xab\x91\x63\x22\x11\xa1\x8c\xd8\x47\x7d\x75\x1b\x41\x31\xd2\x37\x9c\xa8\xb3\x99\x09\xc9\x2d\x55\x3c\x0f\x38\x3e\x17\x4a\xe4\x49\x3b\xa5\xd1\x75\x86\xee\x3e\xe2\xbb\xbd\xba\xe2\x8d\xd6\xb6\x08\x6d\xe1\x54\x52\x65\xb7\xf0\x20\x44\x89\x3b\x08\xe4\xcf\x94\x82\x9f\x3e\x7b\x93\x57\x1f\x88\xd4\x98\xe5\x75\x6d\xb9\x5f\x81\xbc\x18\xf6\x88\x39\x35\xf1\x87\x9e\x16\xc6\x4a\x36\x15\xc7\x21\xb8\x6b\xcc\x86\x56\x04\x44\x8c\xc1\x38\x35\x49\x91\x1f\x88\xed\x77\xae\x89\x17\x96\xa4\xbd\x9f\xc0\x4e\x3a\x15\x4a\xf0\xc8\x57\x34\xe1\x44\x14\xd2\x8b\x5e\x3a\x25\xd9\x44\xeb\x44\xc4\x7b\x3a\x9d\x14\x25\xf5\xe5\xf2\x16\x4c\xa7\x67\x5a\x28\xab\xab\x62\xbf\x19\x62\xbf\x46\x3b\x88\xb5\x74\xce\x07\x24\x9f\x37\x5b\x60\xd2\x41\x10\x4f\x3f\x2e\x4b\x54\xd8\x90\x90\x23\x3b\x0d\x93\xab\x9c\x40\x6c\xd3\x21\xde\x54\x61\x7a\x96\x51\xde\xd7\xf9\x32\xb1\x3f\xcd\x0f\xcd\xbe\x15\xb1\x27\xc7\x3e\xcb\x35\x5a\x05\x2c\x27\xcc\xf7\x65\x91\xa9\xac\xb4\xd4\xa3\xda\xf2\x43\x8d\x83\x50\x20\x57\xa9\x52\x8f\x6f\xcc\xd4\xfe\xc8\x00\x7c\xc2\xea\x67\xcb\x86\xde\x9c\xf2\x20\xfb\x70\x10\x12\x9c\xf3\x70\xd1\x02\xcb\x6f\x34\x4b\x1f\x6a\xf0\x78\x25\x18\xe0\x85\xa8\x06\x4d\x53\x53\x7d\x55\xa1\x06\x2a\xff\x35\xd5\x89\x32\x0b\x3d\x1d\xa8\xc0\x6e\x72\x1f\xef\xf5\x65\x0b\xc1\x01\x1b\x09\x95\x36\xb4\x8e\x36\xf5\xbc\xab\xd7\xd7\xc4\x58\xdb\x9b\x23\x41\xca\xcd\x75\x5b\xf1\xfa\x79\xf5\xec\xc9\x37\xd2\x8f\x35\x6f\x2b\xa1\x10\x6f\x48\xc5\x9e\x88\x8b\x30\xa6\x64\x2c\x5d\x08\x1b\x3b\x20\x27\xe7\x10\x01\x1a\x1f\xfc\x26\x72\x44\x60\x1a\xca\x2b\x7c\x9e\x32\x89\x08\x23\xa5\xed\xf0\x28\x0d\x0b\x53\x52\x59\x7f\xb9\x6e\x71\x88\x31\xd9\x9e\x77\x4a\x3a\x0a\xf7\xc3\x72\x5d\x0f\xcb\x2b\xe6\x5c\x5c\xf1\x73\xae\x80\x37\x6e\xca\xc9\x1f\x51\xd6\xa3\x9c\xb8\x1f\x9d\xcc\xca\xef\xf3\x87\x1f\x54\x5a\xfc\x8e\x59\xd2\x92\x16\x51\xbd\xc1\x8c\xe8\xd1\xa8\xab\x44\x58\xb5\xe3\x77\x90\xd8\xfa\xfd\x0e\xfb\x9a\x0a\x87\xe1\x24\x50\xb6\x37\x0d\x2f\x3e\xb0\x5e\x62\x33\xf5\xaa\xa6\x0d\xe3\xb2\x6e\x0a\xda\xdc\xad\x16\xb0\xf4\x87\x44\x12\x6f\x4e\x2f\x00\xb8\x6e\x2f\xf7\xf5\xa6\x34\x80\x45\x66\x02\x24\x89\x8f\x3a\xf9\x5e\xa4\xb6\xa4\x5a\xfa\xb2\x6a\x3b\x96\x46\x30\x1a\x2b\x78\x40\x0c\xea\x58\xbc\x40\x72\xcd\x67\x19\xc0\xa2\x5c\x90\x58\x18\x0d\x34\xfb\x38\xa6\xb1\x3c\x03\xb2\xa9\xfb\xe6\xd1\x80\x9e\xae\xf6\xd4\x16\xcd\x3c\x27\x53\xc1\x3e\x7f\xfc\x23\xfd\x9f\xb1\x74\x24\x1b\xc0\x7a\x8a\x78\xce\xcc\x25\x73\x2f\x4b\x31\xe9\x6a\x42\xe3\x61\xa6\x8d\x82\xdd\x58\x7d\x7f\x8d\x04\xfa\xbd\x10\x2d\x6b\x4a\x36\x34\xad\xd5\x17\xf4\xc1\xa7\xb6\xf5\x06\x93\x50\x0c\x7a\xb4\x6a\x09\x6f\x4c\x20\x47\xb2\x66\xae\x68\x68\xcc\x4a\x87\xe2\x7d\x85\xd3\x18\x6d\xf8\xbf\xb1\x0a\xe8\x5d\xb6\x17\xf9\xb3\xdd\x94\xe1\xac\x03\xc2\x26\xc6\x52\x25\x1a\x8c\x08\x13\x68\xb6\x27\x39\x7b\x75\xbd\x0c\xfa\x23\xc6\xc9\x50\x7d\xc4\xd6\x8f\xac\xa8\x4e\x62\x82\xe7\xac\x6c\x7b\x8b\xd9\xe2\x31\x9c\xdc\xc6\xc9\x22\xe1\x93\x96\x09\x9d\x63\x2f\x5b\x46\xda\x87\x2a\x40\x3d\xf5\xa9\x69\x01\xaa\x8b\xc4\x64\xad\x2a\x55\x34\x50\x96\x68\x43\x34\x57\x34\x22\x7d\x06\x46\xa6\xca\x2f\xf0\x3b\x9a\x4e\x3d\xd4\x2f\x68\x5e\xa0\x31\xb0\x96\x89\x2b\xde\xca\xb2\x70\x6d\x66\xbf\xa9\x62\xec\x5d\x66\x70\x6f\xd3\x7c\xe2\x28\x74\xfa\x8f\xca\xa7\xa5\x4d\xae\x29\xa1\xa0\x38\x51\xa6\x12\x05\x8a\xeb\x6a\xc7\xb2\xc7\xb6\x07\x55\x6c\xf8\x90\x7d\xab\xa2\x73\xa0\x8f\x9f\x84\x5d\x13\xc1\x10\x93\xfb\x22\xeb\x5b\x5e\x6f\xcb\xcf\xac\xe2\xe7\x9a\x28\x01\xe5\xd3\xad\x4e\xb4\x62\x24\xe1\xf2\xf4\xd1\x22\xbb\x3d\x4a\x0f\x55\xd7\x45\x4f\x2c\x9c\x24\x05\x2d\x56\x2e\xec\x70\xcb\xd3\x4e\x47\x39\x2c\x19\x68\xf2\x40\xe4\x52\xb2\xed\xc6\x7b\x30\xf7\x50\xb8\x9c\xb6\x12\x24\x27\xc8\x45\x5e\x7c\x9a\x69\x93\x10\xb6\xad\x58\x72\x5e\x6e\x45\x83\x26\xbf\xf2\x93\x2a\xa3\xcd\x70\x4d\xeb\xd9\x08\xf6\x09\x2b\x3e\xd6\x38\x60\x28\xbd\x32\x40\x35\x78\x36\xac\x10\x96\xf2\x93\x69\x2c\x89\x31\xdc\x40\x2b\x44\x4b\x7b\x82\x7e\xda\xb0\x28\x7b\x61\x6c\x5d\x24\x04\x08\x7a\x3d\x31\x8b\x88\xc4\xe3\x9c\x55\x8f\x1e\x4a\x85\xd6\x30\x2a\x86\x67\x9e\xf1\xc3\xe5\x8f\x0f\xfb\x1f\xbe\xbe\xfc\x31\x70\xd6\xd5\x75\xb5\x7a\x2f\xe4\x57\x37\x97\xed\x47\x1c\x69\xa1\x22\xa1\xd3\x34\x2f\xb1\x87\x65\x4e\x47\xdc\x0e\x27\x2a\xe2\x04\x54\x8c\xf0\xce\xb9\xc9\x9c\x51\x5f\x98\x61\xd0\xbe\xb6\xc2\xa2\x02\x7d\x47\x7a\x3c\xe6\x54\xa6\x48\xb0\xff\x48\x92\x18\xc7\xa6\xde\xd6\xc3\x84\x24\x98\xbf\x14\x4a\x5a\xaa\x25\x33\x1c\xa1\xae\x38\x4a\xe2\xd2\x54\x0d\x6d\xaa\x46\x26\x37\x05\x1d\xa1\xbe\xcb\x89\x34\xf6\xb4\x3b\x71\x67\x69\x3c\xc4\xa6\x0b\xde\x95\xe9\xf8\x54\xf4\xcb\x7d\xa3\xe8\xaa\x4a\x23\x92\x97\x35\x36\x0f\x6e\xd7\x48\xd9\x41\xa5\xc7\x80\xfc\xcb\x80\xc9\xaf\x16\xaa\xd4\x42\x29\x66\xe8\xdc\x9f\x9a\x65\xd6\x62\x6e\x4e\x88\xdf\x35\x95\x9c\x79\x31\x7e\x06\xe3\xe9\xa3\x83\x53\x9c\x14\x3a\x7d\xbd\xa7\x14\xe0\xf9\x72\x3f\x0c\x2d\x9f\x48\x36\x4c\x0b\x52\xc6\xfa\xfc\x14\x80\x38\x62\xc5\xfa\x30\x99\x63\x2c\xe9\xa1\x0a\xdb\x71\x8f\xf5\x2c\x7a\x6d\x3e\xc8\xa5\x43\xd3\xed\x2f\x40\x95\xa2\x41\x2a\x9a\xdb\xa8\xd4\x40\x1f\xb8\xb9\x61\xbe\x27\x5f\x76\xd5\x57\xb1\x2f\x61\x1d\xa0\x84\xf6\x47\x4a\xbb\x25\xf2\x16\x99\xa2\x57\xb5\x85\x64\x9b\x99\x6a\x27\x23\x69\x74\x29\x6a\x91\xcf\xd4\x4e\x3c\x93\xc4\xc9\x12\x58\xa6\x41\xa0\xf4\x62\xd4\x56\x3c\x09\x4e\xd1\x37\xa4\x3d\x8e\x9b\xd2\xd0\xb6\xcb\xfe\x5a\xce\xdc\xd6\x3d\x3a\xaf\x37\xeb\x44\x59\x85\xbb\x10\xd0\xdb\x7f\xe5\x9d\x8f\x07\xfa\x2e\xd3\xa9\xa8\xdc\x7a\x50\x42\xb5\x1c\x9b\x32\x59\x16\x01\xde\x84\xb4\x3f\x56\x1d\x1f\xeb\x00\x94\xcc\xd5\x21\x24\xa6\x63\x08\xdc\x30\xee\xea\x6f\xfd\xda\xd5\xe4\xab\xfd\xe6\x28\xbf\x91\xed\x3e\x96\x09\x47\x4a\x15\x04\x98\x2a\xe5\xde\x86\x86\xd7\x96\x05\x8d\xef\x16\x7a\xea\x3f\xd3\x9e\xd4\xe0\x06\xa0\xcd\x28\x43\x0a\x9d\xe0\x83\x40\xf9\x4c\xfc\x2e\xe3\x4d\xff\xcd\x48\x9a\xe5\x4d\x4d\xd3\x9c\x44\x85\xac\x5f\xfc\x0d\x47\x18\xf3\xd9\x8c\xe0\xfb\xb6\x8a\x17\x1d\xf8\x0a\x83\x3f\x3f\x7f\x79\x61\x87\xdc\xf3\x97\xf9\xfb\x4a\xeb\x7e\x39\x0c\xbb\xfe\x57\x68\x3b\x44\x75\xc1\x7a\x8e\xb3\xe2\x96\xa5\x4c\x49\xd6\x1f\xc8\xb8\xa8\x8a\xad\x76\x92\x3f\xa5\x8a\x63\xda\x7f\x35\x91\x3f\x69\x5b\x76\x5a\xb4\x0c\xf2\xd6\x2f\x89\x98\x2d\x84\x1f\xce\x3c\x95\x5e\xa2\xfc\x3e\xd1\xfc\xfd\x9e\x15\x9b\x1d\x1d\xcb\x58\xe0\x71\x60\x50\x72\x5d\xea\xe9\x2c\x07\x08\x08\x7d\xbf\x25\x02\x59\xe1\x34\x4a\x05\xbe\x7c\xbc\xfc\xca\x29\x3d\xd3\xca\x4a\x5a\xff\xff\x50\x85\xfc\xcd\x42\xb1\xaf\xb7\xaf\xff\x6a\xa3\x48\xaa\xe3\x74\xe2\xa5\x04\x01\x11\x34\x42\x05\x20\x6c\xe4\x2c\x8e\x0e\xac\xf3\xa2\x04\x12\x79\x93\xaa\xb7\xc5\xc7\xfb\x0a\x6e\xdb\x99\x72\xc2\xe5\x62\x21\x63\x66\x3a\xc4\x64\xf5\x10\x38\x2b\xb5\x0e\x02\xd3\xc4\x13\x48\xdd\xac\x36\xfb\xf2\x60\x47\xfa\xfd\x25\x2d\x24\x16\xa5\x1f\x3d\xec\x1f\x71\x95\xcd\x7b\xda\xb4\x9b\x00\xff\xab\xfc\xce\xf1\xfb\x7b\xbb\x81\xa3\xb3\xae\x9e\x2f\xf2\x70\x17\x47\xb2\x47\xc9\xfb\x07\xce\x09\x8b\xc8\x7a\xfc\xd9\x21\x10\x3f\x14\x16\x7a\xb6\x0b\xeb\x9f\xb5\x14\x38\x46\x11\x01\x2e\xe2\xad\xe1\x92\x65\x80\x25\xcb\xe4\x8d\x97\xbc\x99\x5f\xda\x0e\x0b\x29\x01\x10\x72\x79\xb4\x9c\x96\x1b\xad\xce\x83\xc5\x49\xd2\x99\x29\x7d\x3a\x55\x33\x1f\x28\x3f\xd0\x02\x9b\xa9\x20\xac\xbb\x83\x05\x65\xee\x51\x88\x46\x5e\x8e\x19\xc7\xb4\x1c\x43\xd1\xa1\x70\xb3\xa9\xd6\xac\x8f\xb4\x76\x93\xc6\x74\x9e\x69\x5b\x14\x30\x4f\x6e\x11\xc1\x61\xae\xfc\xb4\xfa\x23\x4e\x98\xa2\xf4\x70\xc9\x8a\x1a\xaa\xaa\xc3\xc5\xaf\x3b\x62\x6a\x37\x74\x9b\xd8\xf2\x69\xaa\xdf\xf3\x2e\xc5\x27\x2f\x11\xbe\xd2\xc9\x60\xf9\x03\x55\x55\x68\xe2\x70\xf5\x44\x8a\xcc\xd5\xef\xab\x1f\x60\x9f\x59\xb5\xd7\x48\x4c\x2b\xd6\xca\x03\xd0\xa1\x6a\xc3\x71\xb9\xfa\x58\x43\xb9\xfb\xa2\xfe\x50\xe9\x81\x39\xe8\x09\x90\xb7\xc8\x36\xc4\x3a\xf8\x64\x26\xa3\x12\x29\xbd\xfd\xc0\x8b\x91\xdb\xe3\x5c\x29\x27\xca\x5e\x1d\x14\xcf\xb3\x1e\xbd\x71\x41\x54\x95\x47\x24\xec\x70\x09\xea\x27\xd6\x76\xb1\xb9\x29\x6e\x7b\xa8\x91\x8c\x3f\xb1\x5a\x5b\x8a\x33\xf3\x21\x51\x68\x8d\x5e\xf9\xcb\x13\x5a\x70\x86\x09\xbe\x05\xe0\x9d\x26\x48\x2c\x37\x38\x3c\x83\xb9\xa8\x62\xea\x83\xdb\xd3\x75\x63\xe2\x83\x3f\x1f\x93\xf9\x04\x23\xd9\xae\x22\xdc\x4a\xea\x3e\x31\x53\xf6\x88\xc5\x44\x6a\x86\xc5\x36\xe2\xde\x82\x6b\x92\x82\x09\xb3\xe8\x92\xd3\xa4\xec\xa9\xfe\xc7\x22\xf6\xd7\x84\x43\x3e\x45\x46\xe5\x02\x6f\x64\x34\x2b\xa6\xfc\x97\x74\xa8\x06\xb2\x7e\xa0\x25\xc0\x98\xb6\xab\xfe\x3f\x3b\xa1\x25\x47\x2e\x96\x18\xd0\xd4\x5f\xd7\xbb\xbc\x85\x4e\xd9\xa3\x30\x92\xad\x13\xb4\xf9\x9a\xa3\xc2\xb1\x82\x75\xeb\x5d\xd1\xf4\x57\x15\x94\xec\xdb\xfc\x8a\x6f\x93\x17\xda\x34\xcb\xed\x72\xe5\x7f\xa0\x65\x39\xa1\xa1\x69\xbf\xb7\x60\xee\xdc\x44\xa5\x4d\xcb\x9d\x0b\x34\xb9\xe8\x03\xb0\x1a\x6b\xea\xad\x0f\x4c\x66\x13\x14\x40\x7c\x4e\x6e\xd0\xac\x37\x1f\x2a\x8f\x88\xab\x7f\x74\xe4\x0e\xeb\x7a\x8f\x20\x57\x2f\xe9\x34\x51\x8a\xb4\x2b\x5a\x52\x56\x50\x27\xa3\xe7\xa2\xee\x56\x9d\xd6\x48\xa5\xad\xf0\xc2\xe0\xb5\x32\xaa\x10\x3a\x9c\x78\x62\xca\xe4\x06\x7e\x79\x49\x5d\x5c\x5d\x27\xab\xf3\x02\x39\xb9\xe4\x4c\x16\x68\xf6\x1b\x37\xfd\x2e\x93\x3b\xf8\x65\xd0\xd8\x3f\x95\x3b\x79\x11\x7b\x55\x03\x3f\xe4\xa6\xa6\xe7\x6b\x14\x2b\x22\x4a\xf9\x3b\x4b\xf2\x2e\x6c\x1a\xd3\xff\x68\x49\xe2\x80\xe2\xfd\x5f\xe9\x8b\x0f\x02\x4d\x96\x5c\x3c\x8e\xb4\x28\x90\xb5\xeb\x81\x57\xd8\x19\x2d\x0c\x12\x7a\x8e\x35\x85\x0e\xf1\xe0\x0e\x50\xec\x3c\xb7\x6f\x9a\x8f\x82\x99\x1e\x2f\x6d\xf9\x52\x38\x51\xb2\x3d\xb7\xef\x8c\x75\x00\xdb\x05\x36\x07\x16\xd2\x71\x87\xe1\xb6\x04\x16\x16\x78\xda\x2c\x6f\xe1\xe0\x77\xc5\x40\x6c\xb1\x91\xb3\x9a\x70\x28\x5f\x54\xb3\x43\x15\xe1\xa6\x9b\x6b\x61\xab\x10\x41\xc5\xbb\x2c\x1a\xab\x98\x9d\xca\x9c\xce\x58\x59\x4c\xaf\x02\xf2\xbf\xd1\xa7\xea\x7b\xc0\xbe\xf0\xa1\x07\x76\xdc\x31\xdb\xc5\x20\x0c\x67\xdc\xcf\x4c\x35\x64\xa9\x7a\x4c\xc9\xfb\x49\xfe\x4c\x3e\xec\xe8\xbf\xaf\x31\xa6\x9a\x8e\x11\x3b\xe0\xdd\x99\xd6\xe8\x44\x84\x4e\xab\x05\x55\x54\xd3\x77\xd3\x13\xab\x54\x02\xba\xb5\x8b\x23\xc8\x00\x7c\x6f\xe1\x4e\xae\xac\x79\xc6\x91\xb6\x71\x97\x62\x7c\xd5\xc3\xc7\x70\x02\xbb\xa9\x2e\x73\xd6\x05\x13\xdd\xd0\x09\x51\xc7\xb9\x2d\xe8\x70\xf9\xa1\x2e\x82\xda\x89\x26\x8b\x6d\x77\x74\x13\x7d\xce\x76\x3b\xb8\x65\x9f\xda\x97\xf1\xad\x95\x5e\x04\xbd\xd6\xcf\x6c\xbf\xe3\x9b\x15\x37\xde\x5f\x91\x10\xc6\x9b\xe6\xbb\x43\x1b\x46\x6e\xc5\x82\x6a\x47\xc0\x4b\x77\x8a\xe3\xeb\x05\x5d\x3d\x33\x76\x63\xba\x82\xca\x31\x48\x54\xc0\x80\xc3\xa8\xd5\x0c\x90\x29\x17\xbd\x18\x3e\x6d\x8c\xf9\x75\x7b\x93\x6f\xea\xe6\x7d\xaf\xd8\x64\x36\xe6\x0f\xb0\x50\x58\x11\x0d\xee\xc5\xa0\x48\x3e\xa7\xf6\x4b\x76\x05\x35\x5a\xe0\x76\x51\x25\x97\x71\xc7\x48\x9e\x85\x8d\xc7\x78\xbb\x2c\xbb\xaa\x58\x48\x06\x4f\xb3\x8b\x3d\x1a\x65\xdb\xf6\xaa\x1e\x8d\x3c\x84\xd3\xa0\x75\x51\x28\xc5\x79\x80\xd0\x29\x39\xb6\xeb\x44\x2c\xa9\xcc\x2e\x00\xad\x03\x58\xa0\xcb\x7a\x2b\xe6\x80\xbf\xda\xf5\x20\xe6\x27\x9c\x25\x90\x0d\x6b\x93\xb4\xf7\xfe\x52\xe4\x4d\x6b\x97\x8f\xc6\x0c\x2d\xf3\xc8\xf6\x7c\xc1\x00\x76\xec\xa4\xb3\x63\xfa\xd0\x0a\x4c\xbf\x7f\x0f\x99\x18\x11\xf8\x0b\x23\x99\xf8\xc0\x1f\xda\x4d\x22\xd9\x3d\xd5\x9b\x8a\x90\xcf\x98\x75\xf9\x6f\x70\xb5\x17\x34\x0f\x7c\x18\x5f\x8e\x40\xf4\xb0\x9e\x40\xce\x0a\xd0\xd6\xd6\x41\xe1\x79\xd4\xfb\xc9\x5a\xb1\x72\x37\x84\x05\x3f\x70\xa5\xee\x72\x61\x06\x3e\xac\x67\x95\x7b\x42\x58\x62\x88\x35\x4a\x83\x4b\x46\xa9\x82\x50\x05\x9e\xd3\x87\x53\xc5\xb1\x30\x1f\xbe\x1d\x10\x6b\xc4\x90\xaf\x06\x89\x09\x8f\xaa\xcc\xaa\xc1\x73\xb1\x5d\x47\xc4\x41\xbb\x6c\xca\xcd\x26\xfc\x2b\xe1\x55\x60\x55\x2d\xee\xe8\x23\x8b\xa2\xc3\xa2\x56\xc5\xbc\x1e\x5f\x96\x12\x94\x48\x44\xc4\x2c\xe6\x6a\xb2\x32\xe6\x90\x2b\xec\x39\xf4\x91\x7e\x08\xd7\x92\xb1\x3e\xd3\x84\x51\xbe\x0d\x46\xb2\x0d\x6d\x33\xa3\x51\x91\xc3\x98\x6f\xdd\x88\x89\x44\xb8\xb4\x4b\xb8\x47\xfe\x0c\xec\x84\x26\x4d\x74\xd6\xc6\x4c\x7e\x1a\xb7\x1e\x67\xfb\x97\x54\xdb\x2d\x63\x4b\x69\xfd\x8b\x8c\x7a\x04\x4a\x8c\x57\x9f\x25\xa6\x38\xd5\xa8\x31\x94\x87\x10\x9d\x4d\x48\x5d\x26\xba\x78\xa8\xd5\x3f\x47\xff\xce\x7b\xf6\x3f\x41\xf5\x9e\x34\x15\x55\xef\xa1\x93\xa3\x75\x30\x19\xe5\x74\x41\x50\x06\xc4\x07\xa5\x65\x27\x14\x28\x35\x07\xd9\x80\x5b\x91\x23\x09\xa3\x87\x92\x20\x41\x28\x25\x60\xeb\x60\xf9\x14\x76\x45\x30\x0a\x94\xf3\x49\x3f\xd1\x27\xa7\x73\x7e\x8c\x03\x18\x21\x45\x60\x61\xb8\x47\x1b\xb2\x08\xaf\x7a\xa0\xdb\x32\x1e\xe4\x62\x3d\xd8\x78\x4d\xee\xcd\x8e\xf4\xd4\x73\x5d\xaf\xaf\x69\x5c\xf5\x96\xef\x93\x41\x49\x76\x69\x19\x0f\xa5\xfc\x8b\x18\x49\xbb\x6e\x58\x61\xc5\x2d\x88\x51\x57\xd8\x58\x7e\xe8\x87\xae\x6d\xd6\x3f\x3e\x6b\xf9\xb4\xc8\x7a\x1c\xde\xfc\x7e\xfa\xe1\x6b\x4d\x27\x66\xc9\x53\xc8\x16\x80\x2f\xea\xe1\xe5\xfe\xf2\x51\x9f\xaf\xd9\x24\x15\x77\x2d\x85\x33\x54\x55\x4b\x02\xb1\xb8\xbb\x69\x02\x5a\x60\xb6\x4a\x6b\xbc\x6f\x37\xb4\x40\xd2\x22\xed\x76\x2b\xd3\x4b\x8c\x7f\x2b\x90\xe8\x3f\x8c\x0f\xaa\x06\x98\xab\x3a\xc5\x0f\x55\xb8\x08\x24\x1e\xe7\x47\xa7\xcd\xa4\xbc\x44\x3b\xa2\x72\x16\x03\xe3\x3e\xb5\x19\xdc\x76\xc1\xaa\x91\x3c\x14\x83\x80\x30\x2d\x86\x89\x64\x65\xd3\x54\x31\x83\x03\x00\xea\xb0\xf2\x54\x94\x7a\x22\x92\x12\xa7\x59\x9b\x22\x23\x54\xac\xf8\x16\xd2\x72\xe4\xcb\x7b\x84\xa9\x6d\x21\xef\x86\x0e\x82\x60\x47\x2b\x5c\x79\x9a\x8c\x5e\x39\x9a\x8d\xc0\xf1\x34\xc5\x49\xe4\x6a\x63\x98\x84\xaf\x55\xc2\xd5\xac\x17\x9e\x9f\x89\xd5\x92\xf0\x34\x21\x49\x3a\x60\x30\xc7\xfe\x44\x7e\x36\x69\x37\x0e\xdc\x9a\xfb\x04\x9e\x86\x31\x1d\x03\x1d\x34\x16\xa8\x44\x74\xa6\x5e\xab\x02\x04\x19\x6c\xee\x1a\x0f\x3b\x6f\x5a\xbd\x36\xcb\x2d\x11\x73\x42\xa7\x9b\xa1\x4a\x16\x33\x77\x02\x06\x8a\x62\x83\x03\x9d\xca\x7f\xcb\xcb\x82\x38\xc1\xd0\xbe\x27\x62\x9a\x16\x41\xfa\xa1\x42\x81\xc3\xd8\x11\x43\xf9\xcb\x71\x64\x0f\xe3\x43\x87\xde\x3e\x1f\x64\x31\x8e\xb3\x68\xad\xc1\x0e\x4a\x14\x42\x30\xfe\x66\x6b\x91\x52\x38\x89\x32\x02\x35\xf6\x09\x1c\x80\x24\xab\x86\x81\xa0\xb4\xe5\x0f\xfd\xed\xa7\x25\xa9\xdf\x2d\x17\xe2\xdf\xfb\xc6\x31\x50\x21\x87\xa5\xa0\x22\x0c\xf2\x8c\x4e\x90\x30\x75\x3c\x96\x0a\x2f\x38\xbb\x57\x33\x5f\xbd\xc4\xb7\x22\x2f\x34\x11\x6b\x00\x80\x82\xf0\x3e\x20\x02\xbf\xa2\x32\xc1\x6a\x51\xfb\x0c\xb5\x62\xc4\x1c\x10\xd5\x19\xcb\xbc\x16\x7b\x8d\xfc\xf8\xec\x15\x6d\x19\xa1\x41\xab\xf4\x97\x82\x24\x68\xe9\xc2\x4d\x50\x64\x30\xb1\x8d\x79\x6e\x90\xf5\xa5\xb8\xe9\x4d\x51\x12\x4b\x3c\x0c\x6a\x32\x20\x19\x4c\x9a\x2f\x38\xae\x7a\xa7\xdc\x91\xd6\xd0\x93\xf1\x6e\x15\x86\xfa\x05\x61\x36\xa8\x18\x79\x69\xed\x6e\x99\xff\x3b\xfb\xac\x42\x30\x74\x03\x0e\x3e\x32\x0c\x23\x48\x28\x38\x72\x5e\xc2\x5d\xe0\x1f\xd6\x61\xe5\x20\x7e\x2a\x3d\x1b\x99\x9d\xcc\xc8\x54\x66\x8b\xcd\x71\x96\x9d\xd5\x93\x8e\xf9\x3e\x3e\xc3\x84\x1f\x8f\xdf\x77\x70\x19\x3f\x2a\x47\xca\x67\xb3\xcd\x06\x8a\x96\xa6\x47\xfc\x26\x97\x8d\x50\xcc\x1b\xb8\x15\x39\x55\x28\x45\x38\xa3\x61\xaa\xe5\xa6\xda\xb0\xb9\xaf\xb6\x1e\xaf\x3e\x75\xe8\x89\x21\x80\x02\xb9\x13\x68\x15\xa5\x5b\x41\x85\xd7\xce\x59\x65\x04\x41\xcb\x0d\x77\xff\x72\x84\xb7\xfd\xfa\xe9\xf1\x9b\x37\xa7\x17\x71\x9b\xe6\x75\xd0\x94\x24\x4c\x7c\x11\x4c\xe4\x26\xfd\x32\x43\xb9\x30\x81\x29\x44\x34\xd5\xd3\x12\x87\xe0\x3c\x9b\xb2\xda\xe9\x73\xdd\x82\xf7\xb4\xdc\x17\xe3\xe5\x49\xff\xcb\x43\xf3\x97\xfd\xc6\xf2\xcd\xbb\xcc\x74\xdc\xa7\xfc\x37\xf3\xd7\x04\xee\x66\x06\x4b\x2f\x5e\xe0\x44\x5b\x7c\xea\x40\x5b\x4e\xae\x0d\xc0\xa4\xf7\x05\x8e\x44\x84\xfb\x16\x7b\xc5\x55\x8e\x8b\xee\x23\xd6\x82\xb6\x1d\x16\x0c\x23\x77\xdf\xd4\x7f\xd9\x43\x40\xe3\x03\x11\x31\x0f\xb6\xbc\xbc\xac\x37\xb2\xa1\xfc\x31\xfc\x90\x74\xfe\x1a\xd9\x8b\xbb\xc6\xe9\xd7\x0f\xfd\x8e\x0d\x57\x69\x6f\xe8\x9f\x3c\xd8\xd7\x39\x2b\xd5\xd8\x70\xeb\xc1\x8f\x74\x82\xe1\xeb\x6f\x9a\x3e\x82\xf8\x71\x52\x1d\xfb\x8c\xad\x44\x03\x17\x4c\x80\x40\xb7\x9a\xce\xab\x85\x25\xde\x44\xed\x27\x88\xff\x07\xda\x64\x07\xb5\x38\x8e\x2f\xf5\x74\x4c\x38\xc2\xda\xfd\x50\x6c\xf6\xa9\x92\x84\x5b\xe7\x32\xfd\x57\x19\x8c\xe1\x63\x59\xd8\xf8\xc0\xb5\x91\x33\x88\x1a\x7e\x02\xd2\x86\xbb\x3d\x9c\xd8\x09\x92\x45\xbf\x2f\x32\xf4\x44\xf5\xce\x63\x5f\x39\xe4\x99\xd9\x3b\xe7\xc1\xf6\x1d\xa9\x33\xb3\xe1\xbc\x5a\x8a\xcd\x20\x1a\xe7\xdc\xcd\x26\xb3\x16\x0c\xa2\xf2\x14\xa3\x17\x83\x81\x83\xf5\xab\xae\x86\xe9\xbe\xa4\xb3\x63\x64\xee\x9c\x22\x43\x62\x6c\xf7\x9c\xe8\x9e\x50\xb4\x58\xd7\x03\x1d\xb5\xd9\x3f\x0b\xa6\xde\x19\xb1\x0d\xda\xc9\xe0\x52\x29\x5f\x96\x32\x29\xca\x9b\xbe\xc0\x42\x55\xc6\xa2\xa6\xae\x00\xfe\xd0\xdf\x33\xa5\x14\xd0\x1c\x3a\xf9\xd2\xa3\x5d\xd6\x4d\xcd\x0b\xff\x15\xfd\xa1\x4d\x5d\x8e\x00\x29\x99\x8a\x7c\x8b\x4a\x54\xaf\x23\xe7\xef\x50\x8f\x1a\xdf\xe9\xac\xa8\xd5\x9d\x9b\x17\xb5\x0e\x57\xc5\x39\xd0\x86\x84\xfc\x67\x24\xa8\x23\x25\xf5\x84\x66\xe1\x83\x88\x43\xe2\x5a\xf9\xca\x52\xbe\xe4\x13\xe0\x57\xd9\x0d\xdf\xff\x8a\x2e\xfa\x4f\xfa\x09\x55\xf4\xba\xf8\xab\xa4\x9e\x87\x1f\x98\xf6\x5e\x09\xa1\x3f\xa0\x88\x1e\x5f\xe6\x7e\xbe\x3e\x7a\x5c\xc3\xdd\x6a\x69\x36\x79\x5a\xf2\x25\x83\x2d\x84\xc4\x62\x22\x53\x17\x51\xf3\x94\x0b\x3e\xa2\xe2\x2a\xe7\x73\x0f\xf3\x14\xd3\x9b\x14\xe9\x32\x87\x9d\xe8\x25\x2d\xd3\x07\x3f\x0a\xb6\x6d\x8d\x5b\xad\x3a\x79\x27\xea\xa5\xea\x66\x4f\x21\x16\xb2\x90\xed\xec\xcc\x66\x43\x7c\x2e\x55\x05\xd0\x3c\x54\xb2\x0d\xa8\x28\x56\x38\x4f\x99\xaf\x5f\xbc\xba\x80\x9f\x0c\xcd\x35\x5c\x1b\xcc\x19\x88\xad\x88\x17\xa1\x4e\xde\x21\xea\xbe\x17\xc9\xa1\xa9\x81\x78\x5e\xbd\x76\xd1\x6f\xd3\x41\xec\x4d\x4e\xba\x5a\x99\xe7\x7d\xb1\x36\xbb\x9e\x04\x8c\x99\x31\xbf\x92\x44\x2d\xc8\x89\x38\x42\xa7\x37\x39\x66\x4f\x55\x78\x17\x2d\xab\x36\x5c\x1e\xc6\x69\xf3\xf7\x86\xc2\x48\x8c\x3b\x29\x5b\xb9\x0a\xfc\x09\xbe\x39\xec\x55\x90\x32\x26\x38\x06\x17\x7e\x7e\xbd\x41\x20\xed\x85\xbc\x95\xef\x6e\x97\xac\x88\xc6\xee\xbd\xbb\x8d\x09\x4e\xcc\xa1\x0c\x42\x9b\x03\x0e\x86\x19\x67\x98\xcd\xff\xfb\xbf\xff\xcf\xe3\xa7\x3c\xbc\xa7\x43\xb7\xa1\x2f\x95\x22\x19\x5e\xd0\x2d\x15\xe4\xa7\xff\x46\xa7\x81\x1b\xb5\xc2\xf8\x55\xbe\x32\xfb\x8d\x25\x49\xf9\xbd\x6a\x8f\xf1\x91\xe9\x2f\x5e\x99\x99\xfa\x39\xf3\x92\xcc\xf8\x28\xa6\xe4\x41\xc7\x30\xcf\x48\xff\xb2\xaf\x57\xef\x97\xa2\x41\x78\x92\xff\x3b\xff\xca\xe1\xe2\xaa\x7b\x09\xf3\xa7\xc0\x6c\x40\x84\x23\x8e\xe5\xad\x81\xc1\x80\xd5\x24\x3f\x32\xa7\x22\xdd\x1b\x6f\xcd\xca\xd0\x00\xd9\x81\x27\xdb\xed\xd9\xee\x88\x27\xde\x5a\x3b\xa3\x14\x38\x43\x71\x22\x4b\x32\xae\x86\x70\x89\x98\xd4\x81\xe6\xa9\xbb\xe2\xca\x36\x2b\x02\x20\x2b\xaa\xc3\xd8\xba\xec\xb2\xa0\x21\xab\x38\x9e\xf8\x24\x07\x0e\xaa\x9c\x73\xe8\x2a\x1c\x38\xe8\x4f\x46\x8c\x99\x4d\xd5\xf4\x76\x92\xdd\x39\x87\x02\xb7\x71\x48\xb7\xbb\x49\xbe\x62\x2d\xd6\x5a\x11\x4e\x1a\x3f\xeb\x67\x46\xe9\xfc\xfb\x82\xfe\x4c\x1c\xaf\xd9\x4d\x7b\xea\x9e\xbd\x29\x2e\x2b\x24\xbf\xc6\x07\xad\x05\xda\x1b\x06\x9a\x11\xa8\xcc\xc2\x8f\x8c\x51\x52\x0f\x42\x88\xf8\xca\xd4\xf7\x41\x6e\x22\xe5\x33\xc3\x45\x4f\x57\xb0\x25\xf0\xdb\xe2\x46\x7e\x12\xba\xd4\x7f\xfb\xa5\x7c\x49\x32\xec\xca\x05\x14\x66\xe5\x01\x1e\xc2\xa4\xae\x86\x33\xfb\xce\xac\x03\x8b\x69\x47\x2c\x67\xe4\x3e\x9e\xaf\x46\xf9\x57\x72\x24\x7e\xce\x07\x62\x4b\x2b\xc0\xbd\x73\x33\x7c\x0b\xe9\x5b\x5a\x52\x72\x1b\x72\x22\x5f\x21\xa7\x14\x7b\xd3\x67\xd8\x35\x35\xcd\xec\xfc\x4f\xf9\x6f\x48\x25\xfa\x54\x79\x89\xfe\x06\x9b\x79\x09\xae\xc0\x67\x61\xf1\x57\x8f\xc9\x8b\xf1\x5c\xb8\xac\x86\x45\x90\x4b\x5c\x3b\xd1\x52\x43\xbe\xcf\x5e\x11\xfe\xbb\x65\x28\xff\x94\x7f\xe6\x9b\x49\x2d\x61\x72\xfd\xdc\x8e\x9a\xf1\x30\xd4\xd4\x2c\x98\x34\xe7\x21\xa5\xc5\xed\x1c\x30\x9d\x7f\x9a\x04\xf6\x94\x12\x3c\x69\x25\x15\xb3\xe4\x3e\xaa\x19\xc2\xfc\x3c\x3c\x6d\x8c\xec\x55\x85\xe3\x8c\x7e\x4e\xfb\xe9\x80\xa4\x9b\xc5\x0c\x28\x6b\x95\x22\x1c\x0d\x7c\x0c\xa4\x8a\xcf\xc0\x7f\xc6\xb3\x17\xe7\x87\xa6\x76\x3c\x41\x92\xb9\x24\x59\x6b\x55\x05\xaf\x10\x00\x41\xe6\xe0\x48\x07\x49\x33\xa1\x32\x6d\x2c\xa9\x0f\x08\x1d\x8a\x4b\xca\x7e\x58\x02\x9b\xa1\x30\xe3\x2a\x66\x09\xea\x2c\x53\x99\x8b\xd5\x9c\x54\xe9\xf3\x48\x3c\x5a\x8a\xa8\x28\x88\x08\x62\xe3\x66\xa6\xc4\x9d\x14\x35\x86\x39\x58\xf3\x84\x6e\xb4\xe4\x1d\xd3\x1b\x21\x38\x36\xc0\xe1\xaa\x0f\x94\x53\xf9\x0c\x52\xd9\x34\x67\xc1\xae\x43\x81\x7f\xb2\xfb\xb7\xfc\x98\x05\xed\x35\xe0\x09\x09\xe2\xbc\xb3\x87\xae\x96\xaa\x62\x9a\x2b\x24\xb3\x5c\x2e\x2f\x6f\xb5\x8c\xcc\x33\x3c\x32\x0f\x14\xd9\xb2\x55\x0b\x8e\x5b\x5a\xe4\x24\x24\xcc\x14\xe9\xd5\x9d\x9b\xfd\xa9\xa7\x39\x0b\xde\x98\x60\xf5\xc2\xbc\xa9\x9f\x05\x61\x2a\x05\xc8\x29\x3e\xe6\x40\x44\xf1\xaa\xaa\x13\xde\x05\xc4\x7d\xc1\xae\x68\x67\x1b\x66\x53\x9e\x50\xe2\x35\x0c\x7b\xba\x4f\x28\xc7\x36\xb2\xcc\x57\x45\xcf\x7e\xd2\xc2\x70\x15\x3f\xef\x68\x27\x16\x90\x86\x26\x25\x78\x25\x61\x16\x08\x44\xbe\xf3\x87\xbf\x7d\xf3\xae\xe7\x69\x88\x57\x18\xbf\x7d\xfb\x8e\xce\xaf\x0f\x7f\xfb\xee\x1d\xee\x2e\x26\x85\x97\x57\xac\xba\x9b\xd6\x80\x82\x06\xbd\xeb\xaa\x0f\x75\xbb\xef\x45\x5e\xc3\x67\xe4\x0f\x1f\x65\x2a\x3e\x0e\xe9\x12\x0f\x7e\xe5\xa3\x15\x5e\x86\xac\x74\x85\x37\xfb\xed\x52\xc7\xd8\x0b\x07\xb0\x5f\xa1\xb8\x61\x60\x59\x70\x93\xbf\x87\xdf\x3c\xdc\xba\xe4\xc1\x52\xe7\xed\xd8\xfe\x07\xf9\xf5\x23\x06\xc2\x43\xff\x3d\xb4\xd4\xba\x5b\x8f\x0b\xf1\x8c\x67\x29\x3b\xdc\xbf\xdc\x56\xc3\x22\xe5\x4a\x16\xa5\x05\x5d\x4e\xb3\xb4\x17\x11\x44\xe7\x0d\xa6\xc1\x1e\xbc\xab\x80\x18\x83\x7b\x8b\x9f\xa3\xcc\xbb\x2a\xeb\x92\x02\xca\x6a\x23\x95\x28\xe8\x08\xd7\x8a\x29\xd9\x86\x3e\x0f\x4d\xd2\x5e\xa8\xc3\x7e\x7e\x66\x2d\x22\x4f\x90\x00\x7b\x15\xea\xb9\x22\x8c\x37\x2b\x68\xc8\x71\x89\xc0\x43\x55\xdb\x50\x81\xfe\xcc\x26\x76\xad\x86\x98\x3a\xc3\x87\x25\x8b\x4a\x4a\xad\xfe\x03\x6d\x26\xea\x3b\x4d\x34\x2f\x30\x3a\x1e\xd0\x41\x08\x1c\xdb\x3c\xbf\xf8\x1e\x89\x93\x12\xd0\xba\x59\x9a\xf7\x80\x9e\x20\x88\x59\xb2\xcd\x9b\x8c\x88\xc8\x88\x7d\x5d\x55\x23\x7c\xd0\x31\x2f\xb9\x66\x34\x47\x3f\xb9\x63\xe6\x89\xf4\xab\xb5\x2a\xa1\x23\xf9\x85\xfe\x04\xbc\x8e\x0c\x79\xac\x7f\xdc\x0a\x75\x9f\xfe\x58\x92\xec\x8b\xb6\xe8\xe2\xbe\x9d\xe6\xaf\xda\x4d\x1b\xf7\x75\xfc\x1a\x03\x88\x86\xf6\x61\x39\x92\xcd\x24\x3b\xd2\xb6\xae\x5e\x4e\x18\xed\x3c\x02\x39\x33\x18\xc9\x18\x59\xa9\xa5\x99\xc1\x99\x45\x3a\x08\x97\x16\x0b\xa7\x30\xad\x45\x8d\xbd\x00\x1a\x54\xc4\xb3\x60\xf3\xd6\x13\x22\x67\x78\xed\x3f\x4b\xed\xde\x62\x82\xef\xbf\xdd\x85\x80\xd6\x7d\x58\xff\x3f\xdf\x78\x3c\x21\x4b\x5f\xef\xb9\x68\x94\x63\x90\x93\xc2\xfd\x71\x48\x33\x59\x83\x5c\x10\x65\x8a\x71\x8d\x1e\x35\x38\x45\x6d\x8a\xfa\x79\x38\xc3\x83\x01\x0f\x37\x6d\x1e\x0e\x69\x08\x8f\xc6\xfb\x44\x91\x73\x61\xf3\x04\xc4\xea\xd0\xf2\x8b\x51\xb5\xf0\xe5\x7e\x02\x33\xbe\x71\x83\xda\xc2\x93\x5c\xbf\x34\x3f\x39\x3f\x8e\xcf\x8d\x36\xf2\x96\xd5\x67\xfb\x0d\xb6\x08\xdc\x9e\xca\x8f\x2b\xb9\xf7\x33\x20\x84\x98\x62\x99\x26\xb6\xe5\xf8\xbc\x04\xa0\x52\x6b\x0e\xce\xbd\xac\x56\x05\x0c\x76\xe1\x0d\xd6\xb0\x7e\xb8\x28\xdd\xe8\x09\x84\x63\x66\x58\xfd\x6c\x01\xed\xc3\x86\x31\x57\x0b\xd5\x9b\x6e\x64\x84\xa9\xcb\x6a\xb8\x81\x93\x04\xcc\x2b\x18\xb9\xa2\x6c\xee\xbf\xf7\x7b\x35\x31\xb8\xaf\xd1\xc6\xd7\xbc\x61\x97\xca\xec\xfe\x80\x1f\xc2\xf2\x14\x95\x23\x71\x7e\x86\x0c\xb0\xde\x6d\x52\x99\x1c\xa1\x7d\xdf\x56\xd4\x28\x36\xf9\xd2\x4e\x98\xc2\x7a\x7f\xe0\x53\xbe\xf1\x56\x7c\x13\x85\xb3\xf9\x84\xa6\x7f\x17\xd2\xb5\x7e\xd4\xa4\x7b\xb9\x35\x23\x69\xff\xb9\xea\xa9\xf4\xbf\xbc\x33\x1a\xa5\xc3\xc0\xd2\x73\x53\xd0\x67\xfc\x99\x40\x8d\x0f\xd6\x31\x4f\x34\xc6\x20\xa8\xca\x4c\x2a\x4b\xcd\xd7\x7d\x97\x48\x45\x50\x13\x9c\x26\x24\x43\xef\x06\xfd\x4c\x52\xaf\xe9\x90\xcf\x8c\x40\xb1\x19\xae\xc8\x16\x09\x6a\x20\xe4\x76\xb1\x25\xa6\x9a\x90\x73\x31\xa9\x36\xac\x7c\x85\x49\x17\xbe\x54\xc1\x01\xb6\x68\x7d\xd8\xc5\x28\xfd\x0a\x57\x20\xf3\x75\x29\x6c\xb9\x8f\x46\xee\x8c\x45\x2a\x04\x4d\x98\xe3\x67\xd6\xf7\xba\x5f\xc2\x20\x4a\x0c\xa9\x2f\xd4\xca\x69\x53\xaf\x86\x3c\xa4\x7b\x3b\xf7\x5d\xd7\xae\x25\x22\x4f\xb0\x6b\xa7\xed\xb2\xbf\x46\x8c\x0f\x06\xb8\x22\x2e\xb5\x6d\x21\xc7\x05\x16\x51\x34\x4b\xa8\xfe\x31\x54\x1f\xf8\x83\x55\xb4\x86\x5c\x86\x78\x3c\xc2\xb0\xa8\xc9\x46\xc3\x75\xd5\x42\x37\x7e\xa8\xe6\x47\xc3\xdd\x75\x1b\x17\x10\x17\x14\x5e\xf4\x36\xf4\x3e\x2c\x5f\xd3\x8e\x1c\x6c\x72\x2e\x10\x9c\x57\xc8\xd1\x3c\xb4\x12\x37\x02\xa6\x46\xf5\x90\x10\xcd\x98\xad\x80\x80\xe6\x56\x37\x88\x76\xdf\xe8\x22\x44\x29\xe8\x04\x99\xcc\x7f\x9f\x8e\x57\x89\xf9\xd0\x58\x3d\xdb\x6a\x64\xe3\x4e\xe8\xe9\xcb\x3f\x3c\x2c\xbf\x92\x85\x0c\x33\xa3\xc9\xdd\x0c\x27\x0a\x3a\xfd\x16\xc9\x63\xae\x7b\xf8\x81\x33\xd9\xf0\x66\xc1\x40\xf4\xbd\xf8\x3d\x73\xba\x3a\xb7\x9f\xc5\x53\xb8\xcb\x9e\x51\x19\xb8\xdc\x79\xb5\xc1\x18\xa0\x8c\xca\x98\x87\x7d\xd2\x76\xbb\xa4\xe5\xb1\xd4\x33\x1d\x6d\x29\xbc\x58\xf0\x6b\xdc\x05\x3b\xcc\x8c\xab\x0e\xc7\x82\x74\x44\xb4\xb7\x5f\xf2\x3e\x22\x2e\xce\xc2\xa7\x9d\x7e\x92\x48\x40\x3d\x56\xf4\x3a\x5d\x05\x84\xa4\xfa\x11\x9b\x9f\xc5\x8e\x09\x76\xf0\xaf\xf5\x19\x33\x57\x84\x3e\x37\x0e\xfa\x19\x8d\x98\x35\x82\xf9\x97\x16\x15\xec\xab\x74\x90\x95\xd8\x6b\xf3\x5f\x9f\x11\xe2\xb8\x68\x55\x4b\x99\x7a\xad\x11\x95\x6b\x4a\x8c\x6f\x72\x14\xdc\x53\x1f\xdd\xd2\xbf\xc7\xdb\xed\xe3\xb2\x7c\x34\x33\x6a\x27\x1a\x85\x61\x8f\x8c\xcf\x54\x0f\x31\x62\x95\xae\x26\x27\x69\xce\xe3\x8e\x01\x92\x79\xfa\x95\x05\x00\x5e\xed\x2c\x79\x94\x11\x73\x42\xbc\x71\xf6\x7a\xde\x04\x5a\x62\x79\xd1\xa4\x85\x99\x85\xb8\x32\xfa\xb1\x8c\xa4\x74\x97\x35\xf2\xce\xbe\xb3\x83\xe1\x1a\x45\x65\x3a\x62\xe0\xdb\x03\x48\x91\x50\x7e\x07\x51\xe2\xa4\xe3\x88\xd6\x20\x21\xcf\x00\xce\xcb\xc7\xb1\xf5\x7f\xa6\x8c\x3c\xd7\xfc\x1c\x19\xdc\x27\x25\xdf\xd4\xef\x6b\x2a\xf0\x27\xfa\x83\xef\x85\xfa\xd3\xe7\xd1\x7f\x9e\xda\xe5\xec\x2f\x92\x7c\x1b\x2b\xe7\x30\xcd\xf2\x6d\x0a\xb4\x9e\xb9\xc4\xcf\x13\x13\xa6\xfd\x86\x59\xf9\x7b\xd9\x52\xdb\xd5\x1e\xe7\xef\x5b\xf5\x0a\xf9\x0f\xb8\x68\xb4\x24\xd9\x5d\x6b\x24\x37\xc8\xcd\xf5\xa0\x44\xb5\x90\x06\x95\xc6\xe1\x5e\xb6\xd4\x60\xc7\xba\xc8\x07\x04\xf4\xa4\x74\x6c\xa1\x02\xee\xc3\x21\x23\x41\x65\x65\x4d\x57\x49\x39\xc2\x8b\xa9\xbf\xaf\xf5\x8d\xc6\xfa\x92\x7c\xbb\x10\xd7\xc3\x79\xbc\x2f\xf8\x53\x57\xcb\xed\x14\x87\x8a\x2c\x2e\xd9\xa4\x16\xf3\xad\x4a\xaf\xc8\x20\x74\x1c\x08\x8d\xa4\x2d\xf1\x99\xd3\xb5\x01\x13\x48\x6d\x80\x89\x82\xd9\x73\x9f\x33\x41\xdb\xc9\x1f\xe5\x88\x1b\x03\x1c\x94\xce\x29\x4b\x8d\xb4\xa1\x27\xc4\x64\x3c\x31\x2f\x1d\x0f\xf2\x74\x0b\x8b\x1b\x21\xa6\x11\x8d\x8c\x2c\x64\x13\xeb\xd8\x7e\x11\xeb\xe8\x15\xc9\xbd\x1b\x82\xb9\x6c\x98\x21\xa7\xfe\xe4\x40\x42\x73\x01\x8a\x2d\x6d\x21\xa8\x82\x2f\x96\x7c\xc5\x2c\x17\xf9\x48\x65\x5a\xf7\x3b\x82\x5d\xb7\xed\x7b\x09\xfe\x74\x89\xcf\x98\xb3\xe6\x80\xa7\x92\xc9\xa1\x3d\x5f\xa6\xb9\x74\x8c\xa9\x57\x3e\x10\xf2\xcf\x9c\x30\xd3\x45\x75\x93\x3a\xb5\x48\x5e\x6c\xc9\x13\x73\xd5\xc1\xc5\xd5\xa3\xfe\x38\xd3\x8a\xd4\x03\x84\xe5\x82\x4f\x73\x62\x9a\x73\x5e\x4a\x1d\xaa\x17\xb1\xf6\xa2\xfc\xc0\xdc\xb3\x4c\x82\x45\x6b\xda\x4c\x67\x78\xea\x82\x21\xa5\xf8\xeb\x80\x21\xb0\xf9\x25\x2c\xda\x8d\x73\x83\xd6\x6d\x05\xbb\x0a\x84\x4f\x8d\xaa\xe0\x18\x66\x03\x1b\x29\xb2\x51\xe3\x4d\x05\xd3\x46\x51\x5d\x0d\x5d\xc1\xf1\x92\x73\x87\x39\x12\x48\xaa\x8f\x6c\x87\x51\xa8\x26\x7e\x69\x40\xb2\xc5\x58\x66\x5a\x43\xac\x40\x13\x10\xed\x33\x6c\xaa\xbf\x58\x21\x5c\xde\xe4\x17\x5a\x23\x9b\x2f\x3c\x07\xcc\x5d\xe5\xc7\x52\x36\x0b\x7f\xfe\x42\x47\x0e\x62\x7f\x63\x37\xb4\xbf\xe7\x7f\xe3\x69\xa0\x3f\x75\x53\x56\x1f\xff\x6e\x07\xb3\x10\x7c\x90\xa7\xf8\x68\x62\xc4\x26\xd2\x1e\xf7\x0c\xc5\xdc\xfc\x41\x64\x1d\xa1\xd3\xcb\x97\xbd\x59\xc6\x12\xc9\xa8\x07\x21\xef\x09\x5d\x4d\xab\x3d\x5d\x38\x25\x13\x52\xb7\xfc\xab\x5c\xd9\x3c\xc3\xaf\xfc\x7f\xf1\x9e\xe9\x87\x2e\xfe\xbb\x7c\x2b\xad\x9f\xa7\xe6\x02\x3c\x05\x0b\x16\x22\xd1\xed\x37\xbd\x20\xe7\xae\x35\xe2\xe9\x83\xc1\xf3\xfd\x75\x0b\x31\xd9\xfb\x1b\x13\x61\x84\xa8\xb2\xaa\xe9\x83\xf6\x11\x26\xb0\xbd\xc3\x05\xc2\xa9\xc3\xf9\x9f\xcf\x83\xbd\xd8\x03\xa9\x13\xb3\xf8\xc2\x89\x86\xb2\x08\x5a\xc3\x3e\xb5\xbf\x48\x59\x59\x8c\xc9\x25\xce\x74\xd6\x55\xe4\x39\xbc\x8d\xfc\x3f\xb1\x2c\x9d\x89\xcd\x08\xd0\x90\x72\x4a\x2b\x4c\x6c\xb4\xa5\x58\x91\xf8\x4f\x0f\x4e\x73\x2e\x76\x95\x6c\x36\x10\x7a\xc4\x22\x51\xd5\x0d\xf0\x5c\x9e\xa2\x9d\xbd\xa9\x68\xcb\x5e\x7e\x43\xcd\x3c\x06\x55\x4a\x1c\x5c\x0c\x42\x76\xfc\xfa\xca\xe1\x03\xa6\xe6\x6c\x3a\xfe\xa1\x2e\xf7\xb4\x06\x78\x2e\xee\xaa\xf7\xdb\xb4\x5e\xa2\x27\x58\xf6\x1c\xac\x7b\x34\x9f\x20\xe6\x10\x24\x1d\xae\xeb\x57\x31\x22\x43\x3f\xd7\x32\xaf\xb3\xa0\x65\x55\x1c\x20\xb2\x42\x1e\x5d\x93\xbd\x70\x24\x92\x0f\x8c\x5d\xc5\x1f\xc5\x0e\x67\xdf\xe7\x93\xf9\x48\xb1\x25\xee\xee\xe1\x2c\x77\xaf\xb9\xed\x84\x10\x46\x58\x1a\xd5\x07\x84\x39\xa3\x58\x9b\x7d\x1e\x3e\xc7\xd7\xd4\x00\xee\xa6\x79\xf0\x24\x21\x51\x5a\x10\x4f\x9e\x8d\x97\x8a\xa1\x38\x52\xa9\xef\x28\xdc\xe6\x88\x97\xaf\xb3\x9f\x8e\xbb\x61\x9b\x60\x76\xd4\x57\x98\x29\x09\x02\x5e\x4d\x9a\x8e\xce\xc7\x47\xd1\xf6\x33\xd8\xa2\xf1\x69\x77\x2b\x7c\x69\xc7\x01\x7e\xf9\x42\xe5\x4a\x24\x7c\x91\x32\xef\x69\xf5\xdb\xbb\x5a\x15\x93\xd5\xb9\x66\xcd\x78\x5b\x83\x79\x60\xd1\x72\x48\xfe\x7b\x5a\xfb\xce\x5a\xf3\x42\xf2\xfb\xaa\xda\xb9\x26\xd2\xee\x3b\x5f\x36\xec\xb4\xa9\x11\xe9\x0c\x47\x53\x2e\x6b\x71\x1d\x0e\xec\xf8\x49\xa4\xaa\x68\xa9\xa4\x72\xcd\x3d\x3e\xad\xd3\x05\x62\x57\x2f\x78\x47\x02\xd7\x2f\x01\x86\x65\xe4\xa5\xe3\xdc\x70\x27\x30\x96\x3c\x53\x95\xb8\x29\x8c\xec\x1f\x63\xa0\x87\xd0\x35\x2b\xd0\x1d\xee\x5e\x6a\x89\x9e\xcf\x58\xa0\x3b\x39\x84\x43\xa0\x45\x62\xcd\xc5\xb9\x8b\xc7\xf3\xd4\x25\x1f\x2e\x30\x72\xa9\x4a\xea\x4a\x5d\xaa\x5c\x07\x85\x8a\x0e\xd5\xf3\x74\xb6\x0e\xa5\x3c\x57\x8b\x98\x17\x49\x14\xd4\xd4\x90\x43\xed\x8d\xc0\x50\x17\x8b\x44\x88\xe9\xd8\x72\x8c\x23\x6e\x68\xd0\x45\x7d\x34\x65\x1c\x6c\x43\x73\x6f\xae\x5b\x17\x42\x4b\x3c\xc3\xb0\x7b\xf9\xae\x2f\x52\xec\xdc\x88\x68\xab\x98\x54\x41\x77\x24\x01\x87\x53\x99\x8a\xc1\x50\xcd\x6d\xf7\xd4\x67\x9c\xc2\x20\xed\x6a\x00\xf6\xd3\xf3\x0b\x68\xea\x69\xc9\xd0\xce\xbb\x66\x4e\x9d\xff\xe9\xba\x6a\x10\x16\x98\xe3\xa0\x2b\xeb\x5a\xad\xd8\x9f\xb3\x6e\x34\x68\xea\x4d\x65\x6e\x36\x4d\xb9\x11\x46\xe7\xbd\x7d\x4d\x38\x15\x8d\x7d\x8e\x68\xe7\xbc\x36\xfb\x5d\xb5\xa2\x93\xfb\x82\x2f\xe8\xbb\x06\xef\xc7\x84\x67\x2d\xee\xb4\x26\x0f\x23\x81\x55\x21\x2b\xf6\x1d\x5a\x14\x25\xfe\x1e\x4b\x77\xed\x09\x7a\xc6\xa0\x73\x7e\x2d\x86\xe1\xbb\xce\xe9\xe0\xc8\xe2\xdd\x51\x33\x83\xcf\xd5\xea\xed\x2e\xa7\xb9\x83\x7d\xf0\x41\x6b\xa5\xe9\x7b\x8e\xeb\xe3\xaa\x16\x51\xff\x69\x4a\xcf\x19\x90\x7e\xd7\x8a\xb1\xfa\x5b\xfd\x9c\x02\x89\x56\x87\x7b\xf2\x52\xbe\xa6\x20\x3b\x8d\x2e\x17\xe2\xcc\x4d\x41\x2e\xdb\x92\xb5\x34\x3f\xd3\x9f\xe9\x01\x2c\xbc\x56\x62\xa7\x30\x10\xe7\x8e\x83\x94\x88\x3d\x0c\x67\x10\xba\xab\xcd\x95\x04\x9c\x61\xd9\x1b\x6a\x29\xb9\x94\x60\x2f\x0f\x09\xb6\xcc\x5e\x09\xa8\x40\x5d\x8f\xe1\x56\x87\x68\x93\xfe\xc6\x41\xe3\x13\x78\x9f\xf3\x71\x9f\x70\xbf\x6a\xfd\x7a\x25\x52\x0b\xa6\x01\x4a\x38\x09\x0c\x7a\xc4\x9b\x11\x9f\x81\xcc\xe2\xc1\xb6\xac\x9d\x04\x03\x65\x8f\x51\x22\x6a\xc4\x70\x32\x10\x91\x7a\xc5\x8e\xd4\x39\x5c\xd8\xd3\x08\x20\x36\x20\x6c\xda\x23\x75\x90\x61\x04\x89\x6b\xcc\x04\x22\xda\x63\x00\xc8\x5c\x51\xc7\x3b\x93\x82\xc7\xa3\xe8\xcb\x64\x3d\x38\x8e\x92\x3c\x23\x83\x8e\x6a\x90\x4f\x39\xe8\x30\xa7\xb0\x73\x8d\xbb\xd8\x61\x5c\xf1\x79\xca\xad\x6e\xde\xd8\x49\x9c\x12\xb9\xbb\xab\xd6\x45\x57\x5a\x64\x2b\xe5\x34\xec\xe6\x07\x8e\xe2\x23\x19\x14\x9b\xbe\xb5\x2a\x88\x33\x12\xc8\x7b\x36\xe0\xa4\xf9\x66\xa9\xc8\xf4\xa2\x2c\x5f\x46\x65\x12\x33\x97\xfd\x8e\xf9\x8d\x30\x2f\x6b\x07\x43\xfe\xf2\x5f\xcf\x4f\xdf\x1c\xe5\x1f\x1f\xdf\xdc\xdc\x3c\xe6\xe2\x8f\xe9\x70\xc7\xee\xc7\x25\x47\xce\xfa\x9f\x27\xaf\x8f\xf2\x6a\x58\x7d\xb5\xc8\x4f\x84\x0d\xc5\xd5\xad\x76\xef\xb8\x22\x65\xea\x62\x61\xf3\x1f\x67\x4f\xba\x62\xf4\x89\x0a\x1f\x9d\xd1\x6f\xa9\x3c\x7b\x66\xa6\xa6\x93\x29\xe6\x6a\x6e\x43\x5a\x75\x15\xac\xbc\xf0\xe1\x32\x68\x77\x7a\x3f\x17\x32\x65\x0c\x52\x53\x3b\xda\x8d\x57\x2b\x7d\x22\x63\x04\x62\x46\x0d\x4f\x61\xce\x10\x32\x31\x71\x61\x5b\xe1\x38\xa1\xfd\x35\xd4\x7a\x09\xc7\xbc\xac\x6c\x22\xaa\xf2\xa7\x71\x61\xd8\x66\x23\xcc\xfd\x93\xfc\x5f\x59\xa3\xcd\x13\x25\xb4\xc5\x59\x46\x5b\x00\x5e\x8c\x0b\x23\x6e\xab\x13\xa5\x69\x00\x12\x8d\xd6\x44\xf9\x98\x17\xc4\xf9\x49\x25\x7a\xe2\x63\xf3\xb0\x21\xdf\x86\x13\x20\x68\x4d\xaa\x9b\x16\x49\xef\x13\xe6\xb3\x0d\x2f\x62\x96\x7d\xa4\x06\xdb\xa6\x6c\x9f\xc3\x43\x2e\x86\xe9\xb3\x28\x72\xfc\x11\xa0\xcc\x45\xbc\xa5\x7c\x5c\xbb\x60\x4c\xb9\x06\x29\xae\xc6\x19\x2e\xcc\x4c\x35\x20\xc2\xc7\xdc\x5a\x94\x33\x78\x98\xb5\xb8\x7a\x8c\xbf\xe9\x0e\x27\x92\x89\xf8\x46\x26\xdc\x03\xac\x23\x95\xd2\x6e\xc6\xbb\xd8\x58\x40\x53\xde\x14\x45\x19\xe5\x4d\x93\xed\x5a\x01\x47\x6d\x4c\x76\x49\x95\xa7\xa7\xa7\x84\xd8\xc2\x21\x81\x40\x8c\x11\x97\x3a\x4a\x0b\xb4\x05\x07\xf3\x67\x21\x2d\x15\xaf\x6c\x95\x82\xef\xa6\x4b\x94\x11\x22\xeb\xc8\x73\x54\x16\xd4\x52\xd3\x25\x06\x41\x5c\x04\x76\xa0\x32\xdf\x93\x49\x54\x08\x2f\x74\x4b\xad\xe6\xe1\x2b\x9e\xc8\xa3\xcc\xf1\x9b\x40\xe3\x95\x4d\xb2\x9a\xbc\x2a\xf7\x54\xbe\x3c\xb6\x76\x9b\xf6\xd6\x02\x67\x3c\xc3\x2f\x0d\xa8\xe5\x47\x16\xc1\x74\x50\x11\x72\xae\xae\x28\x5b\x01\x8a\x8b\x61\xf9\xf3\xb4\xb1\xaa\xe6\xb1\xbc\x05\x82\x59\xc5\xfb\x35\xea\x7c\x85\x53\x5f\x91\xfa\x17\xcb\xf3\x12\x1a\x7b\xc2\x2b\x87\xda\x65\xda\xf9\x3f\xbb\x78\xd6\x2a\x50\x37\x7c\x1e\xb7\x2e\xf8\x63\x56\x72\x0d\x38\x37\x80\x69\xa4\x87\x00\x35\x8e\x49\xe1\x06\x39\x1f\x93\x22\x2d\xea\xe3\x52\xb8\xa2\xd8\x32\xc3\xc9\x77\x56\xf3\x9e\xcc\xc8\x34\xe8\x44\x1c\xe9\x27\xc4\x9d\x98\x9f\xb4\xb1\x10\x7d\xef\x2c\xdf\x75\xed\x55\xfa\xc1\x7d\x42\x04\x8a\xd1\xd1\xfb\x53\xe4\xe9\xb9\xbe\x44\xa4\x38\xec\xde\x77\x09\x56\xd6\x57\x57\x8b\xcb\xae\xbd\xe9\x39\xcc\x03\x9e\xf4\x61\xa6\xce\xbf\xf3\x73\xfc\x16\x10\xb6\x80\x02\x55\xc8\x87\x24\xaa\x1d\xe6\x13\x35\x78\x90\x44\x98\x9f\x8c\x5f\x12\x79\x46\x39\x62\x8a\xf2\x86\xa8\xfd\xd8\x72\x16\x52\x84\xf6\xd5\x9b\x25\x7f\x21\x40\x05\x2e\x4a\x58\xf5\x8f\x42\xe7\x9c\xa2\x60\xfc\x69\x28\xb7\x4d\x10\x26\xc0\x62\xac\x23\xd2\x72\x54\x6d\x81\xb2\x0c\x8e\xc0\x88\x1c\x6a\x88\xc3\x11\xc4\x3b\xa2\x13\x84\xe1\x32\x42\x28\x82\xc0\x63\x7e\x7e\xf5\x46\x7e\xc2\xaf\x47\x03\xc2\xc1\xb1\x87\x6d\x86\x32\xf3\x16\x5a\xcc\x79\x0d\x59\x9e\x38\x7b\x89\x1e\xc6\x1e\xe0\xc4\xaf\x00\x51\x76\xc5\x15\x6e\xc7\xf9\x6f\x48\x25\x91\x3b\x16\x3b\xeb\xaa\xc7\xe3\x62\x84\x1c\x41\xf5\x39\x3e\x42\xba\xde\x6e\xf3\x9f\x90\x56\xc0\x72\xed\x89\x1b\x79\xc4\x88\x99\x48\x11\xdd\x3d\xec\xf3\xbe\x66\xe5\xae\x12\xe8\xa8\x41\x50\x47\x8c\xf6\x0e\xda\x81\xfb\x97\x1f\xab\xbf\x36\x47\x30\x9a\xfe\x3a\x0f\xf8\x61\x4f\xc8\x41\xe2\x4c\xe8\x2b\x53\x8b\xa4\xdf\x49\x69\xd9\xd1\x2b\x9b\xed\x7c\xd3\xae\x21\xb4\xc2\x4b\x5b\x9e\x1b\xda\xf3\xb3\x5c\x84\x08\x0e\x2c\xc8\x02\x4e\x20\xfe\x7a\x4b\xf5\x7f\x90\x87\x22\xa4\x7a\x12\x56\x42\x1c\x0c\x92\x5b\x1a\x71\xc5\xb7\x3c\x9c\xe0\x2d\x5e\x66\x52\x26\x86\xa3\x37\x55\x7a\x74\xb3\xa3\x7c\x08\x42\x2b\xef\xbd\xc7\x52\x11\x47\x06\x92\xb1\xbb\x0e\x24\x9c\xd8\x52\xa7\xdc\xd7\x72\xe4\x1e\x4a\xef\x5e\x3d\x59\xe8\x0b\x4e\x67\xf2\x15\x72\x58\xe0\x16\xa9\xf1\xb5\x7c\xc9\x53\xa3\x63\x6a\x9a\x46\x6a\xa1\xbc\xc7\xe3\xb9\x76\xf0\x01\x01\x7f\xaa\x1e\xb1\x06\xb8\xa5\xed\x3c\x97\x1b\xe0\x62\x48\x28\xc5\xf6\xb6\xf8\x80\xd8\x63\xb0\xf5\xd8\x8d\xb1\xdd\x43\x68\x4e\x09\x25\x92\xcc\x84\xda\xf9\x46\xd9\x56\x0a\xae\x94\xd3\xe5\x02\xea\x89\x0b\x06\xb6\x1d\x93\x85\x26\xf2\x52\x84\x4a\xaf\x3d\x66\x80\x65\x8b\xd0\xac\xa8\xfa\x1b\xc3\xcc\xef\x0a\xd6\x8e\x8f\x90\x21\x8e\x98\x9d\xe8\x29\x82\x46\x9c\x48\xe6\x8e\x3d\x60\xd2\x9a\xd7\xbf\x4a\x13\xf7\x30\xfd\xf1\x1a\x48\xef\xc4\x5d\x3d\xba\x35\xb3\x8d\x83\xae\x91\xc9\xd6\x1c\x7a\xa3\x8f\x3e\x61\xfb\xb1\xef\x2c\xfb\xad\xed\xd6\xef\x62\x94\xf1\xa0\x4e\x4c\x22\x8c\xe3\xb0\xcf\x30\x21\x52\xe7\x01\xc0\x18\xbd\x33\xd6\x68\xe4\xf8\x82\x17\xdd\xf4\x81\x4c\x51\xb5\xc8\x63\x10\xb0\xb3\xb0\x30\x19\x0b\x73\xbf\x95\x28\xc5\x6a\x00\x91\xbc\x5c\x0c\xaf\xd8\x78\xb1\xff\xab\xba\xee\xe8\xc5\x30\x7b\x6e\xf2\x07\x07\x92\xe6\xb7\x56\x59\x71\x28\x37\x8e\xaf\x90\x40\x2c\x11\x09\x88\x91\x0e\x8f\x55\xfe\x9b\x21\x34\xad\xaa\x4a\x39\x55\xbf\x34\x7d\x14\xfe\x36\x79\x64\xc8\xb9\x0b\x23\x2c\x76\x62\xb5\xc1\x95\x03\x2b\x33\xf6\x5c\x93\x60\xe9\x40\x21\x52\xef\x82\x4e\x62\x50\xf0\x5a\x17\x53\x40\x5e\xd5\x85\xd8\xc6\xa8\xbf\x96\x92\x08\x42\x75\x37\x89\x5f\x43\xbf\x88\xcd\x38\xce\x71\x2d\xc6\x5e\xb1\x18\x5e\xef\x63\x3b\x92\x9f\x04\x3e\x71\xa5\xd7\xf3\x77\x21\x31\x64\x24\x39\xdf\xd0\x51\x6e\x93\x1c\xc8\x51\x11\x8b\xc1\x3f\x1d\x08\xa3\x30\x8d\x6a\xff\xf9\x81\x14\xa6\x75\xdc\x1d\x4a\xe1\x1f\xb5\xfd\x98\x8f\x59\xeb\xb5\x8e\xa3\xe0\xb5\x21\x6b\x2e\x8a\xed\x3f\x62\xac\x91\x82\x3a\x26\x93\xa0\x20\xd4\xf4\xa9\xf7\x3c\x6a\x03\x42\x94\xfa\x9f\x33\x01\x49\x83\xb9\x8f\x7b\x3d\x09\xb7\x9a\x74\xfa\xf3\xc2\xae\x1e\xbc\x1e\x4f\x78\xc5\xf8\x14\x3e\x89\xa1\x84\x01\xde\x59\x24\x8d\xa8\xe4\x3b\x1c\xf4\xae\xee\xba\x55\x2f\x6f\x24\x96\x92\x5c\x26\xdc\x1f\x50\xe9\xc0\x7d\xd6\x5d\x91\x95\xc6\xbd\x64\x1e\x13\xbc\xf6\x7c\x27\xef\x2c\xe1\xa5\x8c\xd4\x24\xe2\x3f\x13\x6d\x69\xfe\x06\x88\x4f\xe9\x37\xa6\x9c\x84\x54\x62\xf8\x8b\x2a\x1f\x3e\x76\x19\xbe\xe4\x5c\x16\x19\x6d\xc4\x1c\xe4\x49\x41\xee\xe8\xf1\x00\xe5\xda\x8b\x18\x7b\x7e\x99\x44\x58\x3a\x89\xd1\xed\x63\xb0\xa5\xef\x43\x31\xbd\x59\xb5\xf8\x8c\xa3\xf4\xc8\x29\x61\x15\xa8\x77\xc7\x11\x48\x7e\x43\xe6\x9b\xcd\x19\x97\x4f\xdb\xd0\x87\xd2\xba\x76\x53\x85\x8e\xe6\x6f\xe9\x57\xec\x5e\xea\xfe\x96\x16\x0c\x65\x42\xba\x1e\x6f\xf5\x41\x87\xd8\x1b\x09\xd6\x0f\xc7\x54\x97\xaa\xbb\xa5\x9b\x2b\x91\x93\xb5\x76\x1c\x3b\xbe\x1f\x43\xcb\xc3\x6b\xba\xaf\xbe\x69\x6f\x32\xd9\x54\x17\xf0\xa6\x93\xf0\xf1\x9a\x92\x36\x2a\x69\x2c\xb1\x68\x90\xbf\x5c\xc2\x0f\x69\x18\xb8\x69\xfe\x28\x62\x0d\xf6\x94\x10\xab\xc6\x5e\x83\x60\x81\x5b\xfd\x36\x1b\xb9\x26\x4b\x43\xb8\x48\xad\x10\xd8\x63\xb3\x62\x33\x99\xb4\xeb\x21\x3e\xa5\x61\x3c\xb1\x3f\x6e\xee\xc8\x74\x94\x50\x1f\xa9\xf2\x54\xc2\xa3\x4a\x2b\xfa\x6e\xba\xf5\x23\xbc\x5e\x1a\xfb\xe1\x21\x3e\xa5\x1f\xdc\x0a\x1c\x90\xe4\x00\x77\x47\x7f\xe8\xc4\xad\xf1\x8f\x13\xf3\x8d\x71\x17\x63\x8c\x95\x0b\xb7\x93\xc3\x64\xa8\x1c\x49\x26\x7c\x25\x30\xdd\x52\x25\x47\xae\xf6\x67\x84\x07\xb1\xec\x9a\x8d\x8f\x78\x3f\x13\x80\xa7\x17\x97\x0c\xa0\xce\x66\x2b\x82\xcd\xee\x4b\xd2\xaf\x28\xec\x41\xfa\x52\xde\xa0\x99\xf7\x6f\xc9\x02\x67\x91\x01\x45\xf2\xf3\x9b\x0a\x44\x3f\x9b\xc9\x52\x9e\xc6\x09\x6b\x95\x17\x98\x6b\x75\x5a\x59\x60\xe6\x80\x0a\x4c\x7c\x0a\x67\x2b\xd6\xcb\x6d\x4e\x61\xce\x6c\xfb\xc8\xa4\xd9\x60\x50\x02\xa8\x6d\x71\x9b\x98\x6c\xc1\xaf\x65\x9b\x3e\x32\x7f\xc7\x81\x67\xda\x95\xb8\xaf\xcb\x7b\x33\x81\x60\x0e\x1e\x7a\x16\x7e\xa9\x4f\x09\x24\x92\xdd\xba\x83\x13\x9c\xcd\x35\x33\x0b\x47\x0a\xa8\xf0\xfb\x30\xca\xf0\xbc\x71\xe4\x06\xb0\x00\xa0\x8a\x1e\xdd\xc5\x14\x3e\xa3\x03\x60\x1b\x77\xf7\x00\x6c\x41\x3c\xa3\xa9\x1b\x8e\x05\xdc\xd5\x11\x7d\x97\xf8\xd3\x3b\x02\xbe\xf1\x89\x1d\x39\xb2\x5e\xe8\x63\x0d\x65\x39\xbb\xfe\xef\xea\xdf\xe8\x20\x04\xe2\x4c\x1e\x03\x31\x66\x00\x83\x15\x79\xea\x77\xce\x60\xc5\xa9\x55\x17\x8b\xf1\x2a\x71\xe6\x4e\x6e\xa5\x38\x8b\x47\xeb\x0b\x6c\x6b\xd4\x02\x53\x77\xb9\x58\x55\x43\xf3\x8e\x00\xca\xcd\xe0\xad\x34\xd3\x68\x58\x6c\x20\x38\x74\xb7\x2a\xe9\x30\x46\xd2\xa0\x5d\xd1\x38\x4b\xce\x74\xb8\xfb\x97\x57\x65\x7e\xc3\x5c\xbd\xcb\xc2\x8b\xba\xbc\xfe\xed\x3b\x13\xcd\x97\xdc\x7f\xe2\x5d\x8f\xf8\xa0\x47\x3e\x7e\xe0\xe3\xce\xc7\x55\xd2\x47\x65\xc6\xaf\x0b\xf5\x12\x8c\x73\x6d\x22\xa2\x3d\x63\x9c\xa9\x51\x1a\x63\xfc\x96\x70\xb0\xc5\x13\xf6\x2b\x8e\xb4\xdf\x36\xb5\x98\x3f\x9d\xc8\x17\x8d\x3d\x4b\x5c\x19\x9e\xf3\x0f\x09\x82\xac\x29\x6c\x3b\x9f\x0d\xed\x80\xe8\x7a\x17\xfc\xf7\xfb\xfc\x61\x99\xc5\xa1\x43\x07\xcc\xea\xb6\x95\x68\x3a\xe5\xdb\xe5\xbb\xa7\x40\xe0\x88\xd5\xd9\xdb\x26\xb1\x06\x74\x13\x9a\xe6\xbd\xeb\xb6\x76\x12\x95\xee\xfb\xb9\x16\xcd\x3f\x01\xc6\x02\xa5\x3d\x44\xcd\x6c\x87\xdf\x17\x2d\xf9\x7d\x51\xd1\x43\x1e\xb9\x84\x64\x42\x7c\xc6\x2e\x44\xe6\x4e\x92\xd3\xad\x34\xa6\x4b\x4c\xc1\x24\x89\x43\x96\x25\x09\xc5\x6a\xd2\x8a\xdd\x33\xf8\x34\x33\xb5\x8c\x29\x66\x74\x99\xd4\x9e\x46\x67\xf6\x59\x62\xa9\x9a\x24\xe9\xb3\xca\xe9\x48\x44\xcb\xeb\xd3\x36\xed\x9a\x1f\x00\xb2\x47\xfb\xdd\xf0\x54\x5e\x4f\xeb\x34\x3f\x9f\xa4\x0a\x44\x15\xf0\x29\xb8\xed\x1c\x8a\x3e\x2d\x8d\xf5\xe9\x13\xd4\x39\x65\x02\x48\xe7\xf7\x62\x75\xad\xae\xa7\x33\x84\x64\xc7\xf0\x40\x4c\x72\x16\x9f\x83\x94\xa7\xaf\x73\x7b\xe8\x7a\x16\xa6\xdb\x43\x87\xb8\x6f\x5c\x2e\xfb\xce\xb1\xa3\x26\x02\x58\xb7\x1a\x79\x91\x1d\xe9\x42\xb0\xea\xfc\x14\xcb\xb1\xbf\xb3\x90\xdb\x17\x39\x9e\x8f\x06\xc8\xd6\x92\x22\xc3\xdc\xb1\x41\xc6\x9a\x75\xab\x55\x33\x20\xf7\x18\x6a\x1f\x25\x8f\x02\x8e\xbd\x7a\x1d\x6f\xd9\x9f\x54\xc7\xa8\x97\x11\x22\x54\xf3\xf9\x5d\x05\xff\x67\x7e\x4f\xbd\x19\x75\x32\xe1\x79\x06\x72\x4f\x0d\xa3\x2e\xce\x56\xf1\xf9\x9d\xc4\x4e\xdb\xac\xc3\x4b\xe2\x73\x9d\xbc\x45\x84\xf3\xae\xd4\x83\xeb\x86\x8d\x08\x5f\x98\x1d\xd8\x3d\x55\x1e\xea\xf5\x9d\x75\x7e\xc6\x30\xd6\xf5\xb0\x5c\xaf\x62\xf7\xf9\x7d\x87\xee\x92\x19\x37\x6f\xee\xd5\xca\x5c\xaf\x13\xa5\xe5\x7c\xf1\xbb\x10\x8c\x0e\xb1\xba\x62\xae\xfa\x43\x7d\xeb\xaa\xfe\xb6\x59\x2d\xf1\x1c\x7e\x7f\xad\xf7\xe2\x6f\x2b\xb9\x34\x79\xb4\xa0\xb4\xaf\x0b\x0d\x62\x5a\xe1\x0a\xb9\x7f\x24\x4f\xff\x7c\xb9\x2a\xf6\x62\x4e\x4f\xdb\xf8\x63\xb0\x76\x94\x36\xc9\x96\xb1\xf5\xd5\x9d\x0d\x8d\xc6\xe2\xf8\xba\xc3\x6d\x87\xae\x0c\xd5\x27\x8d\xc0\x59\x80\xf8\x61\x30\xa1\x28\x13\x03\xcb\xf3\x0f\xd5\x31\xe2\xbe\x64\x6b\x1e\x7e\xb1\x83\x4d\x95\xd4\x04\x50\x37\x6d\x84\x0f\x0d\x0a\xb6\xf2\xc0\x80\x7c\xbb\x77\xcc\xd0\xa3\xa4\x17\xf7\x8f\xd1\xef\xa5\x88\x9b\x4a\x0d\xb1\x81\x3b\x84\x34\xc4\x51\xfd\x15\xbf\x3d\x6f\x93\xc7\x84\x96\xeb\xb6\x6b\x69\x7a\x24\x48\x9e\x3e\x30\xf4\xc2\xd2\xfa\x99\x02\x50\xef\xdf\x2e\xf7\xea\xa8\x68\x65\x4e\x90\x4c\x32\x12\xfb\x02\xc6\x52\x90\x34\xac\x0c\x2b\x6d\x57\xaa\xea\x87\xe8\x61\xa5\x8e\x2d\xc3\x95\xd4\x32\xed\x25\x7b\xae\x68\x14\x07\x00\x9f\x6a\x8a\x83\xc5\x15\x19\x47\x9e\x23\x74\xed\x77\x4b\x1e\x2a\x3c\x08\x25\x39\x7f\x8d\xe4\xfc\x82\x93\xa7\x2d\x58\xaf\x42\xb1\x51\xa7\x0e\x95\xe3\x68\x44\xe3\x32\xcf\x39\x68\xd1\x18\xde\x30\x77\x5d\x15\xbb\x09\xde\x5e\x52\xe2\x04\x6b\x80\x9c\x22\x00\xb0\x87\xb1\xe0\x4b\xd5\x25\x4e\x9c\xbe\xc4\x2b\x4a\x3a\x04\x0d\x83\x93\x31\x7c\xc3\x12\xef\x81\x12\x2a\x7a\x8c\x7b\xa5\xd7\x5a\x93\x5e\xb5\x97\xec\x8f\xdb\x1b\xf4\xa9\xfc\x74\x50\x97\x6d\x3b\xf0\x0b\xdc\x3b\x96\x1a\x61\x76\x28\x68\xfa\xd9\xd2\x59\x6a\x5c\xbd\x9f\x60\x4a\xa0\xa7\xa8\x12\xe8\xc3\xb8\xda\x72\xd0\x63\x6a\xab\xdb\xaf\x86\x3d\x2d\xd0\xd0\xe0\xc9\x39\x07\x4b\x3e\x0f\x19\x93\x16\x27\x25\x3d\x85\x8e\x0b\xcf\xb5\xbc\x22\x59\xa8\x9a\x6d\xfa\x29\xe7\xdc\xd9\xf6\xa4\xac\x6f\x7c\x52\x7c\x6e\xa5\xe0\xbd\x3c\xde\xd0\x2e\xf7\xab\xf7\xd5\xc0\xde\x6f\xd7\x4b\xd8\x33\xf8\xba\xce\x0c\x2c\xff\x19\x60\xf9\x4b\x02\xcb\x2f\xa0\x9e\x9a\xa9\x95\x36\x9d\x6d\x35\x14\xb0\x4b\x71\xb5\xbc\x78\x4a\x33\xc0\xc9\x65\x31\x57\x0a\x6a\xab\xa5\x1e\x16\x74\x15\xb2\xfc\xe6\x6a\x38\x85\x66\x4b\xcf\x0f\xc7\x01\x64\xae\x36\x8e\x7f\x27\xbb\xdf\xea\x76\x25\xcf\xc8\x71\x44\x3c\xea\xc3\x5b\x49\x71\xb0\x38\x10\x11\xac\xf1\x48\x98\x60\xc0\xab\x98\xc0\x2f\x52\x46\x29\x1c\x2c\x02\x0b\xe3\x22\xb8\x33\x0e\xdc\x31\x07\xb8\x2b\x64\x31\x1d\x84\xb4\xe6\x0d\xd0\x5a\x1e\xc3\x69\xa3\xbd\xa0\x52\xd8\x8a\x9c\x46\xc5\x29\x44\x1f\x57\x21\x9a\xc3\x15\x3f\x7c\x42\xec\x69\x15\x4e\x53\x58\x3c\xf6\x17\xaf\x1f\xe2\x8d\x66\x78\x7d\x52\xc0\x44\x08\x87\xe8\x2d\x29\x26\x36\xe2\x25\x5c\xfb\xb6\xbc\x24\xa8\x9b\xa4\x99\xdc\x82\x53\xaf\xa6\x59\x6c\x88\x10\x9c\x52\xd3\x61\x7a\x3b\x7d\x56\xff\x9c\x8d\xc3\x93\xe7\xf8\xdf\x78\x07\x90\x8b\x16\xa3\x74\x03\x4b\xed\xd4\x6c\x98\xf7\xc7\xa7\x58\x68\x1d\x3e\x08\x9a\x8e\x0c\x72\xbe\x19\x6a\x8d\x5e\x00\x56\x83\x2d\x81\x94\x18\xe1\x72\x0b\xb8\xf1\xa5\x71\x08\xb3\x53\xcd\xa8\x86\xd7\x38\xa0\x39\x2c\x87\xe7\xfa\x82\x5e\x18\x9a\x75\xd6\x4f\x88\x91\x3f\xf4\xd2\x30\xc2\xdc\x37\xf6\x52\x9f\x91\xc1\xa1\xc7\x31\xed\x59\x8e\x4f\x7c\x1f\x33\xe2\xc2\x51\x0a\x4c\x3a\x52\x1a\xa9\xfb\xa5\x27\x8a\xf1\xab\x1e\xc5\x88\x48\x18\x5c\xe9\x24\x01\x85\x33\x2d\x67\xc8\x34\xf3\x83\xe0\x41\x4d\x66\x84\x83\x1b\x5e\x76\x34\x58\xaa\xad\xed\xa4\x06\x57\x06\xea\x4c\x21\x6c\x96\xbb\xc5\x4b\xdf\xd7\x23\xe1\xe0\x97\x36\x63\xf7\xd5\x75\x30\x7a\xfc\x2c\xde\xa3\x46\xd9\xd0\x1e\x1e\x2f\x05\xf4\x9d\x17\x96\x29\x82\xe7\x9f\x54\xfe\xff\xf2\xaa\xb4\xef\x40\x7c\x5b\xfa\x40\xfb\xff\x94\xb7\xa5\xc7\xda\xfc\x3e\xed\xca\x8c\xf9\xcd\xf1\xf8\xa5\xa9\x03\x36\x97\xfc\xf8\xee\x02\x0e\x73\x29\x8b\x4c\xae\x53\x13\x56\x89\x12\x9e\x05\x22\x21\x35\x2c\x41\x52\xbc\x6a\xb0\x5b\x06\x51\xfa\x81\xfb\x8d\xdb\x73\x5e\x91\x49\x6b\x52\x62\xfa\x84\x4d\xda\x05\x49\x99\x5e\x46\x4a\xba\xea\xab\x72\x7b\x02\x43\x95\x8f\x0b\x28\xad\x44\x04\xea\x2c\x6d\x1c\xc5\x1d\xba\x48\x65\x56\xa3\x2e\x8f\xd8\x55\xd2\x6d\x29\x25\x51\xa2\xcc\xe3\x52\x39\xa2\x66\xb9\xde\x4b\x8a\x0f\x91\x2c\x29\xf2\x74\x2b\xb3\x0f\x09\x41\x50\x6a\xfa\xd4\x0c\xc8\x75\x52\xab\x19\x75\xce\xd5\x0a\xa8\x79\x8e\xeb\x7a\x33\x36\x66\x97\x54\x38\x12\xb2\xe5\x7d\x3f\x68\xca\x4e\x02\x1f\x9f\x71\xe0\x63\x49\x81\x0e\xa8\x84\x8d\x2a\xab\x7c\x9e\xbd\xf1\xe9\xee\x35\x57\xe4\x86\x77\x5c\x67\x60\x9c\x91\x4e\xd1\x71\xdc\xe5\xef\x35\x08\x9d\x7b\xd5\x95\x9d\xfe\xe4\xad\xb8\xdd\x86\xfb\xcb\x8f\x76\xe0\xfa\x86\x95\xd9\x7b\x84\x46\xe2\x07\x1d\x71\x6f\x4d\x6c\x66\x2d\xe6\xce\xf2\x00\x99\x22\x93\xe5\x03\x0d\xfd\x08\xb9\x40\x95\xf5\x3f\xb3\xc5\x9d\x03\xc1\x88\x00\x10\x46\x54\x0c\x12\xf1\x61\xfe\xb9\xe4\x90\x7b\x10\x7a\x1c\x9f\x1c\x8b\x3e\xec\x64\xdc\x7b\x8e\xdd\xfa\xb8\x46\x2c\x27\xe6\x3e\xd5\xa6\x54\x47\xb6\x24\xb2\xc5\x62\xd2\x82\x59\xeb\x20\x28\xcf\x3d\xbd\xe9\xf7\xd6\xf5\xf3\xfd\x7d\x3d\xd7\xf7\x4d\xe5\xd9\xd4\x31\x98\x44\xf8\x31\x2c\x49\x84\x1f\xab\x01\x37\x3c\x01\x40\xee\x7d\x13\x88\x2d\x6f\x80\xcb\xbe\x60\x6e\x41\xac\xbe\xcc\xcf\x8f\x35\xa7\xdf\x0e\x3b\x7b\x01\xe6\xfc\xe4\xe2\xec\x0e\xd2\x66\x50\x25\x51\x40\x3a\x3a\xe5\x2c\xa5\x55\x64\x39\x82\x55\x0b\x29\xf5\xdf\x50\x2d\x03\x6c\xac\x84\xf6\xfb\x79\xb8\xbb\xa4\x10\x79\x1e\x90\xb6\x6c\x8e\x42\x08\x07\x08\x29\xb3\xc8\x4f\xf6\x9b\xa1\x66\x93\x3d\x6b\x4d\xcd\xc6\x2e\x69\xb2\xab\x5d\xd1\x59\x54\x72\x44\xe0\xcb\x1f\x1d\x3d\x5a\x24\xcc\x60\x39\xc8\x4b\xc2\x12\x92\xe4\xe2\xf5\x39\x7d\xae\xba\x5b\xb9\x93\xd6\x91\xbe\xaf\x77\x0c\xb6\x64\xdf\x19\x11\x15\x29\x05\xb0\x7f\x44\x8a\xad\x5c\xbe\xbc\xac\xba\x0f\xf5\x2a\xd0\xcb\xd9\xf1\x09\xd4\x20\x94\xe4\x79\x81\x36\x8d\x98\x81\x26\x88\xc6\x4e\xd0\x74\xb4\x89\x20\x6a\xfc\xac\xde\x61\x43\xa0\x3f\x56\x8f\x0b\x6e\x36\x96\x16\xe5\x82\xd9\x30\x3d\x91\x9c\x52\x68\x27\x40\x45\x4e\x3b\x16\x70\xd3\x22\xf7\x39\x63\x2c\x12\xde\xea\x37\xd2\xb4\x9e\x4f\x34\xd4\xf2\x95\x39\xa1\xe7\xae\x41\xcf\x46\x3c\x49\x4b\x24\x90\x4b\x61\xf7\xf6\xba\x5c\x5a\x75\x7c\x4d\x70\x52\x22\x79\x67\x6e\x82\xd7\x19\x03\xa8\x3b\x8c\x9e\x5c\xed\x23\xf1\x23\xad\xf8\x3e\x29\x44\x54\x83\xa6\x92\x0b\xb7\x7b\xaa\x92\x4b\x2f\xf9\x14\xb6\xd8\xed\xc2\x2e\xe6\x1e\x10\x04\xd9\x3a\x90\x0f\xc2\x70\x1c\x04\x2d\x82\x7e\x54\x8f\xb8\x64\x7a\x20\xf6\xcc\x54\x80\xf1\x4e\xa8\xc9\xed\xd5\x15\x47\xc7\xe4\x28\xcf\x1a\x91\x0a\xc1\x32\x4f\xd8\xe9\xc0\x4a\x8a\xa3\xf1\x92\x75\x84\xd0\xb9\xf1\x98\xec\xcd\xf9\xb7\x48\xe4\x43\x8e\x81\x77\x7b\x28\x97\xb8\xbf\x6f\xf7\x8d\x1c\xdf\x5c\x96\x36\xc4\x59\xbe\x11\x08\x53\x5d\xdb\x0e\xf6\x2e\x93\x93\xa4\xde\x52\x32\x6d\xb1\xc3\x75\x40\x30\xdf\x1f\xae\x96\xf2\x6c\x8c\x2b\x83\xdb\xcb\x15\x5c\x47\xa6\x85\xa8\xdf\xd3\x12\xd4\xef\x03\xe0\x62\x23\x63\x72\xc8\x39\x7e\x09\x93\x0e\x3d\x66\x9b\x5c\xa5\x46\x1b\xb0\xa4\x8d\xe9\xc6\xe3\xa0\xbc\x8c\x84\xf1\xcc\x6e\x3c\x67\x49\x83\x20\xbd\x30\x15\x53\xbd\xf8\x12\x53\xbd\x28\x16\x53\xb5\x63\xa3\x1e\xf4\xfd\xc6\x26\xe2\xfc\xfc\x75\x3a\xdb\x31\xd7\xbd\xfb\xc7\x1b\xf5\x03\x0e\xf7\xce\x31\x67\x1f\xc0\x01\xef\x2b\x57\x42\xb1\xe9\xf1\xa7\xa9\xe3\x3a\xfa\xbf\x6c\xea\xa1\xfa\xee\x01\xac\x18\x1e\x0c\x75\x79\xf9\xe0\x2b\xbf\x6e\x6a\xf8\xbf\xb8\x85\x53\xaf\x0e\xa0\x27\xe8\x12\x92\x87\xc9\x73\x89\x5d\x50\x77\x95\x6e\xef\x4f\xdd\x5b\xe1\x13\x8a\x8e\xbb\x40\xa0\x67\xbf\x03\x58\xbf\xd8\x97\xaa\x73\x19\x31\x1a\x1e\x9c\xaa\xde\x5a\x35\x3f\x23\x39\x76\x50\x22\xd5\x5b\xe4\x7a\xf5\x2a\xb1\xee\x21\xf0\xfc\xab\x06\xde\x4e\x56\x44\xb7\x28\xd1\xfa\xa9\x4d\x6d\xd8\xa1\x44\xdd\x77\x8c\x54\x2b\x80\xa1\x07\x65\xca\x09\x0f\xd8\xeb\x4f\xc6\x03\x86\xa3\x5f\xfd\xd7\x4a\x42\x0d\xbb\x61\x9f\xd0\xd1\x7c\xbb\xdf\xe2\x5d\xe8\x73\x8e\x8c\x8a\x97\xbd\x27\xdd\xda\xd1\xb9\xa3\xf0\x3d\x42\x42\xe0\x41\xe2\x30\xcc\xee\x4b\xcb\x8d\x5e\x1b\x8a\x53\x31\x9c\x98\xf2\xd7\xb8\x27\x0c\xd8\xa1\x3d\x28\x0a\xc9\x49\xa1\xb7\x9c\x17\x84\xea\x99\xc2\x16\x6b\x20\x50\x8a\xf9\xf2\xce\x52\xca\x5f\xf6\xd5\x9e\x2a\xaf\x9a\x35\xa8\xf4\xdf\xf9\x27\x49\x3b\xfc\x33\x20\x48\x9c\x74\xa1\x7e\x63\xcf\x9b\x27\xe6\xb6\x0b\x2d\x1c\xa5\x04\x5a\xb8\x57\x2c\x71\x33\xe3\x37\x81\x13\xfc\x9e\xef\xa0\xc2\x4e\x0f\x4a\x69\xbe\xcd\x22\x2d\xa9\xd6\xcd\xdd\xcb\x5f\x5e\x9f\x8e\x20\x67\x78\x81\xe6\xcc\xf0\x0e\xcd\x99\xe1\x14\x72\x05\x1e\x86\x80\x6b\xef\xf9\x11\x08\xe4\xc1\x01\x08\x41\x47\x73\x17\x50\xf2\x6c\x45\x4a\xfa\x25\x51\x96\xf8\x84\x09\xd1\xcb\xef\x14\xc8\xbd\x1a\x29\x50\xf6\x68\xe4\xa4\xd5\xc6\xb7\xd9\xc8\xbd\x67\x64\x3a\x62\xac\xe5\x98\x8e\xb8\x43\xcc\x76\xcf\xa0\xd9\xf7\xad\x36\xab\x28\x81\x3f\xd3\x24\x03\x35\x90\x58\xb3\x41\x68\xd5\xa1\x9b\x44\xb8\x75\x10\x5e\x9f\xe2\x57\x32\x75\xba\xfc\x78\xbd\x08\x6c\x5c\x81\x24\x7b\x69\x09\x03\x5e\xaf\x02\x62\x4c\x83\xfd\xe2\x69\x7c\x4f\x13\xca\xee\xd1\x60\x36\xf5\x55\x15\x54\xe3\x3a\x9a\xd7\x94\x96\x00\x5f\x0f\xc3\xae\xb7\xc0\x0b\x78\xc3\x31\x3f\xa5\x1f\xa3\x41\xf8\xaa\x74\x24\x93\x9a\x76\x35\xae\x2b\x1c\x5e\x24\x61\x1e\xe3\x06\xad\x9b\x83\x03\xd7\xdd\x61\xcc\xe3\xd6\x5d\x60\x9c\xb6\x42\x5e\x68\x92\x17\x05\x42\xeb\x2c\x02\xcc\xb6\xcc\x50\xba\x49\x32\x0c\x36\x49\x33\xc1\x5a\xac\x3a\x09\x20\xca\x7f\x2e\xd8\xfe\x25\xe4\xf8\xb5\x67\x69\x3d\xd1\x5e\xb9\x17\x5f\x52\xfd\x8c\xf0\xf1\x1d\x1f\x41\x93\x65\xcc\xbc\xfd\x93\x02\x54\x1f\xab\xd5\xde\xdd\x63\xfe\x22\xbf\xf5\xe2\x20\x56\xd3\x9a\x99\xf6\xbe\xc1\xbb\x4f\x67\x92\xe2\x60\xe6\x22\x56\x5b\xd7\x09\x6f\x83\x6a\x97\x86\xc3\xed\x87\xe6\x71\x96\x65\x28\x33\x63\x33\xeb\x30\xf9\xb9\xdc\x88\x3f\xdc\xc8\xb2\xcd\x60\x71\xf4\xe4\xbb\xa1\xdc\xac\x02\x71\x57\x3e\x06\xf3\x72\x91\x4f\x43\x98\x3a\x67\x6c\x68\x79\x33\xe3\xb3\xac\x76\xc7\x9c\x6d\xb7\x70\xb0\x38\x64\xb8\x47\xef\xa5\xab\x92\x7f\x9f\x4d\x6c\xf6\x9b\x98\x8c\xbd\x1b\xbd\x8d\x6b\x57\x12\xce\x84\x24\x89\xe5\xf0\x50\x1e\x89\xea\xaa\xc6\x45\xa6\x94\x5f\xe5\xe4\xb1\x49\x7b\xbc\xe1\x9b\xf8\x78\x03\xdb\x5d\x1f\x7c\x7a\x2a\x3c\x05\x84\x5a\xd9\x90\x54\x9e\x19\x1b\x3d\x80\xd1\x77\xab\xaf\xc7\x65\x59\xd5\x9b\x82\x71\xe6\xbf\x58\xc5\x32\x46\x7b\x34\xe9\x77\x7d\xa8\x48\x7e\xbb\xf1\x7d\x2d\xfa\xc8\xaf\x65\xa4\x7f\x70\x2f\x09\x69\x0d\xe3\x57\x3d\x0c\x5d\x49\x34\x7c\x5f\xa1\x3e\xd6\x31\xad\x6f\xf4\x8e\x93\x7b\xab\xaa\x6d\x3e\xa7\x63\xb3\xcf\x02\xfc\xae\x6f\x44\x7c\x76\xb7\x42\x00\x3d\x9d\x03\xfb\x3d\xa2\x08\x99\xd7\xf9\x49\x8d\x44\x82\xf8\x2e\xf2\xc4\xa7\xcd\x25\xfd\xf0\xdd\xc0\x4c\xfa\x27\x9b\xa6\xb3\x3d\xa2\x0f\x3c\x10\xf3\xad\x7b\xcd\x03\x4e\xf8\x92\x51\xf7\x1a\x87\x5d\xde\x50\xf9\x36\x3c\x91\x99\xfd\xc6\x8f\x2a\xbc\xcb\x8a\x35\x8f\x89\xfe\xcf\xf0\x9a\xad\xb8\x96\x80\x52\xe9\x33\x93\x9f\xfc\xf5\x0d\x57\xfc\x4d\xde\x57\xc4\x61\x11\xc8\xf9\x9b\x2d\x12\xb6\x74\x0c\x1f\x10\x91\xfa\x9b\x6b\x24\xf0\xa3\xcf\xf8\x59\xe2\x67\x59\xdc\xe2\xd7\x0d\x7e\xdd\x54\xd5\x7b\x29\x0c\x16\x4c\xc5\xe9\x20\x7f\x8d\x94\x5b\xfc\xbe\xe5\xb0\xf9\x0f\xd9\xf1\x8e\xdb\xd1\x57\x91\xec\x07\x1e\x21\xe0\xe6\x34\xdd\x7e\x50\x3a\xb7\xaa\xa9\xf2\xf9\x90\x2d\x16\x6e\x35\x09\x5f\x1c\x34\x9b\x9a\xd7\x24\xf9\x7c\x08\x3e\x3a\x5c\x5b\x85\xf2\x4d\xa9\xdc\x0f\x4d\x94\x4f\x4a\xeb\x8a\x9b\x65\xec\x97\x7e\x21\x35\xf6\x4a\xbf\x08\xbd\x65\xd7\xee\x38\xe6\xee\xbb\xf0\x92\x76\x8c\x18\xfe\x8c\xf2\xcc\xe0\x8c\xe3\xc1\xb2\x97\xfc\x86\x5f\xcc\x65\xa5\xeb\x8e\x9d\x85\x17\x99\x3d\x14\x50\x37\xbb\x7d\x38\xcb\xc6\x57\x2a\x04\x2c\x46\x44\x13\xff\x02\x7e\x36\x50\xde\x54\xa5\xd9\x5d\x5e\xd6\xfa\x94\x2c\xab\x71\xff\x5a\x7d\xf9\xb7\xbf\x01\x9c\x3e\xff\xfe\xf7\xfc\xe4\xe7\xaf\xf2\xea\x23\x47\x84\xec\xf3\x6d\xf1\x11\x47\x08\x85\xa2\x9f\xcf\x13\x40\x76\x6c\x86\xd1\xb7\xde\xa0\x29\x7b\xc7\xb5\xd9\xff\x0b\x00\x00\xff\xff\x26\x03\xa2\xcf\x55\xb7\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 46411, mode: os.FileMode(420), modTime: time.Unix(1449100425, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 46933, mode: os.FileMode(420), modTime: time.Unix(1449277581, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/mailer/mail.go b/modules/mailer/mail.go index 680a3c483..456f85033 100644 --- a/modules/mailer/mail.go +++ b/modules/mailer/mail.go @@ -125,7 +125,7 @@ func SendIssueNotifyMail(u, owner *models.User, repo *models.Repository, issue * subject := fmt.Sprintf("[%s] %s (#%d)", repo.Name, issue.Name, issue.Index) content := fmt.Sprintf("%s
-
View it on Gogs.", - base.RenderSpecialLink([]byte(issue.Content), owner.Name+"/"+repo.Name), + base.RenderSpecialLink([]byte(issue.Content), owner.Name+"/"+repo.Name, repo.ComposeMetas()), setting.AppUrl, owner.Name, repo.Name, issue.Index) msg := NewMessage(tos, subject, content) msg.Info = fmt.Sprintf("Subject: %s, issue notify", subject) @@ -148,7 +148,7 @@ func SendIssueMentionMail(r macaron.Render, u, owner *models.User, data["IssueLink"] = fmt.Sprintf("%s/%s/issues/%d", owner.Name, repo.Name, issue.Index) data["Subject"] = subject data["ActUserName"] = u.DisplayName() - data["Content"] = string(base.RenderSpecialLink([]byte(issue.Content), owner.Name+"/"+repo.Name)) + data["Content"] = string(base.RenderSpecialLink([]byte(issue.Content), owner.Name+"/"+repo.Name, repo.ComposeMetas())) body, err := r.HTMLString(string(NOTIFY_MENTION), data) if err != nil { diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go index 11b74e559..1b328be12 100644 --- a/modules/middleware/repo.go +++ b/modules/middleware/repo.go @@ -165,6 +165,7 @@ func RepoAssignment(args ...bool) macaron.Handler { ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner() ctx.Data["IsRepositoryAdmin"] = ctx.Repo.IsAdmin() ctx.Data["IsRepositoryPusher"] = ctx.Repo.IsPusher() + ctx.Data["CanPullRequest"] = ctx.Repo.IsAdmin() && repo.BaseRepo != nil && repo.BaseRepo.EnablePulls ctx.Data["DisableSSH"] = setting.DisableSSH ctx.Data["CloneLink"] = repo.CloneLink() diff --git a/modules/template/template.go b/modules/template/template.go index c408ac8a2..d0d77b017 100644 --- a/modules/template/template.go +++ b/modules/template/template.go @@ -183,9 +183,9 @@ func ReplaceLeft(s, old, new string) string { } // RenderCommitMessage renders commit message with XSS-safe and special links. -func RenderCommitMessage(msg, urlPrefix string) template.HTML { +func RenderCommitMessage(msg, urlPrefix string, metas map[string]string) template.HTML { cleanMsg := template.HTMLEscapeString(msg) - fullMessage := string(base.RenderIssueIndexPattern([]byte(cleanMsg), urlPrefix)) + fullMessage := string(base.RenderIssueIndexPattern([]byte(cleanMsg), urlPrefix, metas)) msgLines := strings.Split(strings.TrimSpace(fullMessage), "\n") for i := range msgLines { msgLines[i] = ReplaceLeft(msgLines[i], " ", " ") diff --git a/public/css/gogs.css b/public/css/gogs.css index a926bc418..83ba463a2 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -911,6 +911,9 @@ pre.raw { .ui .form .fake { display: none !important; } +.ui .form .sub.field { + margin-left: 25px; +} .ui .sha.label { font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace; font-size: 13px; diff --git a/public/less/_base.less b/public/less/_base.less index fd12c80b2..bd51f2303 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -217,6 +217,10 @@ pre { .fake { display: none !important; } + + .sub.field { + margin-left: 25px; + } } .sha.label { diff --git a/routers/api/v1/misc/markdown.go b/routers/api/v1/misc/markdown.go index 49979ef76..e4c420269 100644 --- a/routers/api/v1/misc/markdown.go +++ b/routers/api/v1/misc/markdown.go @@ -25,7 +25,7 @@ func Markdown(ctx *middleware.Context, form api.MarkdownOption) { switch form.Mode { case "gfm": - ctx.Write(base.RenderMarkdown([]byte(form.Text), form.Context)) + ctx.Write(base.RenderMarkdown([]byte(form.Text), form.Context, nil)) default: ctx.Write(base.RenderRawMarkdown([]byte(form.Text), "")) } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 975fa239a..ed9454440 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -41,6 +41,18 @@ var ( ErrTooManyFiles = errors.New("Maximum number of files to upload exceeded") ) +func MustEnableIssues(ctx *middleware.Context) { + if !ctx.Repo.Repository.EnableIssues { + ctx.Handle(404, "MustEnableIssues", nil) + } +} + +func MustEnablePulls(ctx *middleware.Context) { + if !ctx.Repo.Repository.EnablePulls { + ctx.Handle(404, "MustEnablePulls", nil) + } +} + func RetrieveLabels(ctx *middleware.Context) { labels, err := models.GetLabelsByRepoID(ctx.Repo.Repository.ID) if err != nil { @@ -60,7 +72,12 @@ func Issues(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.pulls") ctx.Data["PageIsPullList"] = true ctx.Data["HasForkedRepo"] = ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID) + } else { + MustEnableIssues(ctx) + if ctx.Written() { + return + } ctx.Data["Title"] = ctx.Tr("repo.issues") ctx.Data["PageIsIssueList"] = true } @@ -496,6 +513,10 @@ func ViewIssue(ctx *middleware.Context) { ctx.Data["PageIsPullConversation"] = true ctx.Data["HasForkedRepo"] = ctx.IsSigned && ctx.User.HasForkedRepo(ctx.Repo.Repository.ID) } else { + MustEnableIssues(ctx) + if ctx.Written() { + return + } ctx.Data["PageIsIssueList"] = true } @@ -503,7 +524,8 @@ func ViewIssue(ctx *middleware.Context) { ctx.Handle(500, "GetPoster", err) return } - issue.RenderedContent = string(base.RenderMarkdown([]byte(issue.Content), ctx.Repo.RepoLink)) + issue.RenderedContent = string(base.RenderMarkdown([]byte(issue.Content), ctx.Repo.RepoLink, + ctx.Repo.Repository.ComposeMetas())) repo := ctx.Repo.Repository @@ -570,7 +592,8 @@ func ViewIssue(ctx *middleware.Context) { // Render comments. for _, comment = range issue.Comments { if comment.Type == models.COMMENT_TYPE_COMMENT { - comment.RenderedContent = string(base.RenderMarkdown([]byte(comment.Content), ctx.Repo.RepoLink)) + comment.RenderedContent = string(base.RenderMarkdown([]byte(comment.Content), ctx.Repo.RepoLink, + ctx.Repo.Repository.ComposeMetas())) // Check tag. tag, ok = marked[comment.PosterID] @@ -656,7 +679,7 @@ func UpdateIssueContent(ctx *middleware.Context) { } ctx.JSON(200, map[string]interface{}{ - "content": string(base.RenderMarkdown([]byte(issue.Content), ctx.Query("context"))), + "content": string(base.RenderMarkdown([]byte(issue.Content), ctx.Query("context"), ctx.Repo.Repository.ComposeMetas())), }) } @@ -893,7 +916,7 @@ func UpdateCommentContent(ctx *middleware.Context) { } ctx.JSON(200, map[string]interface{}{ - "content": string(base.RenderMarkdown([]byte(comment.Content), ctx.Query("context"))), + "content": string(base.RenderMarkdown([]byte(comment.Content), ctx.Query("context"), ctx.Repo.Repository.ComposeMetas())), }) } @@ -991,7 +1014,7 @@ func Milestones(ctx *middleware.Context) { return } for _, m := range miles { - m.RenderedContent = string(base.RenderMarkdown([]byte(m.Content), ctx.Repo.RepoLink)) + m.RenderedContent = string(base.RenderMarkdown([]byte(m.Content), ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas())) m.CalOpenIssues() } ctx.Data["Milestones"] = miles diff --git a/routers/repo/release.go b/routers/repo/release.go index 8fc1cb7d3..a3b9887ea 100644 --- a/routers/repo/release.go +++ b/routers/repo/release.go @@ -69,7 +69,7 @@ func Releases(ctx *middleware.Context) { rel.NumCommitsBehind = ctx.Repo.CommitsCount - rel.NumCommits } - rel.Note = base.RenderMarkdownString(rel.Note, ctx.Repo.RepoLink) + rel.Note = base.RenderMarkdownString(rel.Note, ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas()) tags[i] = rel rels[j] = nil // Mark as used. break @@ -129,7 +129,7 @@ func Releases(ctx *middleware.Context) { rel.NumCommitsBehind = ctx.Repo.CommitsCount - rel.NumCommits } - rel.Note = base.RenderMarkdownString(rel.Note, ctx.Repo.RepoLink) + rel.Note = base.RenderMarkdownString(rel.Note, ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas()) tags = append(tags, rel) } models.SortReleases(tags) diff --git a/routers/repo/setting.go b/routers/repo/setting.go index 24ab91eec..0a219c73b 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -104,7 +104,7 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { ctx.Handle(500, "UpdateRepository", err) return } - log.Trace("Repository updated: %s/%s", ctx.Repo.Owner.Name, repo.Name) + log.Trace("Repository basic settings updated: %s/%s", ctx.Repo.Owner.Name, repo.Name) if isNameChanged { if err := models.RenameRepoAction(ctx.User, oldRepoName, repo); err != nil { @@ -123,7 +123,24 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { } ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success")) - ctx.Redirect(fmt.Sprintf("%s/%s/%s/settings", setting.AppSubUrl, ctx.Repo.Owner.Name, repo.Name)) + ctx.Redirect(ctx.Repo.RepoLink + "/settings") + + case "advanced": + repo.EnableWiki = form.EnableWiki + repo.EnableIssues = form.EnableIssues + repo.EnableExternalTracker = form.EnableExternalTracker + repo.ExternalTrackerFormat = form.TrackerURLFormat + repo.EnablePulls = form.EnablePulls + + if err := models.UpdateRepository(repo, false); err != nil { + ctx.Handle(500, "UpdateRepository", err) + return + } + log.Trace("Repository advanced settings updated: %s/%s", ctx.Repo.Owner.Name, repo.Name) + + ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success")) + ctx.Redirect(ctx.Repo.RepoLink + "/settings") + case "transfer": if repo.Name != form.RepoName { ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_repo_name"), SETTINGS_OPTIONS, nil) diff --git a/routers/repo/view.go b/routers/repo/view.go index 877ff4cba..98b44f42e 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -108,7 +108,7 @@ func Home(ctx *middleware.Context) { readmeExist := base.IsMarkdownFile(blob.Name()) || base.IsReadmeFile(blob.Name()) ctx.Data["ReadmeExist"] = readmeExist if readmeExist { - ctx.Data["FileContent"] = string(base.RenderMarkdown(buf, path.Dir(treeLink))) + ctx.Data["FileContent"] = string(base.RenderMarkdown(buf, path.Dir(treeLink), ctx.Repo.Repository.ComposeMetas())) } else { if err, content := template.ToUtf8WithErr(buf); err != nil { if err != nil { @@ -201,7 +201,7 @@ func Home(ctx *middleware.Context) { buf = append(buf, d...) switch { case base.IsMarkdownFile(readmeFile.Name()): - buf = base.RenderMarkdown(buf, treeLink) + buf = base.RenderMarkdown(buf, treeLink, ctx.Repo.Repository.ComposeMetas()) default: buf = bytes.Replace(buf, []byte("\n"), []byte(`
`), -1) } diff --git a/routers/repo/wiki.go b/routers/repo/wiki.go index 0fdd76d78..5e160518a 100644 --- a/routers/repo/wiki.go +++ b/routers/repo/wiki.go @@ -24,6 +24,12 @@ const ( WIKI_PAGES base.TplName = "repo/wiki/pages" ) +func MustEnableWiki(ctx *middleware.Context) { + if !ctx.Repo.Repository.EnableWiki { + ctx.Handle(404, "MustEnableWiki", nil) + } +} + type PageMeta struct { Name string URL string @@ -94,7 +100,7 @@ func renderWikiPage(ctx *middleware.Context, isViewPage bool) (*git.Repository, return nil, "" } if isViewPage { - ctx.Data["content"] = string(base.RenderMarkdown(data, ctx.Repo.RepoLink)) + ctx.Data["content"] = string(base.RenderMarkdown(data, ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas())) } else { ctx.Data["content"] = string(data) } diff --git a/templates/.VERSION b/templates/.VERSION index ebd439271..716a71b08 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.29.1204 Beta \ No newline at end of file +0.7.30.1204 Beta \ No newline at end of file diff --git a/templates/repo/commits_table.tmpl b/templates/repo/commits_table.tmpl index f87866bf4..2adc1770f 100644 --- a/templates/repo/commits_table.tmpl +++ b/templates/repo/commits_table.tmpl @@ -37,7 +37,7 @@ diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index efe1bdab7..fb25b94bf 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -51,21 +51,27 @@ {{.i18n.Tr "repo.code"}} + {{if .Repository.EnableIssues}} {{.i18n.Tr "repo.issues"}} {{.Repository.NumOpenIssues}} + {{end}} + {{if .Repository.EnablePulls}} {{.i18n.Tr "repo.pulls"}} {{.Repository.NumOpenPulls}} + {{end}} {{.i18n.Tr "repo.commits"}} {{.CommitsCount}} {{.i18n.Tr "repo.releases"}} {{.Repository.NumTags}} + {{if .Repository.EnableWiki}} {{.i18n.Tr "repo.wiki"}} + {{end}} {{if .IsRepositoryAdmin}}
{{ShortSha .ID.String}} - {{RenderCommitMessage .Summary $.RepoLink}} + {{RenderCommitMessage .Summary $.RepoLink $.Repository.ComposeMetas}} {{TimeSince .Author.When $.Lang}}